Forum: Visual Basic 4 / 5 / 6 Nov 26th, 2008 |
| Replies: 10 Views: 1,255 *SOLVED BY KAIN*
Welp, i got it fixed... I just did this:
Call Form_Load
I thought it would completely reload everything, and maybe it does, but it is so fast i cant tell its being done.
... |
Forum: Visual Basic 4 / 5 / 6 Nov 24th, 2008 |
| Replies: 23 Views: 1,553 Well I am going to say for now that the problem has been corrected. I still am not 100% sure that it is, but i havent had it happen for 2 days straight.
What I did was rearrange some of the code... |
Forum: Visual Basic 4 / 5 / 6 Nov 24th, 2008 |
| Replies: 10 Views: 1,255 I tried the 'state' approach and it does work. I would really like to see it as it does throughout the entire process line by line, but i dont know how to do that. What I mean is like make a... |
Forum: Visual Basic 4 / 5 / 6 Nov 24th, 2008 |
| Replies: 10 Views: 1,255 Trying your first methos, I am still getting an error.
Compile Error: Arguement not optional
Private Sub Command2_Click()
If bWinsock2_Connect = False Then Call Winsock2_Connect
If... |
Forum: Visual Basic 4 / 5 / 6 Nov 23rd, 2008 |
| Replies: 10 Views: 1,255 Well I am not having much luck with your code to test what needs to be run.
I have 2 Private Sub's that should run when a button is pressed.
They are the following:
Private Sub... |
Forum: Visual Basic 4 / 5 / 6 Nov 23rd, 2008 |
| Replies: 10 Views: 1,255 I will look into your solutions and get back to you.
Thanks for the help. :) |
Forum: Visual Basic 4 / 5 / 6 Nov 23rd, 2008 |
| Replies: 23 Views: 1,553 The pause is being called. I put the code for it on the previous page. Ill post it again here for you:
Sub pause(interval)
Current = Timer
Do While Timer - Current < Val(interval)
DoEvents... |
Forum: Visual Basic 4 / 5 / 6 Nov 23rd, 2008 |
| Replies: 23 Views: 1,553 That particular portion of code has nothing to do with a password in the way you are describing at all. That piece of code has to do with a database check for something else entirely. And it doesnt... |
Forum: Visual Basic 4 / 5 / 6 Nov 23rd, 2008 |
| Replies: 10 Views: 1,255 Another problem I am looking into is the following:
How does one use a command button to run private sub's (again) or (at all)?
For instance if a website isn't available at the exact moment... |
Forum: Visual Basic 4 / 5 / 6 Nov 23rd, 2008 |
| Replies: 23 Views: 1,553 I'm not sure I understand what you mean. But as far as the password goes, if there is no password at all, it asks if you want to make one. If not, then the password form does not come up. If you... |
Forum: Visual Basic 4 / 5 / 6 Nov 22nd, 2008 |
| Replies: 23 Views: 1,553 the code for pause goes as follows and I am fairly certain that it is not part of the problem:
Sub pause(interval)
Current = Timer
Do While Timer - Current < Val(interval)
DoEvents
Loop
End... |
Forum: Visual Basic 4 / 5 / 6 Nov 22nd, 2008 |
| Replies: 23 Views: 1,553 Good thinking.
Just to let you know... I tried to completely redo the code and that dide work either. Since there is 3 different if then statements, and it DOES repeat 3 times, I started... |
Forum: Visual Basic 4 / 5 / 6 Nov 21st, 2008 |
| Replies: 23 Views: 1,553 ok i have been busy redoing a lot of the code....
the form intermittently does the aforementioned initial problem now. VERY strange indeed.
I will attempt to redo the entire code for the form... |
Forum: Visual Basic 4 / 5 / 6 Nov 18th, 2008 |
| Replies: 23 Views: 1,553 no i havent looked for that.. I will do it now. I know its looping the code, but i dont know why, obviously... hehe. thanks for the help.. ill check it out.
also, Im not sure how a Do While... |
Forum: Visual Basic 4 / 5 / 6 Nov 16th, 2008 |
| Replies: 23 Views: 1,553 ok BigSeckC,
Here is the code I am having an issue with at the moment.
If Len(pass) <> 0 And InStr(1, pass, "reset") = False Then
frmVerify.Height = 2100
Label2.Visible = True... |
Forum: Visual Basic 4 / 5 / 6 Nov 16th, 2008 |
| Replies: 4 Views: 779 What Veena said will work just fine, but you could also completely remove the entire border including the X at runtime by simply going to the BorderStyle property when your form is chosen and setting... |
Forum: Visual Basic 4 / 5 / 6 Nov 15th, 2008 |
| Replies: 23 Views: 1,553 This is a VB6 question.
I seem to have a problem with a form that should be unloading or at the very least become not visible. For whatever reason when another form is shown (form2.Show as an... |
Forum: Visual Basic 4 / 5 / 6 Nov 10th, 2008 |
| Replies: 0 Views: 523 Basically, I want to check and see if a certain word or combination of letters and/or numbers is on a website using a winsock connection.
I can do this in delphi, but i cant seem to get the hang... |
Forum: Visual Basic 4 / 5 / 6 Nov 8th, 2008 |
| Replies: 2 Views: 510 |
Forum: Visual Basic 4 / 5 / 6 Nov 7th, 2008 |
| Replies: 2 Views: 510 First off let me say if this is in the wrong forum i sincerely apologize. I put this is the delphi/pascal forum but haven't gotten much back from that. so I thought I may try it here to see if some... |