| visual basic programming?

visual basic programming?

samuel s asked:


trying to write the code to get an app to read 5 integers and out of those 5, display only the largest and smallest integer. having a hell of a time

Related posts:

  1. question for visual basic for calculate the sum of the number digits? ymdian asked: Write a Visual Basic program that will take...
  2. Can i write BASIC or VISUAL BASIC programs on the internet? buckbucknumber2000 asked: I’d like to be able to write a...
  3. This is about Visual BASIC programming? gigolo asked: Situation is.. Using Case select and if statements....
  4. Visual Basic Programming Help? tantrevor07 asked: Hi, im a little new to programming and...
  5. is it possible to build a french to english translator into a visual basic webroswer progam? cuthuluthegreatdestroyerofyouall asked: i need to put an auto matic translator...

Filed Under Programming & Design |

Tagged With , ,

Comments

2 Responses to “visual basic programming?”

  1. Kashyap Patel on June 11th, 2009 7:03 am

    take one list box with visible false

    insert all data into the list box and use the properties of listbox auto short enabled

    fetch first and last number.

    which is large and small

  2. Mike M on June 14th, 2009 12:26 pm

    for vb.net

    use
    Array.Sort(MyArrayOfInts)

    then display the sorted array items in the Lowest and Highest bound of the array