Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
File '.prg' doesn't exist.
Message
 
 
To
03/08/2000 15:28:55
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00400656
Message ID:
00400669
Views:
14
>To make some tests, I migrated my still inconcluse application to my store where the final program will be running. Everything works fine except that now I get the above message when starting the application. I have no clue nor VFP gives me any as to what is the offending non-existant program. Any suggestions?
>Thanks in advance
>
>Ulises

I would create a little PRG to look through all your forms and classes for .PRG Also do a search for .prg in your PRG files.
lnRetVal = adir(laForms, "*.SCX")
* repeat above command for "*.VCX"
for i = 1 to lnRetVal
   lcForm = laForms[i, 1]
   use (lcForm)
   locate for ".PRG" $upper(methods)
   do while !eof()
      browse field methods
      continue
   enddo
   locate for ".PRG" $upper(properties)
   do while !eof()
      browse field properties
      continue
   enddo
   use
endfor
Mark McCasland
Midlothian, TX USA
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform