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

  1. mparekhji

    Different Control Source for each tab of a tab control?

    NCYankee1 I think you should do something like this... 1] Let your Main form have some recordsource say table 1 2] Put a Tab control with 4 pages on the main form. 3] On Each page of the tab control place a Subform and link it to the key you want it to match with the key on the main form. Set...
  2. mparekhji

    Immediate window with the forms

    Thanks Steve. Then I guess i'll have to live with it. I think it would have been kind of cool to have the ability to display the Immediate Window outside of the code module. Thanks Manish
  3. mparekhji

    Immediate window with the forms

    Hi All- May be a basic question for you, but i was wondering if it is possible to display the Immediate window, not in the code module, but in the Database Window view. So basically i want to Run a Form in Form View and then want to type something in the Immediate Window to see some results...
  4. mparekhji

    How to move records based on selection made from a combo box

    Thanks a lot Jeff and Taff. It works now. I did the following: Private Sub cboReceipe_AfterUpdate() Dim strCriteria as String Dim rst as DAO.Recordset Set rst = Me.RecordsetClone strCriteria = "ReceipeID = " & cboReceipeName rst.FindFirst strCriteria Me.Bookmark...
  5. mparekhji

    How to move records based on selection made from a combo box

    Hi All: I have a problem which will probably be simple for you but i'm finding it difficult to solve: I have one table in my database. It has the following fields: tableName : tblReceipe ReceipeID ReceipeName Category ReceipeImage What i want to do is, i dont want users to navigate using...

Part and Inventory Search

Back
Top