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

    ...exclusive 4. zap 5. append from c:\trash\MyTableCopy 6. reindex The code that is generating the error is as follows: PROCEDURE UP_COMMENT *Comments TRY LOCAL XS, V1COMMENT, strTemp XS = ALIAS() SELECT FDNM && Field reference lookup table SEEK "COMMENT" IF FOUND() THEN **>>Line...
  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

    ...CLEAR EVENTS RELEASE ALL CLOSE ALL IF VARTYPE(gfrmSplash) = "O" THEN gfrmSplash.Release ENDIF CHDIR &gstrFishDir. ** set flag that there was an error to reload winfish blnHaveError = .T. SET BELL OFF RETURN TO MASTER Thanks all for those who reply. Art Art...
  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

    ...using the following code: oADORs = CREATEOBJECT("ADODB.Recordset") oADORs.ActiveConnection = oADOConn oADORs.Source = "Select * from .dbo.tblMasterLoans" oADORs.CursorType = 3 oADORs.LockType = 3 oADORs.Open DO WHILE NOT EOF() oADORs.AddNew...
  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

    ...oAdoConn.Connectionstring = &quot;user ID = adegaeta;initial Catelog = ISD_Deals;Data Source=CGIDEVW2K;Connect Timeout = 60&quot; oADOConn.Open ** step #1 ** copy the deal information to the menu section of this new program IF oADOConn.State <> 1 then Messagebox(&quot;Error Connecting to...
  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

    ...LOCAL pstrReturn SET PROCEDURE TO &gstrFishDir.\Lib\libclas.app ADDITIVE DO CASE CASE pstrAction = &quot;PROGRAM&quot; DO &pstrItem. ** do the form that was first called. CASE pstrAction = &quot;FORM&quot; DO FORM &pstrItem. to pstrReturn ** if a return form is...
  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