Yep. Automatically is the way I want to go. Thank you
Type: Posts; User: bazzapr
Yep. Automatically is the way I want to go. Thank you
I suggest then a loop/timer checking the variable every n seconds/minutes. Remember "DoEvents" in a loop.
Rather than using = null use IsNull
If (ws.Range("F" & i).Value = NULL) Then
diem = 0
Else
diem = ws.Range("F" & i).Value
End If
Not sure but if you are the author of the javascript then simply write the value to a hidden variable:
<input type="hidden" name="soso">
I am sure Westconn1 will get there. I am sure any browser that offers debugging addons will do. Most of the major browsers will do I am sure. I mainly use Chrome.
Suspect = If rsLogin.feilds!password = password.Text Then
If I understand your question correctly then I reckon simply check the date. If the user enters date x and date x is within the rules then change it to y. No?
If x = ruledate then x = y --> ...
Or you could try:
If Format("14/11/2012", "dd-mm-yy") > Format(Now, "dd-mm-yy") Then
Debug.Print "Bigger"
Else
Debug.Print "Smaller"
End If
Not sure how regular you want to do this but I simply used "inspect element" in Chrome copied the table as HTML (from the Elements tab) and pasted into excel. It pasted column by column and row by...
Howdy All,
Completing a web form using VB6 is pretty straight forward. Supplying file names (images) that the form needs to upload however is a "different kettle of fish" as one would say. Is it...