You are viewing our Forum Archives. To view or take place in current topics click here.
 

VB doesn't recognize my code?
#1. PostPosted: Mon Jun 11, 2012 4:45 am
Resident Elite
Resident Elite
Status: Offline
Joined: Apr 15, 2012 StupidSpawn has been a member for over 1 year 1 Year Member
Posts: 265
Reputation Power: 10
I have the right code and it worked before it's just that it wont read it now and my program just sits there. Help?
View user's profile
#2. PostPosted: Mon Jun 11, 2012 5:34 am
Junior Member
Junior Member
Status: Offline
Joined: Jun 04, 2012
Posts: 60
Reputation Power: 7
Your going to have to explain a bit more.
View user's profile
  00
#3. PostPosted: Mon Jun 11, 2012 6:14 am
Resident Elite
Resident Elite
Status: Offline
Joined: Apr 15, 2012 StupidSpawn has been a member for over 1 year 1 Year Member
Posts: 265
Reputation Power: 10
I tried to load a skin or template or whatever for my program and it didn't work so I removed it. I ran my program and the startup form loaded but wouldn't do any other functions.
View user's profile
  00
#4. PostPosted: Mon Jun 11, 2012 12:03 pm
Resident Elite
Resident Elite
Status: Offline
Joined: Oct 12, 2011 PHP_Pro has been a member for over 1 year 1 Year Member
Posts: 349
Reputation Power: 20
Do you mean that you deleted the old controls in the form, and added new ones?
if so, copy the old code, and re - paste it into the corresponding events in the new controls.

that should work, if that is your problem.
if that is not the problem, please explain more.
View user's profile
  00
#5. PostPosted: Mon Jun 11, 2012 10:01 pm
Resident Elite
Resident Elite
Status: Offline
Joined: Apr 15, 2012 StupidSpawn has been a member for over 1 year 1 Year Member
Posts: 265
Reputation Power: 10
Can someone just teamview to help?
View user's profile
  00

#6. PostPosted: Tue Jun 12, 2012 3:00 am
TTG Senior
TTG Senior
Sectional Moderator
Status: Offline
Joined: Jan 01, 2011 Imp has been a member for over 2 years 2 Year Member
Posts: 1,770
Reputation Power: 141
Motto: Software Developer, need any help dont be afraid to ask!

StupidSpawn wrote:

Can someone just teamview to help?


Shouldn't need to,

It sounds like your Click events are not associated with your objects on your form.

You first line of each Click should be something like this

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

The last bit says what object triggers the event.

If your object is not named correctly then it will not be triggered.

Check through you object names, and the first line of each event to check they match up.


View user's profile
  00


 
 Jump to:   

You are viewing our Forum Archives. To view or take place in current topics click here.