Recent content by emilyebba

  1. E

    Check Box to Gray Out Areas

    Hi I highlighted the text...copy...paste and it did not paste as it has in the past. ? In any case I dont know which window to paste this in for the Event Procedure of each checkbox? After Update? Thank you sir!
  2. E

    Check Box to Gray Out Areas

    I dont know why the pasted text did not work...it is from this thread #12. Thank you.
  3. E

    Check Box to Gray Out Areas

    Hi Mr. Larson. Now that i have spent more time with this I now understand why using the modified code is a good idea. My VBA window is long and clunky (would this inhibit speed and performance?) What you suggested now makes sense. My question is where do I put this code? I have four...
  4. E

    How to manage, update, and remove IOU data

    Hi, I would like to request some advice about how to display and manage some information. Ultimately I want to be able to find out current IOU's and be able to add/remove as necessary I have a database tracking customers and payments. On my payments form I have a tick box if an IOU is filed...
  5. E

    VBA Window

    Thank you kindly for your answer! Helped a lot! Wow 1000...I cant even imagine. :)
  6. E

    VBA Window

    Hi...Just a couple of general VBA window questions. Does it matter what order the Event Procedures are in in the VBA window? Along that line does it matter of how much code you have in there? Will it make the database slower? Thank you
  7. E

    Auto Populate Unbound Text Box

    Yeah! It worked! You guys are great! Thanks! Amazing!
  8. E

    Auto Populate Unbound Text Box

    Hi, Still not working. I have attached a sample. Thanks for your help!
  9. E

    Auto Populate Unbound Text Box

    Still not working and this is what I entered: Private Sub CertNum_AfterUpdate() Me.txtbox_GetBusName = DLookup("BusName", "tbl_MainCust", "[CertNum] = & Me.CertNum") Me.txtbox_GetBusName.Requery End Sub Thanks for helping!
  10. E

    Auto Populate Unbound Text Box

    Hi John Big Booty...CertNum is alpha-numeric. Thanks.
  11. E

    Auto Populate Unbound Text Box

    Hmmm. Still not working. I tried it in the AfterUpdate of the CertNum textbox and the LostFocus. I have two tables. My Customer table and my Payments table. I did: Private Sub CertNum_LostFocus() Me.txtbox_GetBusName = DLookup("BusName", tbl_MainCust, "[CertNum] = '" & Me.CertNum & "'")...
  12. E

    Auto Populate Unbound Text Box

    Hi, I am fairly new to programming and am trying to figure this one out. I have searched this forum at length and found another thread that had something similiar but I cant quite get it to work ( http://www.access-programmers.co.uk/forums/showthread.php?t=201644 ). On my form when the user...
  13. E

    Combo Box Selection Enables Field

    Yeah! Works perfectly. Thank you!
  14. E

    Lookup List, Form, Table, Combo box

    Thank you for your help!!
  15. E

    Combo Box Selection Enables Field

    Mr. Larson I tried at length to modify the code and found it not working. So I thought to use the same methodology as the checkbox and try, as you suggested, something close to that (since I understand that and how it works). This is what I came up with and its not working. Am I getting...
Back
Top Bottom