![]() |
| 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. |
|
|||||||
| Tags: item, listbox, selected, textbox |
|
|
Thread Tools | Display Modes |
|
#1
|
|||
|
|||
|
Hi. I have a listbox in a form. I will to put the selectedItem text of
listbox in a textbox, can I do that?, how?. Thanks a lot. |
| Ads |
|
#2
|
|||
|
|||
|
VBA user form or Outlook custom form? You posted in both the VBA and forms groups, so we have no way of knowing. Multi-select or single-select list box?
-- Sue Mosher, Outlook MVP Author of Microsoft Outlook 2007 Programming: Jumpstart for Power Users and Administrators http://www.outlookcode.com/article.aspx?id=54 "JP" wrote in message ... Hi. I have a listbox in a form. I will to put the selectedItem text of listbox in a textbox, can I do that?, how?. Thanks a lot. |
|
#3
|
|||
|
|||
|
I have a user form in Outlook. In it I have a ComboBox ( I was mistaken when
I said ListBox, excuse me ) with a multiple items. My objective is: when you select an item of the ComboBox, pass the text in the item to a textbox in the same form. Thanks. "Sue Mosher [MVP-Outlook]" escribió en el mensaje ... VBA user form or Outlook custom form? You posted in both the VBA and forms groups, so we have no way of knowing. Multi-select or single-select list box? -- Sue Mosher, Outlook MVP Author of Microsoft Outlook 2007 Programming: Jumpstart for Power Users and Administrators http://www.outlookcode.com/article.aspx?id=54 "JP" wrote in message ... Hi. I have a listbox in a form. I will to put the selectedItem text of listbox in a textbox, can I do that?, how?. Thanks a lot. |
|
#4
|
|||
|
|||
|
On a VBA user form, that would look like this:
Private Sub ComboBox1_Change() TextBox1.Value = ComboBox1.Value End Sub -- Sue Mosher, Outlook MVP Author of Microsoft Outlook 2007 Programming: Jumpstart for Power Users and Administrators http://www.outlookcode.com/article.aspx?id=54 "JP" wrote in message ... I have a user form in Outlook. In it I have a ComboBox ( I was mistaken when I said ListBox, excuse me ) with a multiple items. My objective is: when you select an item of the ComboBox, pass the text in the item to a textbox in the same form. Thanks. "Sue Mosher [MVP-Outlook]" escribió en el mensaje ... VBA user form or Outlook custom form? You posted in both the VBA and forms groups, so we have no way of knowing. Multi-select or single-select list box? "JP" wrote in message ... Hi. I have a listbox in a form. I will to put the selectedItem text of listbox in a textbox, can I do that?, how?. Thanks a lot. |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Filling listbox on custom Contact item 1st page | John E. | Outlook - Using Forms | 11 | November 25th 06 04:22 AM |
| Personal Calendar Item copied to a selected public folder calendar | Wanda | Outlook and VBA | 1 | November 1st 06 07:57 PM |
| refresh the currently selected item? | Jiho Han | Outlook and VBA | 4 | June 2nd 06 03:23 PM |
| Populating listbox | Syl | Outlook and VBA | 3 | March 13th 06 09:42 PM |
| multiselect Listbox value | Michael Anderson | Outlook and VBA | 2 | February 13th 06 04:13 AM |