Welcome to Dream.In.Code
Getting VB Help is Easy!

Join 131,667 VB Programmers for FREE! Get instant access to thousands of VB experts, tutorials, code snippets, and more! There are 3,662 people online right now. Registration is fast and FREE... Join Now!




Newbie Needs Much Help

 
Reply to this topicStart new topic

Newbie Needs Much Help

VBWannabe
post 19 Feb, 2005 - 11:01 AM
Post #1


New D.I.C Head

*
Joined: 19 Feb, 2005
Posts: 7

Ok here is the deal. I am totally lost in my VB class due to the fact that I deployed for almost 3 weeks right in the middle of it and just got back.
I have a lab due and ain't got a clue how to do it. All I want is to pass this class so I don't have to pay back the Army any money.
Please help attached are the requirements for the lab.


Attached File(s)
Attached File  Lab7.doc ( 45.5k ) Number of downloads: 74
User is offlineProfile CardPM

Go to the top of the page


VBWannabe
post 19 Feb, 2005 - 11:54 AM
Post #2


New D.I.C Head

*
Joined: 19 Feb, 2005
Posts: 7

I realize this is a strange request but I might be able to help out with something in exchange. Hey at least I am being honest here.
User is offlineProfile CardPM

Go to the top of the page

Amadeus
post 19 Feb, 2005 - 12:30 PM
Post #3


g++ -o drink whiskey.cpp

Group Icon
Joined: 12 Jul, 2002
Posts: 12,163



Thanked 32 times

Dream Kudos: 25
My Contributions


Did you want help writing it, or just to have it written?
User is online!Profile CardPM

Go to the top of the page

VBWannabe
post 20 Feb, 2005 - 08:51 AM
Post #4


New D.I.C Head

*
Joined: 19 Feb, 2005
Posts: 7

QUOTE(Amadeus @ Feb 19 2005, 01:30 PM)
Did you want help writing it, or just to have it written?

Well to be honest I was hoping someone here would be kind enough to just knock it out since I know its mostlikely a simple task for an experieanced VB coder
User is offlineProfile CardPM

Go to the top of the page

jaded
post 20 Feb, 2005 - 11:53 AM
Post #5


New D.I.C Head

*
Joined: 27 Jan, 2005
Posts: 5

Your professor didn't give you some type of leniancy being that you were deployed? Doesn't sound like most professors....
User is offlineProfile CardPM

Go to the top of the page

born2c0de
post 22 Feb, 2005 - 07:05 AM
Post #6


printf("I'm a %XR",195936478);

Group Icon
Joined: 26 Nov, 2004
Posts: 3,895



Thanked 34 times

Dream Kudos: 2800

Expert In: 80x86 Assembly, C/C++, VB6, VB.NET, C#, J2SE, Win32 API, Reversing

My Contributions


Well...I'd love to do it...but writing the whole thing looks like a bit too much that you are asking for irrespective of the simplicity of the problem. We can infact help you out writing the code yourself...explaining the Sort Algorithms and other things....that way it'll help you too...what do you say? Need help in a specific area for your assignment?
User is offlineProfile CardPM

Go to the top of the page

Amadeus
post 22 Feb, 2005 - 11:13 AM
Post #7


g++ -o drink whiskey.cpp

Group Icon
Joined: 12 Jul, 2002
Posts: 12,163



Thanked 32 times

Dream Kudos: 25
My Contributions


Given that he asked to have it written for him, I would suggest that he might need aid in all areas of the assignment.
User is online!Profile CardPM

Go to the top of the page

tel0r
post 22 Feb, 2005 - 02:13 PM
Post #8


New D.I.C Head

Group Icon
Joined: 22 Feb, 2005
Posts: 27



Dream Kudos: 200
My Contributions


A basic idea to start you off.
Done in vb6, i dont have .net installed. you might need to change it a little

You should be able to manipulate the intNumbers array easy enough, the .doc mentions that theres an algorithm in your book, and theres a Sort() function in .net

CODE

'General Declaration
Dim intNumbers(9) As Integer 'arrays start at 0, so 0-9 in the array stores your 10 numbers

'Form
Private Sub Command1_Click()
Dim Arr() As String, i As Integer, Temp As String

'Get user inputted numbers
Temp = InputBox("Enter Numbers sperated by comma's (,)")

'Seperate the numbers entered and store them in a temp array
Arr = Split(Temp, ",")

'count the numbers, make sure theres no more then 10
If UBound(Arr) > 9 Then MsgBox 'Too Many Numbers": Exit Sub

'add numbers into intNumber array
For i = 0 To 9
   intNumbers(i) = Val(Arr(i))
Next i

'Display list of entred numbers
MsgBox "The Following Numbers were Entered " & vbCrLf & Replace$(Temp, ",", vbCrLf)
End Sub


devil.gif
User is offlineProfile CardPM

Go to the top of the page

VBWannabe
post 22 Feb, 2005 - 05:21 PM
Post #9


New D.I.C Head

*
Joined: 19 Feb, 2005
Posts: 7

Well thanks for the interest and comments. This was a desperate request whose time has pssed. My instructor didn't even answer my 2 e-mails asking for help. That and a few other reasons is why I am looking for another on line college. Any suggestions ??
Thanks again to all who took the time to answer.

This post has been edited by VBWannabe: 22 Feb, 2005 - 05:22 PM
User is offlineProfile CardPM

Go to the top of the page

Fast ReplyReply to this topicStart new topic
Time is now: 11/20/08 06:58AM

Live VB Help!

VB Tutorials

Reference Sheets

VB Snippets

Bye Bye Ads

Free DIC T-Shirt

T-Shirt Example

Related Sites

Monthly Drawing

Thumb Drive

Partners

Top Contributors

Top 10 Kudos This Month