blah blah blah is here! blah blah » Close

0
votes
1 answers

Generic Progress Bar - WPF

eeboy
499

I want to create a window which contains a progress bar and a label. This window will be shown when certain time consuming tasks are performed (upload/download). It should be a modal window in the sense that it is in the foreground and the ...

0
votes
2 answers

C# How to get Internet Explorer address bar information (url)?

Hi, how to get Internet Explorer address bar information? When i`m type in to address bar e.g. www.google.com, i want to get message with the same URL. How to get this? I work with C#. can anyone help me?

0
votes
1 answers

c#: Progress bar with httpwebrequest

How can i use progress bar with a code like this... it gets some xml from a php. [code] try { HttpWebRequest request = (HttpWebRequest)WebRequest.Create("http://www.mywebsite.com/p/getAll.php"); ...

1
votes
11 answers

C# Progress Bar Example with Percentage of Completion

hi, Could I have some C# code example of how to use the progress bar, with the percentage of completion? For example, during execution of some code, says in Counting Down from 1000 to Zero, I would like to send the progress bar moving wi ...

0
votes
2 answers

Cannot implicitly convert 'System.Uri" to 'string'

Hi, I'm making a web browser in visual C# and I need to make the address bar change when a new page loads. Here is the code I am using: private void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e) { ...

Feedback