Recent content by Jaro19a

  1. J

    Sizing Access

    I was looking for a way to max Access, not the form but the program. Any help would be great. Thank you
  2. J

    Sizing Access

    How can you size access when it opens. I have to front-ends. One that I would like to max when Access opens. The other is a small version and I would only like Access to be as large as the main form. Thank you for your helo
  3. J

    Network Login to Textbox

    I would like to know how you could get the users logon ID form the computer/network in to a textbox on the main form. You may be asking why? Well, when you login to the database the user names and the same as the user name for the network. My boss would like to make it easier to login (Not like...
  4. J

    Link Table Path

    I have a split database and have a two-part question about updating the linked tables. First, I would like to make it so if the front-end loads and the backend database path has changed, it will open a msgbox where you can type the new path for all the tables (linked). Second, I would to make...
  5. J

    Change the Shift Key

    I was hoping someone would know how to change the shift key bypass, when you start a database to a diffirent key or set of keys. Let me know, Thank you, Jeremy C.
  6. J

    different colored fonts for item in row source

    How is that done?
  7. J

    Check for yes/no

    My coding skills are very low and need help with a piece of code. What the set up is: I have 3 database, one with all the data (backend), one is for the users, and one is your the office. I have to keep the users and office form in diffrent databases. What I'm looking for: When they login to...
  8. J

    Info from Table A to Table B

    I do not know how to do this. I hope some one can help me. In Table A, I have a ID feild, Name feild, and some other feilds. When a new record is added in Table A (via a form), I want the ID and Name feilds to be added to Table B also. Thank you are your help, Jeremy C.
  9. J

    different colored fonts for item in row source

    Good question, I would like to know that to. Jeremy
  10. J

    On Open Change Field

    Still do not know where I tell it want I want it to be. Can some one help me. Thank you. --------------- Private Sub Form_Load() Me.cboStatus.RowSource = "SELECT [Status] FROM [Tab_People];" End Sub
  11. J

    Mass Change from Form

    Thank you for your help. It work great.
  12. J

    On Open Change Field

    Below is what I have put in the code for the Form On Load, but where do I tell it what I want it to change to. Thank you for all your help. Jeremy. Private Sub Form_Load() Me.cboStatus.RowSource = "SELECT [Status] FROM [Tab_People];" End Sub
  13. J

    Mass Change from Form

    Well I'm still new to the deep stuff in access. I can do queries, but I'm unsure what a Update queries is. Can you help me with a URL, or a sample? Thank you, Jeremy
  14. J

    Mass Change from Form

    Is there away to change a feild for a group of people form a form. So the Table would look like this. Name | Group | Status --------------------------------------- Tim Smith | Youth | Out Jake Smith | Youth | In Nick Smith | Adult | Out But after you...
  15. J

    On Open Change Field

    On the form's Load() event, I put: Me.cboStatus.RowSource = "In" It still does not seem to work. Did I do something wrong. I think I might need to change the ME to somthing but not sure what.
Back
Top Bottom