Microsoft
Software
Hardware
Network
Question : vba - listbox double click issue
I have a listbox that populates its rows from a spreadsheet.
When a user double clicks on a row in the listbox after it already populates from the spreadsheet...I need to capture that row in the spreadsheet to populate it into another form...
so the listbox looks like this after it already poplutes from the spreadsheet...
from subject date
xx xx xxx
dd dd dd
ee ee ee
if the user double click on the 'DD' row I need to populate and array with each column in that row into an array, so that I can import that data into another form
..so on the spreadsheet after the 'date' is a message column and I need to carry that message info into the other spreadsheet and paste that 'DD' row into the the a listbox control on another form...
i hope this is clear....
Answer : vba - listbox double click issue
GlobaLevel,
This should do it:
For i = 0 To Me.ListBox1.ListCount - 1
If Me.ListBox1.Selected(i) = True Then
myarray(0, 0) = ListBox1.List(i,0)
myarray(0, 1) = ListBox1.List(i,1)
myarray(0, 2) = ListBox1.List(i,2)
End If
Next i
Patrick
Random Solutions
can't change password through OWA 2010
"Include inheritable permissions from this object's parent" is gey out in Windows 2008
Auto start and mount RAID array Linux
run time error: you entered an expression that has no value
checking login & pass with curl
Should Sys Admins (Domain Admins) also have user accounts?
Microsoft Outlook 2007 is pulling duplicate emails from free hotmail live server - how can I prevent this, its driving me mad.
MSExchange ActiveSync Event ID 1040 Annoying?!
Juniper SA2500 SSL VPN and Windows 2008 R2 firewall problem
Moving shares in SBS server 2008