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 strongm 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. ezopaci

    Keyboard Shortcut to Save without Exiting

    I have this define bar _MFI_SAVE of _MFILE prompt '\<Save' key 'ctrl+s','^S' in my Foxstart.PRG for this purpose. :-) Tomas
  2. ezopaci

    Foxpro 2.00 Mouse control

    I have created a PLB lib. where you can call mouse interrupts directly from fox. So there is possibility to reset or set mouse and so on. Here is a link to lib. and simple test PRG www.ezop.cz/tomas/download/mouseinterrupt.zip Here is a list of mouse int. 0x33...
  3. ezopaci

    Foxpro 2.00 Mouse control

    It is strange. On Windows in dos window is mouse quick and everything seems ok. It could be triggered by the way how foxpro handles mouse ..., but I don't know any bug in mouse handling. Tomas
  4. ezopaci

    Printer Not Ready on LPT4

    Download http://www.ezop.cz/tomas/download/lfndosfox.zip and http://www.ezop.cz/tomas/download/writeintodevice.prg and take a look into writeintodevice.prg Tomas
  5. ezopaci

    Printer Not Ready on LPT4

    DOS generally does not support more than LPT1-3. What you tried (copy ...) was done in CMD32 = in 32 bit console program, not in 16bits DOS. You can access to whatever "file" device (like "LPT4" or "COM12") from dos foxpro, but you need call some dos fn. for this. If you would like, I can upload...
  6. ezopaci

    FoxPro DOS 2.6 Project Lockup

    Topic http://www.tek-tips.com/viewthread.cfm?qid=1528866 Tomas
  7. ezopaci

    FoxPro DOS 2.6 Project Lockup

    Try search here "foxpro" and "dualcore CPU". There is workaround - you must run fox only in one CORE. Tomas
  8. ezopaci

    FPD 2.6 with TameDOS - Intermittent Double Window

    Instead tamedos you can try foxfree.com Or, if you have source code, foxfree.plb. www.ezop.cz/tomas/download/foxfree.com www.ezop.cz/tomas/download/foxfree.plb See http://www.tek-tips.com/viewthread.cfm?qid=1362013&page=8 It does exact the same like tamedos, but it is focused to foxpro. No...
  9. ezopaci

    FPD 2.6 with TameDOS - Intermittent Double Window

    Why do you use Tamedos ? Tomas
  10. ezopaci

    FPD 2.6 freezes in full-screen mode

    I get some strange behavior with dos applications on the machine where was some "speedfan" application. I can not remember if this app. was exactly "speedfan", but it was something with that. When I remove it, everything was fine. Try launche speedfan again and you will see. :-) You can delete...
  11. ezopaci

    FPD 2.6 freezes in full-screen mode

    If you have trouble with fullscreen, it is nothing with dualcore, ...., but with VGA drivers. Try reinstall vga drivers to the newer version. I get the same problem some time and this solved trouble. With dualcore cpus you get another trouble - hanging program after some time on 100% cpu. Look...
  12. ezopaci

    SELECT generates &quot;File is in use&quot; Error

    I think there is a problem with accesing some directory for writing TMP files. Check and correct CONFIG.FP and parameters TMPFILES, PROGWORK, SORTWORK, ... in this file. I have: tmpfiles=c: editwork=c:\temp\fpdos sortwork=c:\temp\fpdos progwork=c:\temp\fpdos > Using the cursor does no permit...
  13. ezopaci

    Email within FPD 2.6

    Also you can use os's command START. Try in command window START /? Tomas
  14. ezopaci

    Troubles on DualCore with DOS FoxPro solved

    I searched DLL library which can set (on actual running NTVDM) processor affinity parameter. It is VDD driver which can be started from DOS program. So I writed piece of assembler code for Foxpro DOS and now I can run this VDD dynamically when my program starts. So you can call simple Fox...
  15. ezopaci

    Problem with screen / resolution

    I think SET DISPLAY TO VGA25 will be the best. Tomas
  16. ezopaci

    ADIR with long directory names with spaces

    I have developed library for Fox DOS for handling of long file names. There is function LFNFile() for you. See http://www.tek-tips.com/viewthread.cfm?qid=1425874&page=4 Download http://www.ezop.cz/tomas/download/lfndosfox.zip But: FILE(lcFileName) where lcFileName contains some spaces does...
  17. ezopaci

    ADIR with long directory names with spaces

    Which Fox do you use ? Why don't try this: "if file(e_E_path)" ? Tomas
  18. ezopaci

    Create a SubArray from another array?

    Any specific filter ? No. You will need use table engine. Create a cursor, append data into it from array and then COPY TO array with phrase FOR ... Cursors are very fast, it mostly sits in RAM. Tomas
  19. ezopaci

    Memo field problem

    You can use CTRL+ENTER. It works like CTRL+W and with ON KEY LABEL 'AnyYourKey' KEYBOARD '{CTRL+ENTER}' you can use almost anything. Tomas
  20. ezopaci

    Can i use api to find a variable Pointer

    You can return string to fox very simple http://msdn.microsoft.com/en-us/library/tz9zk0sc(VS.80).aspx But you need compile your DLL like FLL library. Then you can use all Foxpro API functions. FLL is practically DLL with some addendum. How to compile FLL ...

Part and Inventory Search

Back
Top