Nov 1, 2007 #1 Badgers Programmer Nov 20, 2001 187 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 Apr 7, 2006 78 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 Apr 22, 2003 4,364 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