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 strongm 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: *

  1. zgtrman

    ComboBox Code

    mikej 336 Ok I will attack the problem from that angle. Thx. To effectively improve in the efficiency of your performance, one must be proficient in the implementation of a positive mental attitude.
  2. zgtrman

    ComboBox Code

    The answer to this is probably simple but I have been out of the loop for a couple years and forgot how to do this. I have a form with a combobox (unbound) that has the names of the tables that I have created. The tables only have two fields in them 1. Key (Autonumber) (primary key) 2...
  3. zgtrman

    Unbound Combo Box

    The answer to this is probably simple but I have been out of the loop for over two years and I forgot how to do this. Unbound Combo Box with Values that I typed in that are the names of the tables I have created..all the table have only two fields 1. key Primary Key Autonumber 2. Description...
  4. zgtrman

    search records from button press

    I would like to thank all who replied to my question...I have since found the solution I was after by using the OR in my query. In as much as the suggestions to this questions did not actually solve my problem...they did put me on the right path. To effectively improve in the efficiency of your...
  5. zgtrman

    search records from button press

    I bet the answer to this one is easy but I just can't see it, I have a table with names and tasks fields and one ID field. everything is text except the ID field. the tasks fields will only contain numbers. What I am trying to do is create a procedure that the user inputs a number in a text box...
  6. zgtrman

    Hijacked Internet Explorer.

    NAVSCAN32 is a Norton Anti Virus Scan program component from the free online scan service To effectively improve in the efficiency of your performance, one must be proficient in the implementation of a positive mental attitude.
  7. zgtrman

    copy to the clipboard from a command button

    flyover789 THANK YOU!!!!! have a star To effectively improve in the efficiency of your performance, one must be proficient in the implementation of a positive mental attitude.
  8. zgtrman

    copy to the clipboard from a command button

    I have created a database for myself at work, I would like to copy the contents of a textbox to the clipboard from a command button, I have the command button click event code as follows Notes.SetFocus now what I want to add is code that will copy the contents into the clipboard...is this...
  9. zgtrman

    Please Help Me...

    use the snapshot viewer...it is a download from microsoft To effectively improve in the efficiency of your performance, one must be proficient in the implementation of a positive mental attitude.
  10. zgtrman

    VBA vs. VB6

    mikee, They are essentially the same except for a few commands, and since you already have a book on one then the cost is minimal zgtrman To effectively improve in the efficiency of your performance, one must be proficient in the implementation of a positive mental attitude.
  11. zgtrman

    Toolbar Question

    umm never mind..I figured it ouy DoCmd.OpenForm "WIN95".acNormal zgtrman To effectively improve in the efficiency of your performance, one must be proficient in the implementation of a positive mental attitude.
  12. zgtrman

    Toolbar Question

    I am building a database for myself to aid me with my work...I have a toolbar on a form with buttons and I want to open another form that corrosponds with the button..all forms appear in the project explorer, however I keep getting a "Application-defined or object defined" error everytime I...
  13. zgtrman

    HOW TO UPDATE/REFRESH DATAGRID IMMEDIATELY AFTER ADDNEW RECORD

    Hiccup, Is the command button click event on a seperate form? I did something very similar in my college days however I did not use the ADO control, I did it all through code but the end result is the same...if the click event is on another form that you need to reference the form that...
  14. zgtrman

    HOW TO UPDATE/REFRESH DATAGRID IMMEDIATELY AFTER ADDNEW RECORD

    Hiccup Look at the following code snipett: Dim strQuery As String strQuery = "SELECT * FROM Suppliers" Adodc1.RecordSource = strQuery Adodc1.Refresh modify this to match the fields of your datagrid or the table from your database and include it in your click event...then it "should" work...
  15. zgtrman

    page cannot be displayed

    One thing that you may want to try open the internet options through the tools on Internet Explorer and click on the Advanced tab then look for and uncheck "Enable Third Party Browser Extensions (requires restart)" then click Apply then OK. If you then are able to access web pages then you have...
  16. zgtrman

    reset color and pixels

    reinstall your video card and monitor drivers To effectively improve in the efficiency of your performance, one must be proficient in the implementation of a positive mental attitude.
  17. zgtrman

    HOW TO UPDATE/REFRESH DATAGRID IMMEDIATELY AFTER ADDNEW RECORD

    Hiccup , If I read your click event correctly you are updating the database but not the form the grid is on...I found this in the MSDN, you may want to add code to you click event Changing Displayed Data at Run Time Once you have created a grid using the design-time features, you may also...
  18. zgtrman

    Windows98 clock running slow - Date/Time Properties clock runs slow

    sounds like your battery is dying on your motherboard To effectively improve in the efficiency of your performance, one must be proficient in the implementation of a positive mental attitude.
  19. zgtrman

    combobox population based on another combobox

    scriverb Thank you for your response, the OS table is a table onto itself but I can see in your code what to do Thank You!!!!!
  20. zgtrman

    combobox population based on another combobox

    I am having trouble with finding out how I can populate a combobox based on a selection of another combo box, all controls are on the same form. combobox1(named OS) is unbound and gets its list from a table (OS) combobox2(Procedure) would be populated with a field from the selected OS...

Part and Inventory Search

Back
Top