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 Chriss Miller 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: VBFOXDEV35
  • Content: Threads
  • Order by date
  1. VBFOXDEV35

    HELP: Fatal Exception C0000005 when evaluating MEMO field

    All, This problem is happening quite often with version 7 and 8 of VFP and I cannot figure out how to resolve this. In certain cases when I try evaluate the memo field of a clipper dbf file (DBF, DBT,) I receive a fatal error exception in VFP 7 and 8. The only way to get around this is to do...
  2. VBFOXDEV35

    Adobe Acrobat SDK and VFP

    All: I am wondering if any of you have used the Adobe Scrobat Full SDK with any of your VFP applications? The reason I ask is I just downloaded the full SDK for 5.0 and it looks like a great replacement than having many Full Adobe installs on client machines. I have tried Ghostscript and...
  3. VBFOXDEV35

    How to add _genxtab to application

    All: How does one go about adding the _genxtab functionality to a VFP application? I have a couple of reports that could use this type of code. Is it a class? or can I just say DO (_Genxtab) in my application. Do I need VFP installed on the client to do this or will the run-time dll's handle...
  4. VBFOXDEV35

    Quick question on set console and VFP error

    All: Real quick question. I have an error handler built into my code, however sometimes when this handler fires, it causes any output to be directed to the current open form/screen Can anyone tell me what might cause this? It's almost as if a VFP error set's the console back on, very strange...
  5. VBFOXDEV35

    Ideas for VFP SQL server application

    All: I have just created a master asset file table in SQL server of about 1 million records (15 fields) for my company. They want to keep track assets for a given 2 years and add new ones as we move along. The program that updates the assets is in VFP using ADO. The new assets are in a VFP...
  6. VBFOXDEV35

    Cannot add VCX file to Source Safe

    All: Can anyone give me some insight to the following: Everytime I try to add my VCX file to VSS, I get the following error message: Error #1 in createvcxcursor (887), the file does not exist I know for a fact that this file exists in the proper location Any answers to this questions are...
  7. VBFOXDEV35

    Load Spreadsheet into SQL server using VB or VB.NET

    Hello all. I have this simple project to work on and I want to make sure I am going in the right direction. I have a SQL server table of about 100,000 asset numbers and I want to create an interface to load a spreadsheet to eventually find any matches, then report back to the user the found...
  8. VBFOXDEV35

    ADO Error Accessing SQL Server 2000 from VFP Code

    All: This is driving me crazy. I have the following code to access as SQL server table: LOCAL oAdoConn LOCAL oADORs oAdoConn = CREATEOBJECT("ADODB.CONNECTION") oAdoConn.Provider = "SQLOLEDB" oAdoConn.Connectionstring = "user ID = adegaeta;initial Catelog =...
  9. VBFOXDEV35

    Control Array in VFP

    All: Hey another question. Has anyone written, found, etc a control array in VFP that works just like a VB control array? My problem is I have this form with any textbox controls. each textbox is named exactly as a field in a database (no the controls are not bound). I want to know if there is...
  10. VBFOXDEV35

    Form Question, Release one form and load another form

    All: Here is a simple for question. I have 2 forms, a password verification form, which is called from the main program menu bar. And a data entry form. Once the user logs in, I want the password form to release and then have the data entry form to load. What is the easiest way to go about...
  11. VBFOXDEV35

    Create a custom textbox control in VFP

    All: I know how I can create a custom textbox contol in VB to be the following: [textbox1] [textbox2] [label1] textbox1 = read-only data textbox2 = data entered by user label1 = field definition How does one go about this in VFP? I need to create a form that uses this field structure on...
  12. VBFOXDEV35

    Error Accessing Printer Spooler with Citrix

    All: I am having one heck of a time figuring this one out. My application creates PDF files using Ghostscript and the ps2pdf function. However on a client machine all works well. Once you get to Citrix though, the problems begin. I finally got the Citrix server to run the reports (logged...
  13. VBFOXDEV35

    Beginning of Week date

    All: Just a curious question of how to do this. I am writing a small application for a user, and they need to have the date textbox fill with the current startdate of the week. For example, today is 10/09/2002, I want to have the textbox say 10/07/2002, Monday's date. How would one go about...
  14. VBFOXDEV35

    VFP and ADO

    All, I am a little rusty when it comes to ADO and VFP. My question is, how do I get this code from VB to convert properly in VFP? Any hints would help a lot. I am only stuck on how the connection strings should be set. As for the rest of ADO, I am all set. Thanks all!!! Sub...
  15. VBFOXDEV35

    Report Forms "Beep" while printing in Win 2k and XP

    All: Here is a tricky question for you. Why in certain situations does printing a report form call the Default Beep Event in Windows 2000 and XP. I have not run into this problems with users of Windows 98. Is this Uncle Bill's problem or mine? Thanks to all who respond. Art Art DeGaetano II...
  16. VBFOXDEV35

    VFP, Adobe PDF writer, and Citrix

    All: This one is an interesting question. I have an application that is multi-user due to a citrix connection. My problem is some of the reports require PDF writer to create reports. On standard Windows OS's (XP, 2000, 98, etc) I have no problem. But once I get to citrix, all hell breaks...
  17. VBFOXDEV35

    VFP 7.0 vs. VFP 6.0 *.dll question

    Hey all, I have this slight program with my *.dll I have a VFP 6.0 *.dll that compiles with no problems. However when I try to compile this in VFP 7.0 I get a syntax error on this line: PROTECTED DIMENSION strStructure(1,4) Can anyone explain this for me? My Project properties have 2...
  18. VBFOXDEV35

    Combo Box Question

    Hello again all. My question is about Combo Boxes. I have a combo box on a form that holds all the 50 US states, when I load a record I want to have the combobox show the state from the table. My combo box structure has 2 columns State Description (only one visible), and the 2 character state...
  19. VBFOXDEV35

    Set focus back to invalid textbox entry

    Hello again all. Now I have this twist to the VFP world. I have a textbox where I want to make sure only Numeric values are entered into the textbox, if not I want the focus to go back to that textbox (currently using the lostfocus()), select all the current textbox value (this.format =...
  20. VBFOXDEV35

    Format a textbox to currency on a form

    Hello all, This is a real easy questions I am sure you all can answer quickly. I am so used to VB here you can format a textbox to be numeric, but how to you in VFP 7.0? My user will enter a value to the textbox, 15242.95, but I want to display to the user $15,242.95 when the focus leaves, but...

Part and Inventory Search

Back
Top