The problem was simpler than I thought. When the list appeared in gray, I had to click on a page icon, and it was fixed.
Maybe after installing "vfp9SP2RT.exe" it was configured in another way by default.
Thanks for your help.
Regards
Hello
Thank you for your input, I solved the problem but others appeared to me.
The system with problems is in production, in development mode it works well.
Install vfp9SP2RT.exe on a client PC that was not working
REPORT FORM MY_INFO\REPORT.FRX OBJECT loListener
After installation it works...
In the attached image I describe the two cases.
In case 1 it does not work in development environment, in case 2 it works in development environment but not in production.
I also attached the test code.
If I link to the libraries that are in the application folder it seems that some are...
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=" +...
Thank you for your contributions, has been very useful information.
With
Olecontrol1.Silent = .t.
I could eliminate errors and with
<meta http-equiv="X-UA-Compatible" content="IE=9" >
the problem with the map was solved.
Regards
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) +...
I solved the problem as follows:
XML = CreateObject ("MSXML2.ServerXMLHTTP.6.0")
web = "https:// ..."
Xml.Open ("GET", web,.F., "User", "pass")
XML.SetRequestHeader ("content-type", "application/x-www-form-urlencoded")
XML.setOption (2, 13056)
XML.send
thanks
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...
Hi Olaf
I will exemplify the problem:
I have one the library made in C#, and I want to import it into VFP9 (using COM INTEROP).
The library "Library1.dll" has two classes, "ClassA" and "ClassC". The class "ClassA" is abstract and I have to redefine the method "Process"; and the class...
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.