Click here to Skip to main content
15,893,722 members
Home / Discussions / C#
   

C#

 
Questionis there in tool available in c#.net to resizeing of images? Pin
poonam jagdale3-Mar-09 0:20
poonam jagdale3-Mar-09 0:20 
AnswerRe: is there in tool available in c#.net to resizeing of images? Pin
stancrm3-Mar-09 3:32
stancrm3-Mar-09 3:32 
AnswerRe: is there in tool available in c#.net to resizeing of images? Pin
Shyam K Pananghat3-Mar-09 3:42
Shyam K Pananghat3-Mar-09 3:42 
QuestionRegex to find the Code blocks using C# Pin
aaCog2-Mar-09 23:59
aaCog2-Mar-09 23:59 
AnswerRe: Regex to find the Code blocks using C# Pin
musefan3-Mar-09 2:47
musefan3-Mar-09 2:47 
AnswerRe: Regex to find the Code blocks using C# Pin
PIEBALDconsult3-Mar-09 3:54
mvePIEBALDconsult3-Mar-09 3:54 
GeneralRe: Regex to find the Code blocks using C# Pin
aaCog3-Mar-09 16:53
aaCog3-Mar-09 16:53 
Questionkrish Pin
krishnakarthik2-Mar-09 23:29
krishnakarthik2-Mar-09 23:29 
AnswerRe: krish Pin
Calin Tatar3-Mar-09 0:03
Calin Tatar3-Mar-09 0:03 
AnswerRe: krish Pin
Ashfield3-Mar-09 1:52
Ashfield3-Mar-09 1:52 
Questionaccess denied Pin
shefa' isied2-Mar-09 23:21
shefa' isied2-Mar-09 23:21 
AnswerRe: access denied Pin
monstale2-Mar-09 23:50
monstale2-Mar-09 23:50 
GeneralRe: access denied Pin
shefa' isied3-Mar-09 0:05
shefa' isied3-Mar-09 0:05 
GeneralRe: access denied Pin
EliottA3-Mar-09 3:00
EliottA3-Mar-09 3:00 
AnswerRe: access denied Pin
monstale3-Mar-09 4:19
monstale3-Mar-09 4:19 
QuestionKnowing when the date changes with less cost... Pin
Mel Feik2-Mar-09 23:19
Mel Feik2-Mar-09 23:19 
AnswerRe: Knowing when the date changes with less cost... Pin
#realJSOP2-Mar-09 23:44
mve#realJSOP2-Mar-09 23:44 
AnswerRe: Knowing when the date changes with less cost... Pin
J4amieC2-Mar-09 23:54
J4amieC2-Mar-09 23:54 
GeneralRe: Knowing when the date changes with less cost... Pin
Mel Feik5-Mar-09 12:31
Mel Feik5-Mar-09 12:31 
QuestionWait for program to continue till webbrowser finish loading site Pin
Member 44178922-Mar-09 22:31
Member 44178922-Mar-09 22:31 
AnswerRe: Wait for program to continue till webbrowser finish loading site Pin
Calin Tatar3-Mar-09 0:11
Calin Tatar3-Mar-09 0:11 
GeneralRe: Wait for program to continue till webbrowser finish loading site Pin
Member 44178923-Mar-09 2:48
Member 44178923-Mar-09 2:48 
Thx very much.. I used these functions you mentioned and then a global variable..

private void Navigate2(String address)
{
if (String.IsNullOrEmpty(address)) return;
if (address.Equals("about:blank")) return;
if (!address.StartsWith("http://") &&
!address.StartsWith("https://"))
{
address = "http://" + address;
_loaded = false;
webBrowser1.Navigate(address);
webBrowser1.ProgressChanged += new WebBrowserProgressChangedEventHandler(webBrowser_ProgressChanged);
while (_loaded == false)
{
Wait(100);
}
return;
}
}

private void webBrowser_ProgressChanged(object sender, WebBrowserProgressChangedEventArgs e)
{
siteLoading.Value = (int)e.CurrentProgress;
if (e.CurrentProgress >= e.MaximumProgress)
{
Wait(200);
_loaded = true; ;
}
}
GeneralRe: Wait for program to continue till webbrowser finish loading site Pin
Calin Tatar3-Mar-09 2:51
Calin Tatar3-Mar-09 2:51 
QuestionOutlook Add-in to Forward new arrived mails to other computer's Outlook via LAN Pin
mahesh_134_s2-Mar-09 19:52
mahesh_134_s2-Mar-09 19:52 
AnswerRe: Outlook Add-in to Forward new arrived mails to other computer's Outlook via LAN Pin
Shyam K Pananghat2-Mar-09 20:45
Shyam K Pananghat2-Mar-09 20:45 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.