Click here to Skip to main content
15,892,737 members

Comments by Volodymyr Bobko (Top 9 by date)

Volodymyr Bobko 7-Apr-13 11:16am View    
As far I understand your ViewTabelsData function should not interact with UI element so you can rewrite function bw_DoWork

private void bw_DoWork(object sender, DoWorkEventArgs e)
{
ViewTabelsData();
}
Volodymyr Bobko 7-Apr-13 11:16am View    
Deleted
As far I understand your ViewTabelsData function should not interact with UI element so you can rewrite function bw_DoWork

private void bw_DoWork(object sender, DoWorkEventArgs e)
{
ViewTabelsData();
}
Volodymyr Bobko 28-Feb-13 15:26pm View    
If you can preprocess web page HTML before passing it to your browser you can insert this script directly into your web page.
<script language="javascript">
var alert = function () { };
var confirm = function () { return true; }
</script>

Volodymyr Bobko 28-Feb-13 5:40am View    
Just checked once again and -
it doesn't work in IE8 and IE7, and works fine in IE9.

But in IE 8/7 you can achieve the same result with the following script:
var alert = function(){};
alert(); // do nothing
Volodymyr Bobko 28-Feb-13 4:16am View    
Deleted
Just checked once again and -
it doesn't work in IE8 and IE7, and works fine in IE9.

But in IE 8/7 you can achieve the same result with the following script:
var alert = function(){};
alert(); // do nothing