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 bkrike 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: *

  • Users: Gilesy
  • Content: Threads
  • Order by date
  1. Gilesy

    read write cursors

    Hi All, I am trying to create a read write cursor. Having searched these threads, sombody suggested the following: SELECT * FROM v_products INTO CURSOR lcresult NOFILTER USE lcresult IN 0 AGAIN ALIAS myTable SELECT myTable && this will be readwrite SO, i do this: Select * FROM maintbl ...
  2. Gilesy

    IIF command not working correctly?

    Hi all I have had it reported that the IIF will evaluate all conditions regardless of the return value. For Example <test> = IIF(Procedure1() AND procedure2(),1,0) If procedure1 returns false then it still (apparently) evaluates procedure2. I cannot however recreate this. Has anyone ever heard...
  3. Gilesy

    Phantom Files in Temporary Internet Files folder

    Hi All. In xp, if you go to this directory: C:\Documents and Settings\USERNAME\Local Settings\Temporary Internet Files And then empty it. Then Right click, properties. It states it has 34 files, 12 folders totalling 3.08 mb. I have show hidden files or folders on. They are still there after I...
  4. Gilesy

    RENAME across different drives

    Hi folks. Having a problem with the RENAME command. I have a line RENAME (File1) TO (file2) Where File1 is &quot;T:\spare\temp\12345678.tmp&quot; And file2 is &quot;data\newfile.txt&quot; I get the error &quot;Attempt to move file to a different device&quot; Other than prevent the user having...
  5. Gilesy

    Sys(1004)

    Hi all Does any body know what this is for? it returns a string like &quot;16756543&quot; Thanks
  6. Gilesy

    Unusual error message

    'Transgressed node found during compaction.' Anyone got any idea what on earth this is? Fox 2.6a dos, using a general input screen I have used millions of times and had no problems. It crashed my whole PC. Only happend once so far, but I'd love to know where it came form. Thanks
  7. Gilesy

    problem with ALLTRIM

    Good morning all I have an unusual problem with this code: Where var = 4 STR(var) is returning &quot; 4&quot; and bizarrely ALLTRIM(STR(var)) is also returning &quot; 4&quot; I am using this to construct a field name which subsequently crashes during EVALUATE because of the...
  8. Gilesy

    Save and Restore Screen

    Hi all Does anyone know what the limits are (if any) in terms of memory size, for these commands. In XP and 2000 we are getting crashes. SAVE SCREEN TO memvar ....code.... RESTORE SCREEN FROM memvar Restore screen crashes with error 9 or error 12. My guess is that there is a limit to the size...
  9. Gilesy

    Why is my C: drive showing as Removable Disc ?

    In windows explorer my C:\ drive showing as Removable Disc(C:. Any ideas why? How can I change it becomes it prevents my virus scanner working and nothing goes to the recycle bin. Thanks
  10. Gilesy

    Can Fox 2.6 check for an internet connection?

    Have written an application which shells out of a fox routine and calls up the browser. Fox hangs though if the user is not connected on line. Does anyone know if it is possible for fox to check whether a user is on line or not? Thanks
  11. Gilesy

    Printing problem, default paper form in XP

    Why do these things happen to me? XP, printers, select server properties, create a new form. In your default printer (We use epsom dot matrix fx880 but generic text will do - also occurs on some laser printers) set every reference to paper size to your new form. In FPW 2.6a modify a report...
  12. Gilesy

    insufficient memory - an update

    You may recall that recently I posted a question asking why I was getting this. Thanks to all those who replied, but I beleive my colleagues and I have got to the reason why. (But not the answer.) If you run this code: (use any report and table.) USE <anytable> last = VAL(SYS(1016)) FOR x = 1...
  13. Gilesy

    insufficient memory - this old chesnut!

    I think I've just about exhausted the possiblities for this but my system falls over with insufficient memory at the second line of this snippet of code: nfile=ntfile2 + &quot;.TXT&quot; IF FILE(nfile) *********** Crashes!!!! append memo nmemo from &t_file ENDIF Tried MEMLIMIT...
  14. Gilesy

    LASTKEY() and the mouse...

    Does anyone know what exactly is returned by lastkey with a mouse click? It seems to fluctuate between 50 and 56 in the debug, and the help says look at inkey() for values. 50 to 56 are numbers and you can't put &quot;M&quot; in lastkey()! [bigears]

Part and Inventory Search

Back
Top