Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. rubinov

    How to terminate Loop

    You may use variations of the following: push key on escape wait wind nowa "" Do While ! Eof() and lastkey()#27 ... enddo pop key Best Wishes
  2. rubinov

    How to show deleted Records?

    Probably "where deleted()" is confusing not only to me (deleted where, in what table?). Try: select ... from (select * from table1 where deleted()) _1; inner join (select * from table2 where deleted()) _2 on _1...=_2...
  3. rubinov

    Blocked by mystery error message

    Bill What VFP version do you have? See if this will help: - recompile all forms scx files separately (manually or in the code), like compile form ... - then create a new project file with a new name and try to rebuild the project. Yuri
  4. rubinov

    recompiling old fxp files

    Joe, To get the FoxPro version, type in the FoxPro command window: ?version() Please, let me know what you see then in the FoxPro screen. If you do not have the original code prg files (from which fxp files were compiled), then your only option is to decompile fxp files. There are decompile...
  5. rubinov

    recompiling old fxp files

    Joe, Do I understand it correctly that you do not have the exe file, but you call x.fxp from the FoxPro command window? If so, what is the FoxPro version installed? Yuri
  6. rubinov

    How to get programmatically "file is locked .. " by whom?

    In manual mode when you try to open the file, the dialog "File in Use" appears having "File is locked by 'user name'" message. I use Excel Automation to work with Excel files. When the file is opened by another user, then the file is opened as a read-only. In this situation I would like to get...

Part and Inventory Search

Back
Top