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. JanBucek

    C0000005 Error

    Make sure not to leave your form.methods from within WITH..ENDWITH - example: WITH ... ... RETURN .T. ENDWITH
  2. JanBucek

    What to use after FoxPro

    What do i use after foxpro? Ask me after 5 - 10 years, it is too early now.
  3. JanBucek

    SQLite to FOXPRO

    Reminds me of the old days when DOS and DBase were disappearing - now it seems to be happening to Foxpro and Windows." MS Windows disappearing? It is too nice to be true.
  4. JanBucek

    Copying to a dynamically named Excel File

    store "../../monitor/E"+RIGHT(DTOS(DATE()),6) to lcFileName copy to (lcFileName) type xls
  5. JanBucek

    Reason MyProc(@Array) doesn't work

    I did not read the whole discussion above for I am not good in english, but maybe you can use EXTERNAL ARRAY ... in your function/method handling array?
  6. JanBucek

    How to terminate other windows process

    * You can use WMI, for example close all Calculator instances oWMI = GETOBJECT('winmgmts://') cQuery = "select * from win32_process where name='calc.exe'" oResult = oWMI.ExecQuery(cQuery) ? oResult.Count FOR EACH oProcess IN oResult ? oProcess.Name...
  7. JanBucek

    Copy File command looses case in filename

    Bryan, I am sorry you have troubles with it, but my code works O.K. Imaginecorp is right - chr(0) is not needed. My test prg: ------- set talk OFF clear DECLARE INTEGER CopyFile IN KERNEL32 STRING @lpExistingFileName, STRING @lpNewFileName, INTEGER lcSrc="c:\usr\tmp\xYz.tXt"...
  8. JanBucek

    Copy File command looses case in filename

    Try Win API CopyFile: DECLARE INTEGER CopyFile IN KERNEL32 STRING @lpExistingFileName, STRING @lpNewFileName, INTEGER lcSrc="c:\temp\xx.txt"+CHR(0) lcDst="c:\temp\xx1.txt"+CHR(0) ? CopyFile(@lcSrc,@lcDst, 0) ? CopyFile(@lcSrc,@lcDst, 1) && fail if destination file exist
  9. JanBucek

    Help to make Clipper program work in XP

    Fullscreen: just press Alt+Enter while running your app to switch between fullscreen x window mode. You can set it up also by right-clicking small icon on left of title bar of your app and setting properties there.
  10. JanBucek

    Help to make Clipper program work in XP

    To set environment variables for Clipper or my own application I use the batchfile launching my app. Advantage is that it has influence only for this app (process): 1. step - release unused variables from memory to gain enough space for my own variables ... set PROCESSOR_ARCHITECTURE= set...
  11. JanBucek

    DOS FoxProx 2.6 on Xp Pro

    I run both development env. and compiled applications of FPD 2.0, 2.5 and 2.6 on Win2K/XP without any problems. The only settings I have done were FILES=80 in CONFIG.NT and changing fontsize in DOSBOX window of apps. None of default memory settings I have touched. Do you launch your FPD directly...
  12. JanBucek

    Help to make Clipper program work in XP

    There are not problems to run a Clipper EXE in XP environment. I do so every day. The only thing you have to do is to edit the CONFIG.NT in directory /Windows/system32 to add/change the line FILES=.. to FILES=120. Other properties (to run app in fullscreen or window mode, fontsize etc.) you...
  13. JanBucek

    How to place an URL into a VFP-table easily

    Manully: thru Clipboard: 1. copy an URL from Address bar in browser (both Firefox and IE: rightclick+context menu) into clipboard 2. RighClick Event on your table field: REPLACE fieldname WITH _CLIPTEXT Programmatically: see Mike
  14. JanBucek

    Memo file maximum size for one record

    This error is generated when any file is larger than 2 GB. Is your FPT file so large? Try PACK MEMO
  15. JanBucek

    Showing a form from the executable

    see help: READ EVENTS after DO FORM ....
  16. JanBucek

    Changing source code from one CP to another ?

    See www.bucek.info - downloads - ChangeCP (source code included)
  17. JanBucek

    Where to get header files?

    > I think I can get constants for type library from the Object Browser. I was talking about constants that accompany most Windows API functions.... so do I: You can extract with GetConstants constants from any type-library (dll, olb, tlb, ocx, exe ..) that contains it and save them into ready...
  18. JanBucek

    Where to get header files?

    Get utility GetConstants from http://www.west-wind.com - it extracts constants from selected type library and saves it as header file.
  19. JanBucek

    How do I compile 5.01 code using Clipper 5.3?

    Blinker 1.0 and Exospace were bundled with Clipper 5.3. Blinker supports overlaying, EXOSPACE using of extended memory. Here is my batchfile I used to compile, link and execute any simple clipper program: ------ @ECHO OFF call c:\dos\clp\bin\_SetEnv.bat clipper %1 /m /n > %1.err if errorlevel 1...

Part and Inventory Search

Back
Top