View Single Post
  #1  
Old October 10th 08, 09:26 PM posted to microsoft.public.outlook.program_forms
Gary Newport
external usenet poster
 
Posts: 19
Default Using Object Data in VBScript

I have asked this elsewhere but thought it would be better as an identifiable
question...

How can I use the value of a textbox elsewhere (such as the subject textbox)
when sending the message?

Also, can I do the same to enable/disable a control?

Function Item_Send()

dim mySubject
dim myTextbox1

Set mySubject = txtSubject
Set myTextbox1 = txtTextbox1
mySubject.Value = "Round Robin for " & myTextbox1.Value

End Function
Ads