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: Honda
  • Order by date
  1. Honda

    ActiveX controls not working

    Capone , i think you just answered the problem yourself with the last posting.. DAO is the database access engine, thus if you dont have this you wont be able to gain access to the database.. When you install VB it automatically installs DAO and ADO, try getting just DAO i think it goes under...
  2. Honda

    If SQL returns no results..dataset becomes invalid...then error

    The answer to your problem is:<br><br>Put in a test for both BOF and EOF for the recordset, if both are true then no records have been found, and you can exit the the sub or do whatever..<br><br>Something like this<br><br>If RS.EOF And RS.BOF Then...<br><br>This traps the no record selected,just...
  3. Honda

    DAO vs ADO

    I too am using dao 3.6 and vb6 with access 2000 database and the application behaves well...
  4. Honda

    Usercontrol movement

    Hi all,<br>Is there any way to detect when a usercontrol is moved at design time.<br>I have a paintpicture routine to copy the backround behind the control, onto the control and then print some text over the backround..This is to try and make the control transparent..<br>I need to somehow...
  5. Honda

    Comm port control

    I managed to find a comm port control sample for VB3, using api calls readcomm,opencomm,closecomm, writecomm etc..<br> <br> What are the new api procedures for VB5,VB6 ?? Ive looked but can't seem to find any that seem to be the equivalent to these...<br> <br> Any help most appreciated.<br> Thanks
  6. Honda

    Passing variable to active X control

    Thanks Guys, the property works well...<br> Honda
  7. Honda

    Passing variable to active X control

    How do you pass a variable from, say a form to an active x control ?<br> <br> Declaring the variable as Public doesn't seem to work..<br> <br> Thankx
  8. Honda

    Executing code

    I cant thank U enough for such a comprehensive answer !!!<br> Cheers.<br> Honda
  9. Honda

    Executing code

    Ok<br> Say there is a valid event in the textbox ie form1.show , is there any way of executing that without looping through the "if.. then" routine??
  10. Honda

    Executing code

    I want to be able to execute a line of code that has been typed into a text box by a user (say form1.show) when a button is pressed. I've tried placing text1.text in the click event of the button, however that does not work. Any ideas or work arounds would be greatfully appreciated.

Part and Inventory Search

Back
Top