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

Readme


1 reply to this topic

masoomjanwar

masoomjanwar
  • Members
  • 3 posts

Posted 06 February 2002 - 19:23

I am trying to call the readme file by using the following :
if ( bOpt1 ) then
          szProgram = WINDIR ^ "\\NOTEPAD.exe";
    szParam   = SRCDIR ^ "README";
          LaunchAppAndWait( szProgram, szParam, NOWAIT );

When I call it during the installation it tells me that Readme.txt does not exist.
What could I be making wrong? Where do i include the readme.txt  so that this problem does not come up. Mine is a multi floppy set up and the program searches for it in the last floppy.
Any suggestions?


Blake Miller Wonder

Blake Miller Wonder
  • Members
  • 121 posts

Posted 06 February 2002 - 20:51

Try supplying entire file path:

szParam   = SRCDIR ^ "README.TXT";