Making form beautiful

rosh

Registered User.
Local time
Today, 00:12
Joined
Jul 13, 2009
Messages
14
Hi,

I am done with the form in access 2003 and now only need to make it look good.I have two questions --

1. Is there a way to remove the extra blank record in form which is to insert new records.


2. How to change the background color of the command button


---Rosh
 
Hi Rosh,

If you are working on form then... you can add this me.allowaddition = fasle in your form_load event procedure. And for any addition, insert Add Record by manually or by using wizard and just before the add command in event procedure type this.
me.allowaddition = true

This will enable you to add record but again it will insert blank line.
So you can remove it by inserting this in your SAVE command button.
me.allowaddition = false
 
there is no way to change the background color of the command button. there are workarounds using colored images piled on top of each other and custom buttons to purchase, but nothing built-in to access.
 
There is another way...
You can use images instead of buttons.... but they don't have 3D behavior.
 

Users who are viewing this thread

Back
Top Bottom