Forum: Visual Basic 4 / 5 / 6 Nov 23rd, 2008 |
| Replies: 23 Views: 1,564 LOL - hear ya... the way the code was written it appeared as though 'Pause' was being called as a Procedure - i haven't run into anything denoting that command :)
so i was just kinda assuming... |
Forum: Visual Basic 4 / 5 / 6 Nov 23rd, 2008 |
| Replies: 23 Views: 1,564 awwwwwwwwww NUTS... was hoping something may have fixed this... I'm with you right now - possibly the different IF statements in your procedures. Took a small break from coding this weekend to let... |
Forum: Visual Basic 4 / 5 / 6 Nov 21st, 2008 |
| Replies: 4 Views: 872 I'm new too - so if I'm wrong, i apologize now...
First off, are you using VBA? (Visual Basic for Applications) - I've read that there are some inherent differences between it and 'regular' VB...... |
Forum: Visual Basic 4 / 5 / 6 Nov 21st, 2008 |
| Replies: 4 Views: 872 That's old school Basic. For i = 0 to 1000 is telling the proggie to start counting at 0 and stop at 1000. The func... statement has the proggie calculating each number it sees. Next i is telling... |
Forum: Visual Basic 4 / 5 / 6 Nov 21st, 2008 |
| Replies: 23 Views: 1,564 NP.... as I said before, I'm learning too so I'm having to use 'logic' to try and decode the code :D
I'm hoping to find an answer too because I have a project in mind that could run into the same... |
Forum: Visual Basic 4 / 5 / 6 Nov 20th, 2008 |
| Replies: 23 Views: 1,564 I'm assuming that the program is being told to wait 1.5 seconds before continuing. Is 'pause' not a valid command?
It makes sense 'logically'...but if it's not a command - it's not a command. :P |
Forum: Visual Basic 4 / 5 / 6 Nov 18th, 2008 |
| Replies: 23 Views: 1,564 Just looking at the code again...
What procedure is tied to '1:'?
End If
1:
End Sub |
Forum: Visual Basic 4 / 5 / 6 Nov 18th, 2008 |
| Replies: 23 Views: 1,564 I know - it's truly weird - the reasoning behind the Do..While is:
"technically" if the code is "looping" without being told to, a Do...While 'should', in effect, negate the situation. (e.g., Do... |
Forum: Visual Basic 4 / 5 / 6 Nov 17th, 2008 |
| Replies: 23 Views: 1,564 Ok... time to state the obvious... it's Looping the code.
Would a 'Do...While' help in this situation? I'm asking this as a general question to anyone...
Seems like that 'could/would' work -... |
Forum: Visual Basic 4 / 5 / 6 Nov 16th, 2008 |
| Replies: 1 Views: 825 Got it!!! Figured out the Code I needed... at least for now...
'coding Confirm to calculate
Private Sub cmdconfirm_Click()
If opta.Value = True Then
intgsal = (txthrs.Text * 10)
... |
Forum: Visual Basic 4 / 5 / 6 Nov 16th, 2008 |
| Replies: 23 Views: 1,564 A copy of the actual code would be nice... I'm learning myself and this is definitely issue that I foresee in my future. :cool: |
Forum: Visual Basic 4 / 5 / 6 Nov 16th, 2008 |
| Replies: 5 Views: 547 Is this an issue when they refer to a 'memory leak'?
I am also assuming that you mean 'log off the program' and not logging off the OS. Again, assuming, if you reboot your system - the program... |
Forum: Visual Basic 4 / 5 / 6 Nov 16th, 2008 |
| Replies: 1 Views: 825 Hey all,
I apologize now for being a Noob. I'm using a Tutorial to learn VB6 (for starters) and everything was going great until just now... The assignment is to create a Weekly Payroll... |