Answer Posted / 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 |
Post New Answer View All Answers
Write the Steps in Creating an ActiveX Control?
What is the use of Visual Basic Document file?
What is the use of Hyperlink control for DHTML applications?
by writing MACRO CODE,i want to retrive data from one spead sheet to another UI (workbook). control will search cell by cell for each row and load the data in another workbook(UI). ex: custdetails custname lastname locaton mobile pincode custdetails raj tony hyd 555555 521245 servcreqrd srvce# srvcename location srvcepincode servcreqrd 754 drilling hyd 521784 for the above example in the another workbook retrive data like this custname Raj srvce# 754 srvcepincode 521784. while retrieving data control will search cell by cell for each row.
How do you create a form in visual basic?
How do I create controls dynamically (at run-time)?
What is connection object in vb net?
What about DLL calls that require callbacks?
Difference between Tabletype and Snapshot?
what is the Difference between Dynaset and Snapshot?
What are the new events in textbox that has been included in VB ?
What is the use of Data Form Wizard?
What is ODBC Direct and Microsoft Jet Database Engine ?
What type of databases you can access through ADO Data Access Object?
It possible to call OLEDB's Features directly in VB without using any control?