Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by daveninja

  1. daveninja

    script for Outlook Form???

    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 =...
  2. daveninja

    script for Outlook Form???

    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...
  3. daveninja

    script for Outlook Form???

    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...
  4. daveninja

    script for Outlook Form???

    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!!!

Part and Inventory Search

Back
Top