Results 1 to 6 of 6

Thread: Runtime error 430

  1. #1

    Thread Starter
    Hyperactive Member Blinky Bill's Avatar
    Join Date
    Mar 2002
    Location
    Happily munching on the greenery in your garden
    Posts
    349

    Runtime error 430

    Hi.

    Does anyone have any experience with the runtime error 430. Class does not support automation or specified interface?

    Any help would be appreciated.

    Thanx all.
    We don't know what's wrong. . . So the best bet might be to remove something surgically.

  2. #2
    Stuck in the 80s The Hobo's Avatar
    Join Date
    Jul 2001
    Location
    Michigan
    Posts
    7,256
    what code caused this error? I've had it before, but I don't remember what it is.
    My evil laugh has a squeak in it.

    kristopherwilson.com

  3. #3
    PowerPoster rjlohan's Avatar
    Join Date
    Sep 2001
    Location
    Sydney, Australia
    Posts
    3,205
    That's one of those bugger errors that has about a million causes. Need more info. What controls are you using? Where does the error get raised? Etc...
    -----------------------------------------
    -RJ
    [email protected]
    -----------------------------------------

  4. #4

    Thread Starter
    Hyperactive Member Blinky Bill's Avatar
    Join Date
    Mar 2002
    Location
    Happily munching on the greenery in your garden
    Posts
    349
    I'm using the Microsoft TTS system with XVoice.dll component. Here is the relevant code.

    VB Code:
    1. For count = 1 To DirectSS1.CountEngines
    2.         If (DirectSS1.Gender(count) = 2) And (gotMale = False) Then
    3.             maleIndex = count
    4.             gotMale = True
    5.         End If
    6.         If (DirectSS1.Gender(count) = 1) And (gotFemale = False) Then
    7.             femaleIndex = count
    8.             gotFemale = True
    9.         End If
    10.     Next
    11.     voice = modDataStore.getVoiceOver
    12.     MsgBox ("Male Index: " & maleIndex)
    13.     MsgBox ("Female Index: " & femaleIndex)
    14.     Select Case voice
    15.         Case "Professional Male"
    16.             DirectSS1.Select (maleIndex)
    17.         Case "Professional Female"
    18.             DirectSS1.Select (femaleIndex)
    19.         Case "Standard Male"
    20.             DirectSS1.Select (maleIndex)
    21.         Case "Standard Female"
    22.             DirectSS1.Select (femaleIndex)
    23.         Case Else
    24.             DirectSS1.Select (maleIndex)
    25.     End Select

    The problem arises when i reach the line DirectSS1.Select(. . .)

    I don't experience the problem on my system (XP), but when i try it on anpther system (ME) the problem occurs. This is strange because i have used this component in another small test app and it worked.

    Thanx in advance.
    We don't know what's wrong. . . So the best bet might be to remove something surgically.

  5. #5
    PowerPoster rjlohan's Avatar
    Join Date
    Sep 2001
    Location
    Sydney, Australia
    Posts
    3,205
    Never used the control. Sorry...
    -----------------------------------------
    -RJ
    [email protected]
    -----------------------------------------

  6. #6

    Thread Starter
    Hyperactive Member Blinky Bill's Avatar
    Join Date
    Mar 2002
    Location
    Happily munching on the greenery in your garden
    Posts
    349
    Does anyone know anything about this?
    We don't know what's wrong. . . So the best bet might be to remove something surgically.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width