Nov 1, 2007 #1 Badgers Programmer Joined Nov 20, 2001 Messages 187 Location US Hi I'm a web developer but doing a windows app, what is the equivilent for a response.write to the screen to push out text. Have console.write / writeline but nothing appears. Thanks
Hi I'm a web developer but doing a windows app, what is the equivilent for a response.write to the screen to push out text. Have console.write / writeline but nothing appears. Thanks
Nov 1, 2007 #2 saintedmunds Technical User Joined Apr 7, 2006 Messages 78 Location GB Hi Put a lable on the form. In form load place the below code Label1.text = "Hello world!" Cheers Upvote 0 Downvote
Nov 1, 2007 #3 ZmrAbdulla Technical User Joined Apr 22, 2003 Messages 4,364 Location AE Console.WriteLine() present it's result to the OutPut window. View > Other window > Output You can use Code: MessageBox.Show("Your message") . ________________________________________________________ Zameer Abdulla Help to find Missing people Upvote 0 Downvote
Console.WriteLine() present it's result to the OutPut window. View > Other window > Output You can use Code: MessageBox.Show("Your message") . ________________________________________________________ Zameer Abdulla Help to find Missing people