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:
- question for visual basic for calculate the sum of the number digits? ymdian asked: Write a Visual Basic program that will take...
- Can i write BASIC or VISUAL BASIC programs on the internet? buckbucknumber2000 asked: I’d like to be able to write a...
- This is about Visual BASIC programming? gigolo asked: Situation is.. Using Case select and if statements....
- Visual Basic Programming Help? tantrevor07 asked: Hi, im a little new to programming and...
- 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 Hell Of A Time, Integers, Visual Programming
Comments
2 Responses to “visual basic programming?”
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
for vb.net
use
Array.Sort(MyArrayOfInts)
then display the sorted array items in the Lowest and Highest bound of the array