Making checkboxes and mail merge work in a form.

soorags

Registered User.
Local time
Today, 10:10
Joined
Mar 19, 2007
Messages
37
On the frmNz form I have added 2 checkboxes, Website? and Email? (i.e. is there a website and/or email?)
I would like it so that if these are selected with ticks then website and email addresses can be entered into the below textboxes, otherwise the website and email address textboxes go grey or something (i.e they cannot be used if they are not ticked) How can I make this possible?

Also I would like a function where I can select companies from the "Search Results" subform table and then mail merge letters to them. How is this possible?

Gurdip.
 

Attachments

ok on your form properties(current) you need
name of control (which is your tick box )
if true then fieldname.enable=true
if false then fieldname.enable=false
end if
refresh
and a save option

or closeto this
if you wish it to be greyed out then alter the above to fit what you want
 
I don't understand.

You have written that on the form properties (current)
"you need name of control (which is your tick box )
if true then fieldname.enable=true
if false then fieldname.enable=false
end if
refresh
and a save option

or closeto this
if you wish it to be greyed out then alter the above to fit what you want"

I don't completely understand what is being said. Where do I type the coding "if true... etc." I also don't understand "you need name of control"

Gurdip.
 

Users who are viewing this thread

Back
Top Bottom