Recent content by WCOK2

  1. W

    Possible Tab Control(s) in another tab control

    A simple question. I have tried to add Tab Control(s) in another tab control but those added tab control added in one particular tab control are shows on all tab controls in the same forms. Is it MS Acess limitation or I just don't get it done correctly?
  2. W

    Unbound form problem

    Also, if you need to keep the form "frmVehicle" in database for any reason, you can rename each filed's name in the form different from its record source. i.e. add "1" at end of the name will be good enough..
  3. W

    Unbound form problem

    Keith, If I delete Form "frmVehicle" from your database, and delete from the code the below: DoCmd.Close DoCmd.OpenForm "frmVehicle" now the program will run perfect. Also be very careful on the field size of RegistrationNo if you set it Type as Number and/or as Primarykey. Some records...
  4. W

    How to call OnDblClick procedure from another Control(s)

    Gizmo, that works perfectly for my problem. Thanks a lot.
  5. W

    Continuous Forms

    I exported your db to a new one since when I opened it, the main form and the subforms won't allow to add new record with the warning your db is read only. In the exported one, I was able to see bottom of main form now shows Records 1 of .. * 6. With the star there, I was able to add new record...
  6. W

    How to call OnDblClick procedure from another Control(s)

    I have 3 Controls in a form, Control1, Control2, and Control3. Control2, and Control3 both have procedue under event OnDblClick, and I want to wirte code under Control1 OnClick to call OnDblClick of Control2 and then OnDblClick of Control3. Have try several ways but failed. It is another way...
Top Bottom