Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: lfast
  • Order by date
  1. lfast

    Unable to Update Dataset Access

    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...
  2. lfast

    Using KeyPress Event

    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. ...
  3. lfast

    Add Crystal Reports Control to Vb6 From

    I was able to get the crystal reports viewer to open but I can't find the control to add in vb6 enterprise edition. Thanks, David
  4. lfast

    Version Control in VB6

    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...
  5. lfast

    Version Control in VB6

    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...
  6. lfast

    Wait for WebBrowser1.Naviage to Load into History

    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...
  7. lfast

    submit form multiple times with different get string

    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...
  8. lfast

    Wait for WebBrowser1.Naviage to Load into History

    Could not find the information... Did searches for webbrowser, web browser, WB.busy, etc...
  9. lfast

    Wait for WebBrowser1.Naviage to Load into History

    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...
  10. lfast

    WebBrowser Object Help, Insert Form Help

    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...
  11. lfast

    WebBrowser Object Help, Insert Form Help

    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
  12. lfast

    WebBrowser Object Help, Insert Form Help

    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...
  13. lfast

    Calling DLL(s) in vb6

    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...
  14. lfast

    Counting all the records in the table w/ other fields

    Pl. excuse my ignorance, but how do you check the RecordCount property of a dataset. Thanks for your other responses ! David
  15. lfast

    Counting all the records in the table w/ other fields

    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...
  16. lfast

    Update Query with Variable

    When you use something in this format: [Enter new description] I want to save the input into a variable, and then use that variable in an update query. How do I do it? -- Thank you! David Brook

Part and Inventory Search

Back
Top