i am new in using Infragistics, i have an application deployed on client server and it s working fine while browsing it from windows xp 32bits. But currently he want to navigate the application using windows 7 64bits. So how can i fix the problem without changing the dll version. i m currently using version 7 infragistics.
Related
I created a 32 bit program with Rad studio 10.4 in C++. This program must communicate with 2 APIs.
My development machine is running Windows 10 x64 and all tests are going well. The program communicates perfectly with APIs.
I put the program in production at my client, on a Windows 7 x64 machine and there, the communication is not done, return code 0.
I test on a new VM in Windows 7 x64 and the problem is the same.
I'm testing on a new VM in Windows 10 x64 and no worries, communication is fine.
I of course disabled the firewall, also added rules in the firewall but nothing changes.
Do you have any idea where the problem could come from ?
Thanks a lot
this->RESTClient_maj->BaseURL = "urlapi";
this->RESTRequest_maj->Params->Items[0]->Value = "token 1234";
this->RESTRequest_maj->Execute();
I use components from Rad Studio and get and patch methods.
what additional information can I provide ?
I'm trying to set os name and os arch with my app (C++);
in java I've previously worked with System.setProperty(), what I exactly need to do is:
System.setProperty("os.name", "Windows 7");
System.setProperty("os.arch", "x86");
PS: I am trying to run an external exe file with Windows 7 compatibility mode; because I am using an exe which is only compatible with Windows 7, so I want to make it compatible with newer Windows versions (8, 10)
I'm using Netbeans 8.2 on a Win 10 Machine for remote developing on a RaspPi with Raspbian Jessi.
I set up the remote building system and it works very well.
There one think I do not like. Netbeans is using this path to copy the data
pi#raspberrypi:~/.netbeans/remote/192.168.1.46/workstation-Windows-x86_64/C/Users/user/Documents/NetBeansProjects/.....
How can I change this path e.g. to
pi#raspberrypi:~/NetBeansProjects/
Hi I am trying some application involving using Desktop Duplication Sample Code. However on the page it is mentioned it can ONLY be used with Windows 8.1
However is there any way possible to use it with Windows 10 as well?
Any inputs on how to go about trying to implement this for windows 10 will be appreciated.
I'm working on an AIR app that uses a Native Extension for windows that I developed for the same project. The app calls an ANE method called pingFunction and passes it a String containing the IP address where the pingFunction will perform, believe it or not, a ping test.
The application and it's ANE work great on Flash Builder and even after making it a release, they keep working like a charm on the development PC. The problem is that I've tried on two other computers and the application is throwing the following error:
ArgumentError: Error #3500: The extension context does not have a method with the name pingFunction.
at flash.external::ExtensionContext/_call()
at flash.external::ExtensionContext/call()
at com.mycompanyname.myappname::MyAppName/sendPing()[...
At the beggining I thought I had to do with the fact that I was using a DLL I compiled using the Debug configuration on Visual Studio instead of the Release configuration, because I read that sometimes the a debug-version of a DLL can use external DLLs. So, I changed it and rebuilt the whole library as a release build. Sadly for me, I'm still experiencing the same result.
Also, I tried changing the swf-version of both the AIR app and the ANE to the AIR SDK version I'm using (14.0), and got again the same error.
The development computer is running Windows 8.1 and the others, where the app is not working, Windows 7 and Windows 7 Service Pack 1.
Any ideas about why this is happening? Any questions or comments that might lead me to the right track will be deeply appreciated.
Error#3500 is coming because you don't have the required runtime installed on those machines, which is necessary to execute any c++ code .
On your development machine you have visual studio installed and hence you also have msvcr.
Solution of the problem is:
Install msvcr i.e. Microsoft Visual c++ redistribution - 2012 from here.
you need msvcr anywhere you want to run any VS compiled c++ code.