Old 22-02-2007   #1 (permalink)
Godlike Member
 
SubNoize's Avatar
 
Join Date: Jul 2006
Location: Sydney
Posts: 8,782
Rep Power: 11
Default [VB6] Help?

Hey if anyone knows anything about VB6 could you please let me know. I'm making a program for a school assignment but if all goes well i might release it. (it's for counter strike)

I'll give you more info once i know who can help me. This may be simple VB6 so yeah. I'm noobish and can't find any good tutorials.
__________________
««« Qlimax-Crew - #Q-Base - Qlimax-Crew.com »»»
SubNoize is offline   Reply With Quote
Old 22-02-2007   #2 (permalink)
Pro Member
 
nuk3's Avatar
 
Join Date: May 2006
Location: Sydney, Australia
Posts: 6,539
Rep Power: 9
Default

<sarcasm>He's making a "skill-enhancer" program for CS:S. All he needs is your steam account and programming knowledge. Apply within.</sarcasm>
__________________
OM NOM NOM
nuk3 is offline   Reply With Quote
Old 22-02-2007   #3 (permalink)
Godlike Member
 
SubNoize's Avatar
 
Join Date: Jul 2006
Location: Sydney
Posts: 8,782
Rep Power: 11
Default

lols as much as i hate you, you can be pretty funny some times.
x]
__________________
««« Qlimax-Crew - #Q-Base - Qlimax-Crew.com »»»
SubNoize is offline   Reply With Quote
Old 22-02-2007   #4 (permalink)
Pro Member
 
chemicalNova's Avatar
 
Join Date: Jun 2006
Age: 19
Posts: 5,593
Rep Power: 8
Default

I am. What do you need?

chem
__________________
There are no stupid questions... but there are alot of inquisitive idiots.
-
chemicalNova is offline   Reply With Quote
Old 22-02-2007   #5 (permalink)
Monster Member
 
Smith's Avatar
 
Join Date: Jul 2006
Posts: 3,592
Rep Power: 6
Default

Hey Chem, make me a program that a business could use for their employees to fill in their shift details. So that at the end of a shift, they select whether they are casual, part-time, full-time, then input hours done and then apply time and a half and double time for casuals if needed and overtime for the part-time and full-time employees if needed. This all has to be confirmed through the use of a password that managers will have, so before this information can be saved a password needs to be inputted. Also there should be a button that says "I am finished for the week" or some shiz, so that all their information (hours worked at normal rate, hours worked at time and a half, total hours, total cash earnt, date, etc etc) can be outputted onto a form.

Im bad at VB Thanks in advance, yours truly,

Smith

EDIT: Ohh and somewhere there needs to be details saved off employees, and managers, so that there can be a drop-down menu when first using to select who you are/your id number before you can start. and of course a manager file so that you can save passwords in their for different managers.
Smith is offline   Reply With Quote
Old 22-02-2007   #6 (permalink)
Pro Member
 
chemicalNova's Avatar
 
Join Date: Jun 2006
Age: 19
Posts: 5,593
Rep Power: 8
Default

Quote:
Originally Posted by Smith View Post
Hey Chem, make me a program that a business could use for their employees to fill in their shift details. So that at the end of a shift, they select whether they are casual, part-time, full-time, then input hours done and then apply time and a half and double time for casuals if needed and overtime for the part-time and full-time employees if needed. This all has to be confirmed through the use of a password that managers will have, so before this information can be saved a password needs to be inputted. Also there should be a button that says "I am finished for the week" or some shiz, so that all their information (hours worked at normal rate, hours worked at time and a half, total hours, total cash earnt, date, etc etc) can be outputted onto a form.

Im bad at VB Thanks in advance, yours truly,

Smith
..and you're willing to pay how much for this?

chem
__________________
There are no stupid questions... but there are alot of inquisitive idiots.
-
chemicalNova is offline   Reply With Quote
Old 22-02-2007   #7 (permalink)
Monster Member
 
Smith's Avatar
 
Join Date: Jul 2006
Posts: 3,592
Rep Power: 6
Default

Quote:
Originally Posted by chemicalNova View Post
..and you're willing to pay how much for this?

chem
Ill give you a 1hr lesson for teh game counter-strikezz source. (RRP: $US60)

EDIT: Ohh and the satisfaction that you helped a person in need to get a better UAI and overall his HSC
Smith is offline   Reply With Quote
Old 22-02-2007   #8 (permalink)
Monster Member
 
shirasE_'s Avatar
 
Join Date: Jan 2007
Location: Melbourne, Australia.
Age: 18
Posts: 3,555
Rep Power: 5
Send a message via ICQ to shirasE_ Send a message via AIM to shirasE_ Send a message via MSN to shirasE_ Send a message via Yahoo to shirasE_ Send a message via Skype™ to shirasE_
Default

Yeah I'm pretty good with VB6. Give me some more information and I'll let you know what I can do, and in reply to Smith, same as Chemical Nova, how much? =P.

