I have attached a .JPG file to this post. I am just starting out with
the microsoft visual c++ and I wonder if someone could show me an
example like this that would simply show the progress bar mve when
the Trackbar is moved. I just need to see the code to hook
these together and perform a calculation of percent and show it where
I have put the label "Percent".

I just need simple code now. nothing too fancy.

Thank you in advance.

Regards,

Where is a picture?
If I understand you correctly, watch this

this->progressBar1->Maximum = this->trackBar1->Maximum;
///--------------------------------------------------------------------------
private: System::Void trackBar1_ValueChanged(System::Object^  sender, System::EventArgs^  e) {
				 this->progressBar1->Value = this->trackBar1->Value;
			 }
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.