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 Mike Lewis 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. 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

    To make changes to our database, I

    You'll run into trouble if any of your field names are longer than 10 characters. 'Free'ing the table would've truncated them to 10 characters, so your structure will not be the same as it was.
  3. AllCaz

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

    It sure would've saved me a lot of time if the Microsoft Knowledge base articles I found had mentioned that fact. Oh well, the longer it takes me to figure something out, the longer I remember it and the more I learn along the way.
  4. AllCaz

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

    here was the solution: We're running Windows 2000, which I guess doesn't have MTS, or is calling it something different, either way, I could never find it. I found the configured identity in Component Services under "COM+ Applications". Changed the username and password and the...
  5. 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...
  6. 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...
  7. 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...
  8. 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...
  9. AllCaz

    Why use: GO RECNO()

    Thankyou all for your responses! Now I realize that GO RECNO() is being used to refresh the parent-child relationships, but I think I'll add tests for EOF and BOF. I've been using FoxPro for 7 years and I'm still learning new tricks.
  10. 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...
  11. 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?
  12. 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