Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Windows form question

Status
Not open for further replies.

Badgers

Programmer
Nov 20, 2001
187
0
0
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
Put a lable on the form.

In form load place the below code

Label1.text = "Hello world!"

Cheers
 
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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top