Search results

  1. J

    autonumber question

    cool, thanks!
  2. J

    autonumber question

    How do I reset the autonumber back to 1 and make it count over again?
  3. J

    Using LABELS as BUTTONS!!! help!

    thanks. anyone else?
  4. J

    Using LABELS as BUTTONS!!! help!

    Does anyone know of an example (code or DB) where someone used labels as buttons? The labels should have special effects when mouse overed, clicked, etc. Also, it should have code that resets button state and checks button state. Any help would be great!!!
  5. J

    Logging database changes

    anyone?.. did my question make sense?
  6. J

    Logging database changes

    Does anyone know of a module that will log the changes a user has made to a database (ie, create table, delete query, ETC). I already have modules that will track users name, computer name, and time they enter the database into a text file. Any help would be great!
  7. J

    combo box help

    Here is the code for the IF statement... " For Each ctl In Me.Controls Select Case ctl.ControlType Case acComboBox If ctl.Value & "" = "" Then MsgBox "You must fill in all data fields." Exit Sub End...
  8. J

    combo box help

    Yes there is an IF statement. I have already set the table Design View to Required - NO, but I can't seem to find it on the form properies of the combo box. Would it be in those properties, if so what is it named?
  9. J

    combo box help

    can anyone else chime in? is there some type of blank character I can input into the table?
  10. J

    combo box help

    I have an Idea, but I need help on the code. I'm thinking I could make some parameters to exclude this certain combo box in the code when you press "submit" (which prompts 'Must fill in all fields' when one is empty). If you guys could help me out on the code that'd be great!!
  11. J

    combo box help

    The first suggestion of not clicking the arrow won't work because it tells me to complete all fields. for the second suggestion, would I change tables from Objects or change it in the form design? Thanks for the help!
  12. J

    combo box help

    I have a drop down list and I want a selection where it'll output nothing if selected, I tried to add a blank space to the table but it tells me I need to complete all fields when I select that in the form. How can I add a blank space to the combo box to output nothing?
  13. J

    FORM HELP!! with drop down list

    Sweet thats all I needed. THANKS!
  14. J

    FORM HELP!! with drop down list

    so if my cmb box is named 'cboAccounts' and my text box is 'txtDescription' the code will look like this...? ******************************* Private Sub cboAccounts_AfterUpdate() Me!cboAccounts = Me!txtDescription End Sub ***************************** thanks for the help!! let me know if...
  15. J

    FORM HELP!! with drop down list

    I'm pretty much a noob to visual basic, I've only taken C++ so I dont really know VB language. ok here is my question... I have a form and I added a drop down list through a table. What I want it to do is output into another text box within the same form when an item in the drop down list is...
Back
Top Bottom