I'VE Found it!!!!!
After extensive use of the Help files : ) I've finally found something that works like it should:
Dim Text3
Dim TextBox3
Dim CheckBox3
Sub CheckBox3_Click()
Text3.Enabled = CheckBox3.Value
TextBox3.Visible = CheckBox3.Value
End Sub
Sub Item_Open()
Set Text3 =...
Yeah, there's an Outlook script editor.
Found the substitute for OnClick. Its Click.
sub CheckBox3_Click
Text3.Enabled = True
TextBox3.Visible = True
end sub
Now this finally recognizes that I clicked the checkbox. But the debugger comes up and says it can't find Item "Text3". That...
Thank you Shadow! I tried the script and from what I can figure this would work in VB:
sub CheckBox3_OnClick
Text3.Enabled=True
TextBox3.Visible=True
end sub
However, it doesn't work in VBScript for Outlook (?). Obviously I don't know much about this, but from what I've been trying to piece...
I want to do something like:
On Click (or On Property Change to TRUE) for CheckBox3
then make Text3 and TextBox3 VISIBLE and ENABLED.
I know this is nowhere near where I need to be, but I can't find anything on the net!!!
THANX!!!
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.