Problem I am having:
I have created a textbox and given it a name via the properties thingy on the left side that I conveniently remembered about when I learned about Visual Basic and VB.net 6 years ago.
This is the code created in Form1.h, the name I gave the textbox was "LandGoal" and I wish to manipulate the input
Code: Select all
//
// LandGoal
//
this->LandGoal->Location = System::Drawing::Point(143, 28);
this->LandGoal->Name = L"LandGoal";
this->LandGoal->Size = System::Drawing::Size(100, 20);
this->LandGoal->TabIndex = 0;
So, how do I take the input of that textbox and then do mathematical magic to it so I can get a decimal output?