How would you activate animation control?
Answer / cherran
First Download the Genie.acs (Microsoft Animation Character)
from MSDN. Create one VB std.Exe app. with one button and a
textbox then paste the following code, now your app. will
speek what you typed in textbox. Note: you have to install
Speach Enginee before this.
Genie.Play "Write", "read" will animate the Character.
Dim Genie As IAgentCtlCharacterEx
Const DATAPATH = "genie.acs"
Private Sub Form_Load()
Agent1.Characters.Load "Genie", DATAPATH
Set Genie = Agent1.Characters("Genie")
Genie.LanguageID = &H409
TextBox.Text = "Hello World!"
End Sub
Private Sub Button_Click()
Genie.Show
Genie.Speak TextBox.Text
Genie.Play "Write"
Genie.Play "Read"
Genie.Hide
End Sub
Is This Answer Correct ? | 1 Yes | 0 No |
How many types of API functions are available in VB?
What is ActiveX Dll and ActiveX Exe?
What is the use of Data Form Wizard?
Whether HTML supports multimedia: and document links?
how a multiple routing works ?
Which type of object requires this object?
What is the use of OLE?
Which property of textbox cannot be changed at runtime?
What is a thread pool and how are the threads within a thread pool managed?
How would you add column headers in listview control?
What is RDO?
Draw Sequence Modal of DAO? Explain.