Chart FX 6.2 is not displayed on windows 7 clients - chartfx

We have an ASP.net application that uses charFx 6.2. It works on windows XP clients but the clients who run Windows7 can not see the chart. Any help in this regard is really appreciated.
Thanks

The Windows 7 users probably have a newer version of Internet Explorer which is incompatible with the older version of ChartFX.
You could try to update ChartFX or run an older version of IE (through something like Citrix) on the Windows 7 machines.

Related

Deploy to Windows Embedded Compact 7 yields "The bootstrap could not be loaded"

Here's the setup:
I'm trying to connect / deploy to a Motorola Windows Embedded Compact 7 device from VS 2008. The development machine VM is Windows XP (it has tools and SDKs going back to eVC3 on it that will not run on anything newer). It is therefore running ActiveSync as opposed to WMDC. Basic RAPI seems to be working as I can browse the device file system, ect via ActiveSync. This developemnt system works successfully with dozens of other devices, but this might be the first CE 7 device. And again, the error message was simply "The bootstrap could not be loaded".
I'd appreciate any tips on getting a successful connection to the CE 7 device working.
I had exactly the same problem. The solution for me was to install the SDK for the pda. Mine was MC32N0.
You can find the sdk here

Is Internet Explorer 11 supported by Worklight?

I am working on application for Windows 8 tablet and would like to leverage some features introduced in IE 11.
I am using laptop with Windows 8.1 and IE 11. I was really surprised to see when I was debugging in VS 2013 that my app is running on IE 10 but not IE 11.
I tried to build project in Eclipse setting it up that it should use external browser as it adviced in this article: http://www-01.ibm.com/support/docview.wss?uid=swg21600697 but no luck :-( it still use IE10.
Is there is a way to debug a Windows 8 tablet app in VS 2013 using default browser on laptop? Like IE 11 on Windows 8.1 laptop.
Thank you in advance for help!
The option you tried is not related as it is about Worklight Console's MBS, whereas you are talking about Visual Studio which is an external IDE for Windows Store and Windows Phone 8 app development...
What you want to do is set Internet Explorer 11 as your default browser in your Windows 8 Desktop machine (running Visual Studio). However, that seems to be not so straight forward with Visual Studio in the mix.
Here are some possible solutions:
Where does Visual Studio stores the default browser to use in debug?
Visual Studio opens the default browser instead of Internet Explorer
http://www.c-sharpcorner.com/Blogs/2131/set-default-browser-in-visual-studio.aspx
Perhaps this as well:
http://developer.telerik.com/featured/5-ways-to-build-mobile-apps-with-visual-studio/
http://blog.credera.com/technology-insights/microsoft-solutions/5-things-you-need-to-know-about-debugging-in-visual-studio-2012/

Windows Phone development tools

I have installed vs-2013 and install Visual Studio 2013 Update 2 RC Windows Phone 8.1 development using this link https://dev.windowsphone.com/en-us/downloadsdk and after that I want to install sdk 8.0 using the above link but it gets me error below:
This Product can only be installed on Windows 8 or later 64-bit Machine.
But I have already installed windows 8
Kindle suggest me, waiting for your reply.
Thanks.
The download suggests the requirement for Windows 8 (x64) as does the Introducing Windows Phone SDK 8.0 blog. See: http://www.microsoft.com/en-us/download/details.aspx?id=42307 (Expand System Requirements) and http://blogs.msdn.com/b/visualstudio/archive/2012/10/30/introducing-windows-phone-sdk-8-0.aspx

Windows 8 internet explorer 10 vhd? has anyone found one?

I've been using microsoft virtual pc to locally run multiple internet explorer versions on my web development machine.
Most the time I pull down the vhds I need from Microsoft here
however, I have not found an IE 10 vhd anywhere on microsoft.com. I've asked microsoft here as well.
Should I copy a windows 7 vhd and just upgrade it to IE 10 for now? cross my fingers it won't run differently on windows 8?
Yup! VM Appliances for all your base are here: http://www.modern.ie/en-us/virtualization-tools#downloads
Since you're running Windows XP and already have a Windows 7 VHD, I would say make a duplicate copy of it and upgrade it to IE10. IE10 for Windows 7 can be got from here.
I would suggest you to upgrade to Windows 8 Pro as it includes Hyper-V and native VHD booting support. Native VHD booting is on Windows 7 as well. See this post. This enables you to boot multiple Windows OSes as if running on bare metal.
Let me know if you need further clarifications.

Why does IIS 8.0 identify itself as 7.5 via WMI?

My web application's installer does some configuration via WMI, and in order to handle different versions will ask IIS for its version with code like:
DirectoryEntry folderRoot = new DirectoryEntry("IIS://localhost/W3SVC/Info");
Version iisVersion = new Version((int)folderRoot.InvokeGet("MajorIIsVersionNumber"), (int)folderRoot.InvokeGet("MinorIIsVersionNumber"));
Server 2012 and Windows 8 both return 7.5 for this, even though the official version is 8.0. This wouldn't be so much of a problem, except that this is the same version that windows 2008 reports. Why is this, and is there a better resolution than checking the OS version?