Newbie

  • Thread starter Thread starter pauldr
  • Start date Start date
P

pauldr

I have an understanding of being able to build a console application.
My challenge is, how do I take data being entered into a text box
assign it to a variable and then have the final calculation be display
in another window on the same form (using tabs) in a label. I'm at a
lost. Any assistance would be helpful.
 
Hi pauldr,

This sounds very much like a school assignment, but anyway, what you need is the Text property of a TextBox and a Label control as well as a reference to both the TextBox and the Label. You typically trigger the calculation in a Button's Click event. There are many other ways to trigger the calculation as well.
 
Back
Top