Hi James,
I created a Demo with VWG 6.4 beta 3 and Visual Studio 2010 but your solution don't work.
this is the code in form_load, I have NullReferenceException : VWGContext.Current.Arguments["myparam"] is null
http://localhost:2701/Form1.wgx?myparam=1
private void Form1_Load(object sender, EventArgs e)
{
try
{
string myparam = VWGContext.Current.Arguments["myparam"].ToString();
MessageBox.Show(myparam);
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString(), "Error");
}
}
best regards