I hate VB. Probably becuase I'm writing the most envolved program I've ever written in my 4 years of college in VB and I don't know hardly any VB. So maybe there's a VB person out there who can help me out... I'm designing an information getting screen amongst other things, and I'm having troubles with some combo boxes. We are designing a board game, and I am getting the users favorite animal fromt a combo box. Users can navigate between the (maximum of 3) player profiles and change the information as much as they want. Here is a screen shot of it. My problem is when tyring to navigate between the user profiles, I can't update the combo boxes. For example, if I enter the information like in the example screen, go and edit player 2's info, then go back to player 1, Bill's age should be tree still. How do I put the information back in the combo box? I've tried this so far:
cmbAge.Text = playerProfile.playerName
'the above would give me this error: "Text Property is read-only" or something like that
cmbAge.Index = playerProfile.playerNameIndex 'I saved the index before
'the about would give me this error: "Object Not an array"
Why is it looking for an array? index is just an integer isn't it?
Please help!
cmbAge.Text = playerProfile.playerName
'the above would give me this error: "Text Property is read-only" or something like that
cmbAge.Index = playerProfile.playerNameIndex 'I saved the index before
'the about would give me this error: "Object Not an array"
Why is it looking for an array? index is just an integer isn't it?
Please help!
