2
Answers

what is the printf statement in Windows forms?

ajay raju

ajay raju

14y
5.7k
1

hi!
in console applications we use Console.Write("Hai"). for printing statement
and in Web Apps we use Response.Write("Hai"). for printing statement
at the same time what is the print statement in Windows Forms
Answers (2)
0
Sam Hobbs

Sam Hobbs

NA 28.7k 1.3m 14y
In a form application, you can use MessageBox or you can create a textbox in the form for messages.
0
Deepak Arora

Deepak Arora

NA 10 0 14y

hi ajay,
       there is a way to show some output to the user as every application has it's own way. in windows form we show some output to user using MessageBox, that shows output using a message box.
   MessageBox.Show("Hai");