Go Back  Xtreme Visual Basic Talk > Legacy Visual Basic (VB 4/5/6) > General > Please help . . . newbie in 1st yr HND


Reply
 
Thread Tools Display Modes
  #1  
Old 01-09-2008, 05:02 AM
sulu sulu is offline
Newcomer
 
Join Date: Jan 2008
Posts: 1
Default Please help . . . newbie in 1st yr HND


Hi guys :-)

I started my HND in Computing last September, but due to serious illness, i had to take 2 months off.

I am now quite a way behind the rest of the class and the college is trying to force me to leave - this is not an option as I have a family to support and need to pass this course!!

Anyhow, I have been given my 1st VB assignment ( to design a basic VAT calculator) and the tutor is more than unhelpful due to the rest of the class being demanding at their perticular level.

I have successfully created a calculator (TBH it wasnt that hard to create!!) please see code:
Code:
Private Sub cmdcalculate_Click() 'The name of the program' txtans.Text = Str(ans) 'The end result is equal to the calculation of part 1 x part 2' If Lstvat.ListIndex = -1 Then Lstvat.ListIndex = 0 'This ensures the value of the list box is zero or higher' If IsNumeric(Txtnumber1.Text) Then txtans.Text = Str(Val(Txtnumber1.Text) * Lstvat.List(Lstvat.ListIndex) / 100) 'This is the main calculation - i.e. the value of amount input x the pre-set %' Else lblerrormessage.Caption = ("'Incorrect format'") 'Basic error message should the user decide to input letters rather than numbers' End If End Sub Private Sub cmdclear_Click() 'Basic program to hide lable including msg for when error inputted' lblerrormessage = "" Txtnumber1.Text = "" txtans.Text = "" End Sub Private Sub Form_Load() End Sub

I am seriously struggling to write it up though!!

Does anybody here have a sample of a VB assignment (not bothered as to the subject matter as I am not intending to plagerise!!) I may borrow/read??

Many thanks

Jason

Last edited by lebb; 01-09-2008 at 07:12 AM. Reason: Put code into [vb] ... [/vb] tags
Reply With Quote
  #2  
Old 01-09-2008, 07:12 AM
lebb's Avatar
lebb lebb is offline
Disillusioned Code Poet

Retired Moderator
* Guru *
 
Join Date: Apr 2002
Location: Tennessee, USA
Posts: 12,808
Default

I'm not entirely sure what you're asking for. Do you mean that your instructor is asking you to write a technical document to explain the design/functionality of your calculator? Assignment documentation is going to vary quite widely between schools and instructors, so I'm not sure how someone else's sample would be much help. Personally, I've never been asked for separate documentation for such a small project in a class; in-code comments are normally all that is expected.
__________________
Laura

Ita erat quando hic adveni.
Reply With Quote
  #3  
Old 01-10-2008, 02:41 PM
AstroTux's Avatar
AstroTux AstroTux is offline
Junior Contributor
 
Join Date: Aug 2007
Posts: 345
Default

?????

Which country are you in - might help.

Best regards.
AstroTux.
Reply With Quote
  #4  
Old 01-10-2008, 02:57 PM
puressence73 puressence73 is offline
Newcomer
 
Join Date: Jan 2008
Posts: 6
Default Hnd

Hi Jason I am in year 2 of the HND and have done a few assignments.

The lecturer should have given you a specification and some notes on what criteria you were to meet in order to obtain a pass, merit or distinction.

The modules target certain areas such as design and testing and unless you have been given guidence in certain areas you will almost certainly be finding it hard to keep up and meet the grade.

You will find that most of the course is focused on the quality of the report and not so much on the complexity of the code though it does help.

If you feel unsupported by your tutor I would take it up with the college.
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off

Forum Jump

Advertisement:





Free Publications
The ASP.NET 2.0 Anthology
101 Essential Tips, Tricks & Hacks - Free 156 Page Preview. Learn the most practical features and best approaches for ASP.NET.
subscribe
Programmers Heaven C# School Book -Free 338 Page eBook
The Programmers Heaven C# School book covers the .NET framework and the C# language.
subscribe
Build Your Own ASP.NET 3.5 Web Site Using C# & VB, 3rd Edition - Free 219 Page Preview!
This comprehensive step-by-step guide will help get your database-driven ASP.NET web site up and running in no time..
subscribe
 
 
-->