Search results

  1. Kryst51

    IF statement help

    Try this: If txtConsole = "PS3" or txtConsole = "XBOX" or txtConsole = "WII" Then NEWGEN_FL.Value = -1 End If
  2. Kryst51

    Problems with query criteria

    Can you post the sql for the query so we can check it out?
  3. Kryst51

    Docmd.GoToRecord acNext

    Your Welcome, and I am glad you figured it out on your own! Good luck. :)
  4. Kryst51

    Docmd.GoToRecord acNext

    Set the add property to "no" on the form properties.
  5. Kryst51

    Changing background color of items in combo list

    You are both very welcome, I am glad you got everything working. :)
  6. Kryst51

    Changing background color of items in combo list

    Oh, I also think the "[Event Procedure]" on the click events need to be redone to connect the controls with their code. It got broken when I moved everything.
  7. Kryst51

    Changing background color of items in combo list

    OK, Cut the controls as a group off of your form. Select the tab control, and make sure an orange box (border) comes up. Click on it to make sure your there then paste the controls you cut back on. This should paste them into the tab which is on the form instead of pasting it on the form.
  8. Kryst51

    Changing background color of items in combo list

    That means that you didn't get the controls into the tab, but only on the form. I'll have to play around with it to see if I can get it.
  9. Kryst51

    Changing background color of items in combo list

    Try this I moved the line "SetVisibility False" From the Form Open Event to the Form Load event after the go to new record command. I have attached the changed version EDIT: I am not sure why, maybe it has something to do with the fact that on the open event the "cmdShowLists" button is...
  10. Kryst51

    Changing background color of items in combo list

    That's what I meant, sorry. If you can, upload your db, the one you copied everything into to here.
  11. Kryst51

    Changing background color of items in combo list

    Is the name of your combo box once copied over still cmdShowLists?
  12. Kryst51

    Changing background color of items in combo list

    Well, what do you know, now when I removed the ".Column(2)" it worked. :)
  13. Kryst51

    Changing background color of items in combo list

    I have always had problems with list boxes if I didn't declare the column, even in A2003. I think it was a thread I had on here that someone told me about that.
  14. Kryst51

    Changing background color of items in combo list

    Sure I can, I'll do it right now, but it was my understanding that you always had to use ".Column(x)" In these cases. So I tested it and the message box comes out the same.
  15. Kryst51

    Finding users in a table who are close to the age 18

    How about years like this: Between 17.75 and 18
  16. Kryst51

    Changing background color of items in combo list

    Hey, I show that the bound column is column 3 (And it is the ID) - See Screenshot EDIT: Also, Your welcome for the testing
  17. Kryst51

    Changing background color of items in combo list

    OK, Given the form in the DB in Post 37 that you asked me to look at I found the following: You needed to add the ".Column(2)" so that it knew to look at the bound column of the listbox. Private Sub lstDayShift_Click() Me.lstNightShift = Null Me!TimeID = Me.lstDayShift.Column(2)...
  18. Kryst51

    Changing background color of items in combo list

    Hey, I'm sorry, work has been a little crazy, I haven't yet, I will try to today. In the meantime, if someone else can help please do!
  19. Kryst51

    Modify date() criteria

    Just for closure on this, babinos PMd me, here is what he said: Which I think is exactly what I was showing him with the attachment I had.
  20. Kryst51

    Modify date() criteria

    Here's a A2003 version
Back
Top Bottom