Click here to Skip to main content
15,886,422 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
I write a vb appl in window mobile 6 in vs2008

I write some code as follow :

lblfld(1) = "lbl_field_1"
bllfld(2) = "lbl_field_2"

lblfld_show(1) = "Part No."
lblfld_show(2) = "Client Lot No."

And "lbl_field_1" is Label in the form

when this app run to this statment,
Panel_Main.Controls(lblfld(y)).Text = lblfld_show(y)

It always incur an InvalidCastExceptionunhandled error as :-
"Conversion from string "lbl_field_1" to type 'Integer' is not valid."

Can anyone metion a solution to me. Thanks
Posted
Comments
Prasad Khandekar 20-Mar-13 23:18pm    
Check value of y.

1 solution

You REALLY need to pickup a beginners book on VB.NET and work through it. You cannot assign a string to a property that expects a number. You also cannot use the name of a control as a number, even though you didn't really do that, it appears as though you think that will work.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900