Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
File '.prg' doesn't exist.
Message
 
 
À
03/08/2000 15:28:55
Information générale
Forum:
Visual FoxPro
Catégorie:
Autre
Divers
Thread ID:
00400656
Message ID:
00400669
Vues:
15
>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
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform