|
-
Mar 20th, 2006, 01:24 PM
#2
Re: Input string was not in a correct format
Once again, you have conflicting variable types. You declared your counter as a string, when it should be an integer....
You would probably benefit from turning option explicit on, and option strict on, as these types of things should show in the IDE....
For instance, When I try just the line "Dim intCounter as String = 0", it wont even let me, because 0 is an integer, and not a string, so the 0 is underlined in blue squigglies...
Last edited by gigemboy; Mar 20th, 2006 at 01:28 PM.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|