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=" +...
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) +...
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...
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"
...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.