checkBox Macro

  • Thread starter James Agostinho
  • Start date
J

James Agostinho

Hello NG,
I just started trying to automat a few things in FrontPage with a macro, but
I can't get it to work
I've been using Excel and Word for awhile and the Macros seem to work
differently there.
I have 8 Checkboxes on a form called frmPreferences.
The checkboxes are called chkMon, chkTue, chkWed... and so on for all the
days of the week
I also have a checkbox called chkEveryDay and if this is checked I would
like all the other checkboxes to automatically fill in

'Code starts here===========================
Sub EveryDay()
If chkEveryDay.Checked = True Then
chkMon.Checked = True
chkTue.Checked = True
chkWed.Checked = True
chkThu.Checked = True
chkFri.Checked = True
chkSat.Checked = True
chkSun.Checked = True
End If
End Sub
'End Code================================

And how do you hook it to the checkbox to run when it's checked

Thanks
James
 
T

Thomas A. Rowe

FP macros will only work while you are working within FP, they will not work for users on your web
site. You will need to use JavaScript for web site users.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
T

Thomas A. Rowe

Java and JavaScript are two entirely different technologies, Java requires users to have a Java
Virtual Machine installed, whereas JavaScript doesn't.
--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
J

James Agostinho

Well, I'm batting a 1000.

Thomas A. Rowe said:
Java and JavaScript are two entirely different technologies, Java requires
users to have a Java Virtual Machine installed, whereas JavaScript
doesn't.
--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
Top