Forum: Visual Basic 4 / 5 / 6 Aug 17th, 2007 |
| Replies: 9 Views: 1,410 Or add a progress bar or textbox to the modal form to display the progress. As an added safety, disable any 'dangerous' buttons while the command is being executed. |
Forum: Visual Basic 4 / 5 / 6 May 10th, 2007 |
| Replies: 4 Views: 1,033 Reeciepoo, after 15 threads, with useless titles like
Help
Databases
Need help
HTMLWrapper
How do you
Noobie
How the hell
Annoying Network Issue
Network Configuration |
Forum: Visual Basic 4 / 5 / 6 Apr 1st, 2007 |
| Replies: 2 Views: 2,246 By reading the header of the picture file. Loot at http://www.wotsit.org/ |
Forum: Visual Basic 4 / 5 / 6 Dec 13th, 2006 |
| Replies: 23 Views: 14,224 Good point. I'm used to C where the time returns time from a specific date. I forgot VB's time is 24hrs.
Good solution checking the caption... :)
You can correct any moderator when they are... |
Forum: Visual Basic 4 / 5 / 6 Dec 12th, 2006 |
| Replies: 23 Views: 14,224 Or with only one button:
Dim StartTime As Date
'
Private Sub cmdStart_Click()
if StartTime = 0 then
StartTime = Now
cmdStart.caption = "Stop Timer"
else
... |
Forum: Visual Basic 4 / 5 / 6 Nov 25th, 2006 |
| Replies: 9 Views: 2,386 I think you'd be better off just learning VBA if that's your main goal. Look for a VBA tutorial and start there. |
Forum: Visual Basic 4 / 5 / 6 Nov 24th, 2006 |
| Replies: 9 Views: 2,386 No, Win95/VB4 (http://en.wikipedia.org/wiki/Visual_Basic#Evolution_of_Visual_Basic) was 32 bit.
Win3.1 was 16 bit and was essentially a DOS program rather than an O/S.
I doubt you can get an... |
Forum: Visual Basic 4 / 5 / 6 Oct 8th, 2006 |
| Replies: 8 Views: 2,471 How much time will you give me to develop it? Are your specification complete enough for me to quickly code the project? How much is your grade worth to you? It's going to cost a bundle. |
Forum: Visual Basic 4 / 5 / 6 Sep 13th, 2006 |
| Replies: 6 Views: 6,552 Get the return value from the msgbox call. It returns the button value pressed. |
Forum: Visual Basic 4 / 5 / 6 Aug 30th, 2006 |
| Replies: 11 Views: 17,180 lover99509, is this easier than using form1.text1.text as already recommended? |
Forum: Visual Basic 4 / 5 / 6 Aug 26th, 2006 |
| Replies: 11 Views: 17,180 Specify formName.fieldName.data |
Forum: Visual Basic 4 / 5 / 6 Aug 23rd, 2006 |
| Replies: 8 Views: 2,536 |
Forum: Visual Basic 4 / 5 / 6 Aug 8th, 2006 |
| Replies: 5 Views: 1,473 True, but for the question asked the else was unnessesary to expand because this is an example of how to use isNumeric, not an example of how to design an IF. And all I did was answer the question... |
Forum: Visual Basic 4 / 5 / 6 Aug 8th, 2006 |
| Replies: 5 Views: 1,473 If NOT isNumberic(Textbox1.value) then
Msgbox("Sorry you must only put numbers")
else
end if |
Forum: Visual Basic 4 / 5 / 6 Aug 4th, 2006 |
| Replies: 13 Views: 12,820 Doesn't look like it. I tried an obvious way -- at least to me -- and it didn't work. In form load change the tooltip using
Text1.ToolTipText = "this is another test" + vbCrLf + "the second line"... |
Forum: Visual Basic 4 / 5 / 6 Aug 3rd, 2006 |
| Replies: 13 Views: 12,820 A bit basic! LOL That's a good one!!!! :D
See, BASIC is the language, so it struck me funny.... Oh, never mind!! |