Search results

  1. N

    Can't export as ACCDE

    password = 123456789
  2. N

    Can't export as ACCDE

    This is so weird. I have a password-protected database. I need to make it an ACCDE file for security purposes. But, when i try to put in my password to convert it, it will not accept it! I'm 100% sure i have the password right because i can access my database with it. The database is only 4mb so...
  3. N

    Forms and Dynaset Inconsistent

    Thanks that worked pretty good now they update so much better! Thanks for the great advice!:)
  4. N

    Forms and Dynaset Inconsistent

    http://uploading.com/files/5da944em/paymee.accdb/ try this one
  5. N

    Forms and Dynaset Inconsistent

    I am having trouble with my forms. I have some of my forms set to Dynaset Inconsistent Data because they are based off of more than 3 tables. But, when i go to add a record in, the form doesn't remember and the record navigation selectors don't update. So any ideas...
  6. N

    VBA masks?

    okay, but how do i do this with forms/report objects? Is there a function that allows me to select all the forms, then set each form name equal to their form caption?
  7. N

    VBA masks?

    I'm trying to figure out how to do the first one... Can you help me out?
  8. N

    VBA masks?

    I'm gonna try the first one, thanks for the great ideas :)
  9. N

    VBA masks?

    I want to know if you can put form names through a mask made in VBA to display a different name. I am using MSysObjects to look up my forms and reports, and it returns the name but I think the name is a little too confusing for users (the prefix like frm or rpt and the underscores). I am hoping...
  10. N

    Form problem with VBA code

    Whoops! Lol, I made the dumbest mistake, i used the wrong name to reference my listbox... Thanks for the great help though :)
  11. N

    Welcome to my profile page :) Kick back and relax a little...

    Welcome to my profile page :) Kick back and relax a little...
  12. N

    Form problem with VBA code

    here is what I have got so far: Private Function basViewForms() 'View all forms If lstAll.ItemsSelected.Count = 0 Then DoCmd.RunMacro "mcr_functions.FrmMsg" Exit Function Else DoCmd.OpenForm lstForms, acNormal End If End Function I keep getting this error...
  13. N

    Form problem with VBA code

    This little problem has been bugging me all day. I have a form that has a listbox where you can click on buttons and change its row source to look at either reports or forms using MSysObjects. I also have 2 buttons that will either let you look at a report or look at a form. Now I have an OnLoad...
Back
Top Bottom