Hello everybody.
I've a question.
I tried to change font size of textBox named "textBox1"
Here is the function of the NumericUpDown:
private: System::Void numericUpDown2_ValueChanged(System::Object^ sender, System::EventArgs^ e)
{
String^ Num2 = this->numericUpDown2->Text;
this->textBox1->Font->Size = Num2;
};
Errors that occur:
error C2039: 'set' : is not a member of 'System::Drawing::Font::Size'
error C2039: 'set' : is not a member of 'System::Drawing::Font::Size'