This question has been asked a lot..
When you read want to run a searchable query and then
copy that into a form so that you can update your table
you'll run into the above error.
The solution is simple, but probably overlooked from the
posts I have read.
in the Select Query properties...
The ascii code for F10 is 121 ...
so
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
If KeyCode = 121 Then
MsgBox ("Begin Event!")
' call letsgo!
End If
' MsgBox KeyCode
End Sub
Similarly it would work with object_KeyDown I imagine. ...
thank you all.. .
I guess the quick and dirty way is copy to V1...Vn directories. . . No source safe or VSS or anything like that...
Heh.. have you guys played with Microsoft's "Direct Text to Speech" dll (ActiveX control) ... with one command (speak) you can talk.. pretty...
Hi, here's a really easy question.
How do I save different versions of my programs in VB6.
It seems like it is autosaving my forms... and I have
many of them in one project. I would like to save
backup projects, various versions.
Thank you,
David Brook
BTW have you tried :
will allow...
I wanted you guys to know that I figured out this problem... It came up again in another program I had to write...
I did read the posts here about it,.. they were basically what I had already tried... which was using the
do while webbrowser1.busy=true
doevents
loop
and similar...
I have this problem:
I am trying to change one value on a form, and then send
it back to the server . The server in turn will automatically (as it is written now) generate a unique id
and write the file.
if the url is file://c:\test.html?prognum=115
then I want the form that is within...
This works partially:
For i = 1 To total ' where total is the last page
txtURL.Text = link(i) ' navigate to each respective link
WebBrowser1.Navigate (txtURL.Text)
Do
DoEvents
Loop Until WebBrowser1.Busy = False ' wait until load
' finishes...
Ended up with something a bit shorter.. which doesn't work quite right... -- seems to work partially, then I have to get it to continue by refreshing the screen... HMMMM...
WebBrowser1.Navigate (txtURL.Text)
Do
DoEvents
Loop Until WebBrowser1.Busy = False
That's a little shorter.. I...
vb5,
Just writing to say thank you.. I will try that,.. and also peruse the responses already written in the future...
They you for your prompt response!
-- David Brook
Hi,
I have two really simple questions.. I am very new to
programming in VB6 ... So my questions, are very basic.
1. I've built a browser using the web browser object --
I need to be able to BROWSE TO THE END of my http link
list ... that is I have a bunch of links that I need to
be able...
First of all I'd like to say, I'm not responding to this post in particular..
Second.. YOU GUYS ARE THE GREATEST ! When I was at my last job (contract, it ended) -- I found you guys.. you were
an immense help... I LOVE YOU GUYS ! (all senimental and stuff. sniff sniff.)
BTW .. I do have...
When you have multiple fields that are displaying,
how do you display the count of the total # of records that
are pulled from the query.
I.E. , at the bottom of the screen (when you have it enabled) you'll see the total number of records.. But you would like to append this to the query so...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.