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

    Problem in production environment with vfp9

    Hello The following code works in development environment: LOCAL loListener loListener = newobject('HyperlinkListener', 'HyperlinkListener.prg') IF UPPER(TYPE("loListener")) <> "O" THEN messagebox("FAIL! loListener could not be created. Check msvcr71.dll") messagebox("loListener type=" +...
  2. rha2000

    Problem with gmap3 and olecontrol

    Hello I have the map below: http://infovatica.com.ar/accesomapa/demo/assets/demo/markers.html I'm using gmap3 (http://gmap3.net/) Works fine from IE and CHROME, but when I access from a ole control from vfp this: Headers = "Content-Type: application/x-www-form-urlencoded" + CHR(13) +...
  3. rha2000

    Problem with certificate

    Hello I do not need the certificate request: web = "https://..." XML = CREATEOBJECT("WinHttp.WinHttpRequest.5.1") TRY XML.Open("GET", web , .F.) XML.SetCredentials("user", "pass", 0) XML.SetRequestHeader("content-type", "application/x-www-form-urlencoded") XML.Send CATCH TO oError WHEN...
  4. rha2000

    Problem importing library .dll in .NET using COM INTEROP

    I want to import a library .NET in C#, I want to integrate a VFP9 application using COM interop objects, this library has an abstract class "class1". Try to do it like this: x = NEWOBJECT ("myclass") DEFINE CLASS myclass AS session OLEPUBLIC _Class1 IMPLEMENTS IN "Libreria.Class1" ...
  5. rha2000

    Problem using webbrowser

    I need to pass POST parameters using VFP9 and does not work. PostData = "data=LaInformacionQueQuieroEnviar" PostData = StrConv(PostData ,5) Headers = "Content-Type: application/x-www-form-urlencoded" + CHR(13) + CHR(10) thisform.Webbrowser1.Navigate( url, 0, "", PostData, Headers) I think the...

Part and Inventory Search

Back
Top