I have a simple winforms app just one window with one WebBrowser control inside. On vista this fails to show the date but works OK XP ? The website runs activeX to show the date.
namespace WindowsFormsBrowserTest
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
this.webBrowser1.Navigate("http://www.pcpitstop.com/testax.asp");
}
}
}
http://www.pcpitstop.com/testax.asp
Any clues would be really spreciated, should be simple but I have no idea.
Any security experts out there ?