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 dencom on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Cristodul

  1. Cristodul

    Can Combo Box look to two different fields?

    Thank you so much for such a quick response and quick solution. Both of the codes are returning the same results. Great forum, but greater people!
  2. Cristodul

    Can Combo Box look to two different fields?

    Private Sub Search_AfterUpdate() ' Find the record that matches the control. Dim rs As Object Set rs = Me.Recordset.Clone rs.FindFirst "[OLD_PN] = '" & Me![Search] & "'" If Not rs.NoMatch Then Me.Bookmark = rs.Bookmark Else MsgBox "Please Enter a Valid Part Number" End...
  3. Cristodul

    Can Combo Box look to two different fields?

    Hi everybody, I have a combo box that I’m using it as a search for replaced part numbers. Right now combo box is searching only in the old part number field. Can I set up the combo box to search in new part numbers as well or I have to create a second combo box? Thank you all!
  4. Cristodul

    Combo box search -> display fields

    I restart everything from the beginning and I get the message not found. I'm sorry to ask so many questions... to much espresso... But how do I sync the 2 combos and when I open the form all the fields to be empty? Cristian
  5. Cristodul

    Combo box search -> display fields

    I've done it but nothing happens. Cristian
  6. Cristodul

    Combo box search -> display fields

    One step closer to the goal. I could not find the option 1 (Remember this value for later use). I don't know if this is important, but I use Access 2003. Is working great with some exceptions: 1. I create 2 combo boxes in the same form. Looks like they are independent. I search an old part...
  7. Cristodul

    Combo box search -> display fields

    Yes, it will. I create a form using the wizard. For Tables/Queries I used table. I added all the available fields and modified the form in design view. Deleted first 2 fields and replace them with combo boxes with option "Find a record on my form..." I manage to create a single form, but when I...
  8. Cristodul

    Combo box search -> display fields

    Ok. I've done that, but now instead of having 1 line I have as many lines as I have in the table. I search a record and if is found all the lines are filled with the record name. The other properties are not shown. This is the code I have: Option Compare Database Private Sub...
  9. Cristodul

    Combo box search -> display fields

    These is some of that code. I looked over all and nothing apeares as a procedure or function. I'm looking in the wrong place? Private Sub Detail_Click() End Sub Private Sub Detail_DblClick(Cancel As Integer) End Sub Private Sub Detail_MouseDown(Button As Integer, Shift As Integer, X As...
  10. Cristodul

    Combo box search -> display fields

    I hope this is what you need. Name Old Part Number Row Source Type Table/query Row Source SELECT [Superceded Items].OLD_PN, [Superceded Items].NEW_PN, [Superceded Items].ECN_NO, [Superceded Items].CHANGED_BY FROM [Superceded Items]; Column Count 4 Column Heads Yes Column widths 1;1;1;1 Bound...
  11. Cristodul

    Combo box search -> display fields

    Thank you Remou for the fast response. Yes, my form is based on the same table that the combo is based on. I create the form with option “Find a record on my form based on the value I select in my combo box”, and still not working. Cristian
  12. Cristodul

    Combo box search -> display fields

    Hello everybody I’m having problems with the combo box. I have a db with the following fields: OLD_PN; NEW_PN; ECN; CHANGED_BY. When I’m doing a search, if I enter a part number that is not in the db I get a message that says that the item is not in the list. That’s great, but when I have a...
  13. Cristodul

    basic combobox question default value

    Hello! I do have that set to yes (I have options Yes or No) C
  14. Cristodul

    basic combobox question default value

    Hello everybody!, Darrylles I go my self a very similar question and I hope is no problem to post that here. After reviewing the posts I feel that I'm very close to my expected result. I use a combo box to find data entry's from the table. When I enter a value not in the table I get a message...
  15. Cristodul

    Tables and forms to be read only

    I think I have it! I split the db and convert the front end table in to mde. On the converted db I hide the table. You can’t design the form, you can’t see table. Objective achieved!!! Thank you again for your knowledge!

Part and Inventory Search

Back
Top