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 Wanet Telecoms Ltd 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: AllCaz
  • Content: Threads
  • Order by date
  1. AllCaz

    Error 111 - Cannot Update Cursor

    One particular user of this system is not able to save any data to the database. She gets "Error 111, Cannot update the cursor" no matter which form or table she tries to use in the application. Each control says 'read only' in the status line as she tabs/arrows through them. The...
  2. AllCaz

    ASP 0177 error, Configured Identity is incorrect

    We have several foxpro COM-DLL's being used to provide access to foxpro data via ASP pages. When ASP issues Sever.CreateObject(), it generates an HTTP 500.100 error: Server Object, ASP 0177 (0x8000401A) The server process could not be started because the configured identity is incorrect...
  3. AllCaz

    DLL's "Configured Identity" - how to change it?

    Have several foxpro COM-DLL's being used to provide access to foxpro data via ASP pages. When ASP issues Sever.CreateObject(), we get an HTTP 500.100 error: Server Object, ASP 0177 (0x8000401A) The server process could not be started because the configured identity is incorrect. Check the...
  4. AllCaz

    Visual Studio SP5 and MSDN July 2001 problems

    First I installed the complete MSDN July 2001. It works from the Windows Start menu and the FoxPro Help menu, but when I use F1 to bring up help it says "the compiled help (.chm) file does not contain context IDs". I don't have Crystal Reports installed, which was the only mention of...
  5. AllCaz

    How do you send an email from a cli

    How do you send an email from a client's machine if you don't know what kind of mail server or email client they have installed? I also need to attach a file to the message. ShellExecute works great with Outlook, but doesn't attach the file with Outlook Express. I get a return code of 42...
  6. AllCaz

    Why use: GO RECNO()

    I'm updating someone else's code and I keep running into the statement: GO RECNO() My first instinct was to rip it out - why move the record pointer to the record you're currently on? But I have a feeling that it's there for some reason, maybe it's the solution to some weird bug - does...
  7. AllCaz

    Run an Access executable from a Foxpro program

    A client would like to be able to launch an Access program from a Foxpro program. Is there a way to launch the Access program as a separate task so that it doesn't suffer any performance hit from Foxpro overhead? Is RUN /N the way to go or is there an API call or something else that is better?
  8. AllCaz

    Send a cursor to Excel

    I use this code when I want to copy a cursor or table over to Excel so I can easily sort it or otherwise mess with it. Local lcFile lcFile = 'c:\temp\export.xls' COPY TO &lcFile TYPE XL5 oExcel = CREATEOBJECT('Excel.Application') oExcel.Visible = .T. if !file(lcFile) =MESSAGEBOX(lcfile +...

Part and Inventory Search

Back
Top