Edit contacts; fill textbox out of listbox

Bandito1

Board Regular
Joined
Oct 18, 2018
Messages
233
Office Version
  1. 2016
Platform
  1. Windows
Hi all,

I'm making a contactbook for phone contacts.

On userform frmTelephoneSearch i have a listbox named lstSearchResults. It displays all my contacts.

Now i would like to make a new userform to edit contacts that are in lstSearchResults.
I would like to select a name in the lstSearchResults, press a button and open a new userform and there there are textboxes that are filled with the data i clicked in lstSearchResults.

I made this test;

Code:
Private Sub lstSearchResults_Click()TextBox1.value = lstSearchResults.Text
End Sub

It works, the Full name is displayed in textbox1. But i would like that textbox on another userform.
Also there is more date; Full name, Department, Gender, phone and email. How do i specify each column to a textbox?

Hope someone can help.
Thanks in advance.
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
Found the answer on this;

It works, the Full name is displayed in textbox1. But i would like that textbox on another userform.
Also there is more date; Full name, Department, Gender, phone and email. How do i specify each column to a textbox?


Code:
[/COLOR]Private Sub UserForm_Initialize()
Me.txtSurname.value = frmTelephoneSearch.lstSearchResults.value
Me.txtDepartment.value = frmTelephoneSearch.lstSearchResults.Column(1)
End Sub
[COLOR=#333333]
 
Upvote 0

Forum statistics

Threads
1,214,834
Messages
6,121,873
Members
449,056
Latest member
ruhulaminappu

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top