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 TouchToneTommy 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: CCHSR
  • Order by date
  1. CCHSR

    Class Error in Foxpro VPME6

    Thanks for all of your help and suggestions, I found a copy of newer classes that were on another system I have, I copied them over to the system giving me trouble and it fixed the issue, Thanks Again By the way VPME6 and VPM9 are framework from Visual Promatrix which is now all done, great...
  2. CCHSR

    Class Error in Foxpro VPME6

    IF TYPE('This.oSession') <> 'O' This.oSession = CREATEOBJECT('Session') IF TYPE('This.oSession') <> 'O' RETURN .F. ENDIF * Set the environment of the private data session. This.SetPrivateDataSessionEnvironment(This.oSession.DataSessionID) ENDIF Every time I try to start the...
  3. CCHSR

    Creating a popup window from a grid that opens and closes when changing rows

    VPF 6.0 I have a grid that when I change rows it passes data to varables that I pass to a form that I want to pop up each time I change rows, I am having trouble finding the right procedure to accomplish that. The form I call looks up some detail about some items and shows that info in a grid...
  4. CCHSR

    BlackIce Pdf Driver and VFP 9.0 on 32bit and 64bit windows 7

    Has any one written a routine that changes the output file name when using the Blackice PDF Driver. I am tring to write one but they do not have sample prgs written in Foxpro. Not sure if vb.net ocx will work, and how to set it up in the prg. Any help or suggestions would be great. Craig C. Hudson
  5. CCHSR

    how to run a Visual Basic Prg or a C++ or C#.net from a VFP program

    Olaf, Thanks for jumping in, I really was tring to ask if I built a VB program using the dll the way they show. Can I run that VB prg from inside of my VFP prg. Craig
  6. CCHSR

    how to run a Visual Basic Prg or a C++ or C#.net from a VFP program

    Sorry I posted this in the wrong forum before. Does anyone know how to run a Visual Basic Prg or a C++ or C#.net from a VFP program. This is a extension of the .TLB post I posted, I thought this might be a better approach. Craig
  7. CCHSR

    Calling or running a VB or C++ or C#.net routine from VFP6.0

    Does anyone know how to run a Visual Basic Prg or a C++ or C#.net from a VFP program. This is a extension of the .TLB post I posted, I thought this might be a better approach. Craig
  8. CCHSR

    Generation of a .tlb file

    Olaf, When I cough up the $750.00 I will find out. I think there are just talking about the different versions of VFP. Because all of their examples are in VB or .net Code. Craig
  9. CCHSR

    VFP 6 Strange Problem

    Gomaram, Here is some code that works well for me. CODE/ sele a_sysdat (file that holds the incrementing number) * int1 = field that holds number * the following just keeps the number less than 8 chars Store IIF(int1 + 1 < 100000000, STR(int1 + 1,8,0), STR(1,8,0)) TO hldnumber * Lock Files...
  10. CCHSR

    Generation of a .tlb file

    Olaf, I did run the regasm.exe as admin under XP SP3. Maybe I check on running regasm.exe and try to see if I did it right. I talked to tech support at ICVERIFY and they told me VFP6.0 is the preferred software to use other than newer versions. I am going to inlist their help, their support fee...
  11. CCHSR

    Generation of a .tlb file

    Thanks Mike,Oalf, After I registered it, tried to look at it thru Object Browser (VFP9.0) as my VFP6.0 does not have one, but I could not find it in the COM libaries. I will talk to the support group at ICVERIFY. Any other suggestions. Regards Craig
  12. CCHSR

    Generation of a .tlb file

    Olaf, I found 3 versions of .net on my system v1.1.4322, v2.0.50727, v4.0.30319. Does one need to have all 3 versions on the system? I ran v4.0 regasm.exe against the dll and it claimed to have registered it. Do I have to have VB or Visual Studio to look at it's methods or properties, or can I...
  13. CCHSR

    Generation of a .tlb file

    Mike, I am not sure what you mean by [code] tags. Craig
  14. CCHSR

    Generation of a .tlb file

    Olaf, Thank you for your prompt reply. I have both VB Code and C#.net code examples, how am I able to get them to you, I have never attached anything before. I did try to register the dll with regsvr32, but came back with error (DllRegisterServer Entrry Point Not Found). Then tried regasm.exe...
  15. CCHSR

    Generation of a .tlb file

    I have a dll that is designed to be used in an .net application it is called ICVTnsClient.dll and it is used in a credit card application. The program that uses it is ICVERIFY. The basic purpose is to encrypt and decrypt the request file. The SDK talks about generating a .tlb file that has to be...

Part and Inventory Search

Back
Top