Hi
Following your private email which mentions javascript I now realise that you have a web browser control, containing some javascript that sets the window.status property. You want to get this property out of the web browser control.
A quick search on google for "javascript webbrowser control variable c#" reveals that you want to be looking at the HtmlDocument.InvokeMethod method, e.g.:
object result = webBrowser1.Document.InvokeMethod("eval", new object[] { "window.status" } );
result should be a string.
/- Sam Judson : Wrox Technical Editor -/
|