Results 1 to 6 of 6

Thread: Input string was not in a correct format

Threaded View

  1. #2
    PowerPoster
    Join Date
    Aug 2005
    Location
    College Station, TX
    Posts
    4,521

    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
  •  



Click Here to Expand Forum to Full Width