hello,
I'm using microsoft visual studio c++ to create a windows form application
When I try to link the value of a trackbar to a label I get an error C2664...
This is my code:
private: System::Void trackBar1_Scroll(System::Object^ sender,System::EventArgs^ e) {
this->label1->Text = this->trackBar1->Value
}
};
can someone tell me what i'm doing wrong?
I'm using microsoft visual studio c++ to create a windows form application
When I try to link the value of a trackbar to a label I get an error C2664...
This is my code:
private: System::Void trackBar1_Scroll(System::Object^ sender,System::EventArgs^ e) {
this->label1->Text = this->trackBar1->Value
}
};
can someone tell me what i'm doing wrong?