Click here to Skip to main content
15,922,584 members
Home / Discussions / C#
   

C#

 
GeneralRe: Backslashes and forward slashes Pin
Ravi Bhavnani4-Apr-10 8:15
professionalRavi Bhavnani4-Apr-10 8:15 
AnswerRe: Backslashes and forward slashes Pin
Dave Kreskowiak4-Apr-10 7:49
mveDave Kreskowiak4-Apr-10 7:49 
GeneralRe: Backslashes and forward slashes Pin
Darrall4-Apr-10 8:05
Darrall4-Apr-10 8:05 
GeneralRe: Backslashes and forward slashes Pin
PIEBALDconsult4-Apr-10 13:40
mvePIEBALDconsult4-Apr-10 13:40 
QuestionAdding items to ListView groups Pin
teknolog1234-Apr-10 4:09
teknolog1234-Apr-10 4:09 
AnswerRe: Adding items to ListView groups Pin
Luc Pattyn4-Apr-10 4:12
sitebuilderLuc Pattyn4-Apr-10 4:12 
QuestionSerializationException was unhandled Message="Unable to find assembly... " problem Pin
barak drechsler4-Apr-10 3:37
barak drechsler4-Apr-10 3:37 
AnswerRe: SerializationException was unhandled Message="Unable to find assembly... " problem Pin
Nicholas Butler4-Apr-10 6:23
sitebuilderNicholas Butler4-Apr-10 6:23 
GeneralRe: SerializationException was unhandled Message="Unable to find assembly... " problem Pin
barak drechsler4-Apr-10 7:39
barak drechsler4-Apr-10 7:39 
GeneralRe: SerializationException was unhandled Message="Unable to find assembly... " problem Pin
Nicholas Butler4-Apr-10 8:01
sitebuilderNicholas Butler4-Apr-10 8:01 
GeneralRe: SerializationException was unhandled Message="Unable to find assembly... " problem Pin
barak drechsler4-Apr-10 8:45
barak drechsler4-Apr-10 8:45 
QuestionUnnecessory process - please wait while windows configures Pin
Milind Panchal4-Apr-10 2:18
Milind Panchal4-Apr-10 2:18 
QuestionHide subproperty in PropertyGrid Pin
viciouskinid3-Apr-10 23:39
viciouskinid3-Apr-10 23:39 
AnswerRe: Hide subproperty in PropertyGrid Pin
OriginalGriff4-Apr-10 1:27
mveOriginalGriff4-Apr-10 1:27 
GeneralRe: Hide subproperty in PropertyGrid Pin
viciouskinid4-Apr-10 16:29
viciouskinid4-Apr-10 16:29 
QuestionForwarding received SMS from the phone to output Pin
Kujtim Hyseni3-Apr-10 22:29
Kujtim Hyseni3-Apr-10 22:29 
QuestionHow can i find some Hardware information on run time ? Pin
Yanshof3-Apr-10 13:37
Yanshof3-Apr-10 13:37 
AnswerRe: How can i find some Hardware information on run time ? Pin
Eddy Vluggen3-Apr-10 14:28
professionalEddy Vluggen3-Apr-10 14:28 
GeneralRe: How can i find some Hardware information on run time ? Pin
Yanshof3-Apr-10 14:31
Yanshof3-Apr-10 14:31 
GeneralRe: How can i find some Hardware information on run time ? Pin
Eddy Vluggen3-Apr-10 14:37
professionalEddy Vluggen3-Apr-10 14:37 
AnswerRe: How can i find some Hardware information on run time ? Pin
Ravi Bhavnani3-Apr-10 14:42
professionalRavi Bhavnani3-Apr-10 14:42 
QuestionProduct key feature Pin
Alok Sharma ji3-Apr-10 3:12
Alok Sharma ji3-Apr-10 3:12 
AnswerRe: Product key feature Pin
xEvOx3-Apr-10 3:41
xEvOx3-Apr-10 3:41 
GeneralRe: Product key feature Pin
Alok Sharma ji3-Apr-10 3:47
Alok Sharma ji3-Apr-10 3:47 
Questionwebbrowser and autoviewer Pin
daveice3-Apr-10 0:45
daveice3-Apr-10 0:45 
Webbrowser control doesn't work when opening page "http://photos.weirwindle.org[^]". The problem is: after page is opened, user can click 'start', 'next' or 'previous' only once, after one click, these buttons are disabled!!!
I guess there is something wrong with browser configuration, but both internet explorer and firefox can open this page correctly. I can't figured out this problem for a long while...
I pasted some code on my test application, one textbox, one button and one webbrowser:

private void Form1_Load(object sender, EventArgs e)
{
string url = "http://photos.weirwindle.org";
txtAddress.Text = url;
//webBrowser1.Navigate(url);
}

private void btnGo_Click(object sender, EventArgs e)
{
webBrowser1.Navigate(txtAddress.Text);
}

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.