![]() |
If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|
Thread Tools | Search this Thread | Display Modes |
#1
|
|||
|
|||
![]()
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 |
#2
|
|||
|
|||
![]()
Control values are generally the wrong approach. Instead, use the property
values, e.g. Item.Subject. See http://www.outlookcode.com/article.aspx?ID=38 -- Sue Mosher, Outlook MVP Author of Microsoft Outlook 2007 Programming: Jumpstart for Power Users and Administrators http://www.outlookcode.com/article.aspx?id=54 "Gary Newport" wrote: 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 |
#3
|
|||
|
|||
![]()
I have used the property values set in design wherever possible but I need
things to change as the form is completed/sent. I have now realised that I am using the textbox name, rather than the bound name so have changed the one code to... Function Item_Send() dim mySubject dim myStudent Set mySubject = Subject Set myStudent = Student mySubject.Value = mySubject.Value & myStudent.Value End Function However, when I run this form I get the error: Microsoft VBScript runtime error: Object required: '[string: "Round Robin for "]' Now the text given is contained within the bound field of Subject and this appears as the stored property when I undertake a watch. So the object is being recognised by the editor but not being transferred to the new set variable mySubject. Equally, Student is not receiving it's value, even though it has been entered into the field. I need this to update the Subject field just before being sent. "Sue Mosher [MVP-Outlook]" wrote: Control values are generally the wrong approach. Instead, use the property values, e.g. Item.Subject. See http://www.outlookcode.com/article.aspx?ID=38 -- Sue Mosher, Outlook MVP Author of Microsoft Outlook 2007 Programming: Jumpstart for Power Users and Administrators http://www.outlookcode.com/article.aspx?id=54 "Gary Newport" wrote: 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 |
#4
|
|||
|
|||
![]()
Where do the object variables "Subject" and "Student" come from? Your code
snippet doesn't that. As explained in the article I suggested, the value of the Subject property of any Outlook item, is usually returned and set in form code with Item.Subject. Therefore, your could should be something more like: Item.Subject = Item.Subject & some new value Where some new value comes from depends on the information that's missing from your code snippet -- how the Student object variable is derived. Going solely on the error message, it looks like Student is not an object variable at all, but instead is a string variable, in which case, the statement to update the subject would be: Item.Subject = Item.Subject & Student -- Sue Mosher, Outlook MVP Author of Microsoft Outlook 2007 Programming: Jumpstart for Power Users and Administrators http://www.outlookcode.com/article.aspx?id=54 "Gary Newport" wrote: I have used the property values set in design wherever possible but I need things to change as the form is completed/sent. I have now realised that I am using the textbox name, rather than the bound name so have changed the one code to... Function Item_Send() dim mySubject dim myStudent Set mySubject = Subject Set myStudent = Student mySubject.Value = mySubject.Value & myStudent.Value End Function However, when I run this form I get the error: Microsoft VBScript runtime error: Object required: '[string: "Round Robin for "]' Now the text given is contained within the bound field of Subject and this appears as the stored property when I undertake a watch. So the object is being recognised by the editor but not being transferred to the new set variable mySubject. Equally, Student is not receiving it's value, even though it has been entered into the field. I need this to update the Subject field just before being sent. "Sue Mosher [MVP-Outlook]" wrote: Control values are generally the wrong approach. Instead, use the property values, e.g. Item.Subject. See http://www.outlookcode.com/article.aspx?ID=38 "Gary Newport" wrote: 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 |
#5
|
|||
|
|||
![]()
Sorry, should have explained better...
I have a textbox called txtSendStudent (stupid name but running out of ideas at present). I have created a field called Student and have bound the textbox to this field. I now have the code you gave me and it works...sort of. If I fill out the initial email and click SEND the message is sent with the subject being "Round Robin for" being shown. When I forward the form back then the subject changes to "Round Robin for student name". The desired effect but I want it to change the subject before the initial send and not once the form is returned. |
#6
|
|||
|
|||
![]()
So, you'll need something in your Item_Send event handler to distinguish new
items from forwarded items, right? Maybe the FW: prefix on the subject would be sufficient? Why do you think your control name is stupid? As long as it makes sense to you (and will still make sense 6 months from now when you update the code), a control name can be anything you like. -- Sue Mosher, Outlook MVP Author of Microsoft Outlook 2007 Programming: Jumpstart for Power Users and Administrators http://www.outlookcode.com/article.aspx?id=54 "Gary Newport" wrote: Sorry, should have explained better... I have a textbox called txtSendStudent (stupid name but running out of ideas at present). I have created a field called Student and have bound the textbox to this field. I now have the code you gave me and it works...sort of. If I fill out the initial email and click SEND the message is sent with the subject being "Round Robin for" being shown. When I forward the form back then the subject changes to "Round Robin for student name". The desired effect but I want it to change the subject before the initial send and not once the form is returned. |
#7
|
|||
|
|||
![]()
One day I'll explain with all relevant details contained.
![]() As I have stated, I have a textbox called txtSendStudent bound to a field called Student. I would like the email to be sent with the subject field containing the words "Round Robin for student name" to make it clear to the recipients who the round robin is about. What I NEGLECTED to state was that the default text is "Round Robin for" is the default text for my Subject field. So, the intially received email is only showing the default value of the Subject field textbox. Only on the return send (technically known as FORWARD) does the Subject field NOW contain the text I want. I therefore need the code to alter the subject field BEFORE sending the email. |
#8
|
|||
|
|||
![]()
As the page I suggested earlier --
http://www.outlookcode.com/article.aspx?ID=38 -- explains, you can write code behind the form to respond to the user's interaction with the controls and, in this case, the properties on the form. -- Sue Mosher, Outlook MVP Author of Microsoft Outlook 2007 Programming: Jumpstart for Power Users and Administrators http://www.outlookcode.com/article.aspx?id=54 "Gary Newport" wrote: One day I'll explain with all relevant details contained. ![]() As I have stated, I have a textbox called txtSendStudent bound to a field called Student. I would like the email to be sent with the subject field containing the words "Round Robin for student name" to make it clear to the recipients who the round robin is about. What I NEGLECTED to state was that the default text is "Round Robin for" is the default text for my Subject field. So, the intially received email is only showing the default value of the Subject field textbox. Only on the return send (technically known as FORWARD) does the Subject field NOW contain the text I want. I therefore need the code to alter the subject field BEFORE sending the email. |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
CPAO: object reference not set to an instance of an object | Caroline | Outlook - Calandaring | 2 | November 29th 08 04:32 AM |
Why does the Address property of the Recipient object in the Outlook object model look funny? | Omatase | Outlook - General Queries | 2 | July 13th 07 09:09 PM |
VBScript code that uses the Outlook object model to fetch calendar | Safal | Outlook - Calandaring | 1 | November 17th 06 03:12 PM |
VBScript code that uses the Outlook object model to fetch data | Safal | Outlook - Using Forms | 1 | November 17th 06 02:11 PM |
open outlook data files from vbscript / macro? | Mad Scientist Jr | Outlook and VBA | 2 | January 24th 06 10:20 PM |