Maybe do it through www.rentacoder.com and I'll consider it as well.
__________________
AMD 5000+BE@3.21GHZ//2GB OCZREAPER//ATI HD3870@850/1301
ANTEC 900//RAZER TARANTULA//TT TAI-CHI M2//SS 5HV2 XFI
#GotGames #MelbCSS #s2.au #Reality.Gaming
#TRAiNWRECK melb.lan.net.invite - kto_-[1b]
shirasE_ is offline   Reply With Quote
Old 22-02-2007   #9 (permalink)
Monster Member
 
FuRbY*'s Avatar
 
Join Date: Dec 2006
Location: the immunity syndicate
Age: 30
Posts: 2,998
Rep Power: 5
Default

i dont know how similar VB6 is to the .net, but theres a way to create a .txt file, save and recall upon typing something.
its probably a lot more basic than what you are looking for but its somewhere.
http://www.homeandlearn.co.uk/NET/vbNet.html
FuRbY* is offline   Reply With Quote
Old 22-02-2007   #10 (permalink)
Monster Member
 
shirasE_'s Avatar
 
Join Date: Jan 2007
Location: Melbourne, Australia.
Age: 18
Posts: 3,555
Rep Power: 5
Send a message via ICQ to shirasE_ Send a message via AIM to shirasE_ Send a message via MSN to shirasE_ Send a message via Yahoo to shirasE_ Send a message via Skype™ to shirasE_
Default

Here is just very basic reading and saving text files.

Code:
Dim iFileNumber As Integer
Dim sAns As String
Dim x As Long
Public Function ReadFileContents(FileFullPath As String) As _
   String
'sfilecontents = ReadFileContents("C:\chiko.txt") EXAMPLE
If Dir(FileFullPath) = "" Then Exit Function
On Error GoTo ErrorHandler
    iFileNumber = FreeFile
    Open FileFullPath For Input As #iFileNumber
        sAns = Input(LOF(iFileNumber), #iFileNumber)
        ReadFileContents = sAns

ErrorHandler:
    Close #iFileNumber
End Function
Public Function SaveTextToFile(FileFullPath As String, _
 sText As String, Optional Overwrite As Boolean = False) As _
 Boolean
'SaveTextToFile "C:\My Documents\MyFile.txt", "Hello There" EXAMPLE
On Error GoTo ErrorHandler
Dim iFileNumber As Integer
iFileNumber = FreeFile

If Overwrite Then
    Open FileFullPath For Output As #iFileNumber
Else
    Open FileFullPath For Append As #iFileNumber
End If

Print #iFileNumber, sText
SaveTextToFile = True

ErrorHandler:
Close #iFileNumber
End Function
I'm hoping/assuming you know how to work the functions via the examples its pretty basic.
__________________
AMD 5000+BE@3.21GHZ//2GB OCZREAPER//ATI HD3870@850/1301
ANTEC 900//RAZER TARANTULA//TT TAI-CHI M2//SS 5HV2 XFI
#GotGames #MelbCSS #s2.au #Reality.Gaming
#TRAiNWRECK melb.lan.net.invite - kto_-[1b]
shirasE_ is offline   Reply With Quote
Old 03-05-2007   #11 (permalink)
Monster Member
 
SargeRX8's Avatar
 
Join Date: Nov 2006
Location: Merrylands 2160
Age: 21
Posts: 3,687
Rep Power: 6
Default

its funny, ive done vb6, .net, asp.net, java all at tafe in software dev, now im at uni and im doing xds modula 2...Ive made somethign similar to what smith was asking, il see if i can dig it up and of course, il help out with anything you guys need.

While im here, does anyone know how to disable the vb.net just in time debugger, its pretty dam annoying when css crashes and .net becomes the hero and tries to debug the game.
__________________

Click the sig to watch my Rambo Video

HuggyCHEA[2f][2sxc]: im a gentleman gee
HuggyCHEA[2f][2sxc]: but get me drunk broo, ill grab your tits
SargeRX8 is offline   Reply With Quote
Old 09-05-2007   #12 (permalink)
Member
 
Walley's Avatar
 
Join Date: Jan 2007
Age: 22
Posts: 128
Rep Power: 3
Send a message via MSN to Walley
Default

I'd advise moving forward to VB.net, and free too if you go for VS express.
Walley is offline   Reply With Quote
Old 09-05-2007   #13 (permalink)
Pro Member
 
chemicalNova's Avatar
 
Join Date: Jun 2006
Age: 19
Posts: 5,593
Rep Power: 8
Default

Quote:
Originally Posted by Walley View Post
I'd advise moving forward to VB.net, and free too if you go for VS express.
..again, this is a school assignment. You can't just change the rules of the assignment.

chem
__________________
There are no stupid questions... but there are alot of inquisitive idiots.
-
chemicalNova is offline   Reply With Quote
Reply

Thread Tools

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 On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT +10. The time now is 10:27 AM.


Powered by vBulletin® Version 3.7.5
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0