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

  • Users: VBFOXDEV35
  • 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

    Cool, thanks for the feedback. What have you used this for besides PDF's? Have you used eques for Excel? The reason I ask is my application is dependent on Adobe for PDF writer and distiller, as well as Excel for creating spreadsheets. Thanks again for your feedback. Also if you have any code...
  3. 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...
  4. 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...
  5. 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...
  6. VBFOXDEV35

    Ideas for VFP SQL server application

    Mike, thanks for the advice. The problem I am running into is I have a web site in .NET that I created to track these assets. I have users that can get a request to look at an asset that was done 3 years ago. So they go to the site, type the number in, and information is returned along with...
  7. VBFOXDEV35

    Cannot add VCX file to Source Safe

    RGBean, I have no idea what I have done, but I finally got the file into VSS. What was happening was when I tried to add the files using VSS directly, I was getting a VSS error, files already open. WHich was strange. So I did the following: Create a dummy text file called lib.txt 1. Added...
  8. 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...
  9. VBFOXDEV35

    Cannot add VCX file to Source Safe

    VFP 7.0 SP1, VSS 6.00C, adding through VFP project manager. Should I add them with VSS instead of within VFP? Have not tried that since I have my VCX added to my project. Thanks for the reply Art Art DeGaetano II Software Developer, MOUS
  10. 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...
  11. 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...
  12. VBFOXDEV35

    ADO Error Accessing SQL Server 2000 from VFP Code

    OK, I have just qualified the table as you suggestion in #1, but now when I check the recordcount I get -1. This is odd because I have 2 test records in my table. Is there any other reason why I am getting recordcount -1? Thanks Art Art DeGaetano II Software Developer, MOUS
  13. VBFOXDEV35

    ADO Error Accessing SQL Server 2000 from VFP Code

    Oh yes, I do have #INCLUDE "C:\MakeDeal\SFX\adovfp.h" at the top of my form. Art DeGaetano II Software Developer, MOUS
  14. VBFOXDEV35

    Congratulations Ramani

    Congrats!!! You have helped me numerous times! I am glad to see you are well noted!! Art Art DeGaetano II Software Developer, MOUS
  15. 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 =...
  16. VBFOXDEV35

    Control Array in VFP

    Thanks to you all. WGCS, tried your method last night and it kicked A$%&^ I knew there was a way with VFP! Thanks Art Art DeGaetano II Software Developer, MOUS
  17. VBFOXDEV35

    Control Array in VFP

    So you are saying you can read the name from the database and then macro sub that field name to find the proper control? That makes sense. Art Art DeGaetano II Software Developer, MOUS
  18. 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...
  19. VBFOXDEV35

    Form Question, Release one form and load another form

    Nevermind all I just figured it out. Here is what I did: PARAMETERS pstrAction, pstrItem LOCAL pstrReturn SET PROCEDURE TO &gstrFishDir.\Lib\libclas.app ADDITIVE DO CASE CASE pstrAction = "PROGRAM" DO &pstrItem. ** do the form that was first called. CASE pstrAction...
  20. VBFOXDEV35

    Form Question, Release one form and load another form

    Actually the menu is not the problem, I want to be able to load the password form. Then if successful, unload the password form and then load a data entry form. This is what I need to figure out how to do. I must have not been clear to what I was asking. Art Art DeGaetano II Software...

Part and Inventory Search

Back
Top