GFAgent/Form1.frm
VERSION 5.00
Begin VB.Form Form1
Caption = "Form1"
ClientHeight = 3195
ClientLeft = 60
ClientTop = 345
ClientWidth = 4680
LinkTopic = "Form1"
ScaleHeight = 3195
ScaleWidth = 4680
StartUpPosition = 3 'Windows‑Standard
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
'(c)2005, 2009 by Louis Coder.
Private Sub Form_Load()
Call GFAgent_Initialize
Call GFAgent_Show(&H407)
Call GFAgent_Speak("Meine Stimme klingt komisch")
End Sub
Private Sub Form_Unload(Cancel As Integer)
Call GFAgent_Hide
End Sub
[END OF FILE]