Jump to content


This is a ready-only archive of the InstallSite Forum. You cannot post any new content here. / Dies ist ein Archiv des InstallSite Forums. Hier können keine neuen Beiträge veröffentlicht werden.
Photo

error c8096


2 replies to this topic

chris tyghe

chris tyghe
  • Members
  • 26 posts

Posted 28 January 2002 - 20:22

Hello,

After using GetSystemInfo (LANGUAGE), I pass svResult to a switch statement as such:

switch (svResult)

case 'English':LaunchAppAndWait( WINDIR^ "Temp\242975USA8.EXE","-s", WAIT );

I keep getting an error C8096 - number too big for character. I cannot find any documentation on this error


Blake Miller Wonder

Blake Miller Wonder
  • Members
  • 121 posts

Posted 29 January 2002 - 23:37

I think you made your hard coded path incorrectly.

When you want to separate two directories in a string, I am pretty sure you should use two backslashes in a row.

You have this:
"Temp\242975USA8.EXE"

And I think you should try this:
"Temp\\242975USA8.EXE"

I tell you, the strangest errors are sometimes emitted by InstallShield in such situations.


Taco Bell

Taco Bell

    IS6 Expert

  • Moderators
  • 1,281 posts

Posted 30 January 2002 - 15:51

Yes, BMW is correct.  You must use two backslashes, so that could certainly be the cause for your problem.