Projrct in C++

Reply

Join Date: Sep 2008
Posts: 3
Reputation: Matotore is an unknown quantity at this point 
Solved Threads: 0
Matotore Matotore is offline Offline
Newbie Poster

Projrct in C++

 
0
  #1
Sep 26th, 2008
The welcome form
It contains a label, a timer and a progress bar.

  1. private void Form1_Load(object sender, System.EventArgs e)
  2. {
  3. timer1.Start();
  4. }
This enables the timer to be started when the form is loaded.

These other codes have placed it on the tick event of the timer.
  1. private void timer1_Tick(object sender, System.EventArgs e)
  2. {
  3. progressBar1.Value=progressBar1.Value+4;
  4. if(progressBar1.Value>=100)
  5. {
  6. this.Visible=false;
  7. Form8 f8=new Form8();
  8. f8.Show();
  9. timer1.Stop();
  10. }
  11. }
The codes above are written in c++, am using vb 6.0, please guide me on how to open the coding field and how to open form and then connect them with codes. Thanx. Harry[/COLOR][/B]
Last edited by Narue; Sep 26th, 2008 at 5:10 pm. Reason: added code tags
Reply With Quote Quick reply to this message  
Join Date: Sep 2004
Posts: 7,541
Reputation: Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute 
Solved Threads: 704
Team Colleague
Narue's Avatar
Narue Narue is offline Offline
Code Goddess

Re: Projrct in C++

 
0
  #2
Sep 26th, 2008
Looks like an attempt at C++/CLI via C#.

>am using vb 6.0
Um, is your code failing to compile? I'd imagine that it is.
I'm here to prove you wrong.
Reply With Quote Quick reply to this message  
Join Date: Sep 2008
Posts: 3
Reputation: Matotore is an unknown quantity at this point 
Solved Threads: 0
Matotore Matotore is offline Offline
Newbie Poster

Re: Projrct in C++

 
0
  #3
Sep 28th, 2008
Originally Posted by Narue View Post
Looks like an attempt at C++/CLI via C#.

>am using vb 6.0
Um, is your code failing to compile? I'd imagine that it is.
Hi Narue, Please this codes are giving me hell ot time and i want to built a project in C++, if u can help then i will send you all the information u help me solve this thing coz it is giving me sleepness nights. Thanx
Harry
Reply With Quote Quick reply to this message  
Join Date: Sep 2008
Posts: 3
Reputation: Matotore is an unknown quantity at this point 
Solved Threads: 0
Matotore Matotore is offline Offline
Newbie Poster

Re: Projrct in C++

 
0
  #4
Sep 28th, 2008
I need more help with this codes please
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:



Similar Threads
Other Threads in the C++ Forum
Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC