Re: Can't select Item in a list box
From: Tim Wilson ("Tim)
Date: 05/23/04
- Previous message: Nick Hird: "Remove Inherited Controls Properties?"
- In reply to: Willie Neil: "Re: Can't select Item in a list box"
- Next in thread: Tim Wilson: "Re: Can't select Item in a list box"
- Messages sorted by: [ date ] [ thread ]
Date: Sun, 23 May 2004 12:41:58 -0400
Attached is a solution that should help you get a start on this. I can work
with you on this piece by piece so let me know what direction you want to go
from the solution and I can give you some more help, if necessary.
--
Tim Wilson
.Net Compact Framework MVP
{cf147fdf-893d-4a88-b258-22f68a3dbc6a}
"Willie Neil" <kixman@excite.com> wrote in message
news:%23KBllKFQEHA.3732@TK2MSFTNGP11.phx.gbl...
> You are correct. The items in each list view pertain to several different
> items that will be used as a reporting filter. I will ultimately use a
data
> grid that will display items and an ID, which of course will be hidden.
The
> list or grids will be populated via database. But I'm using listboxes to
> help model my functionality and determine what's the best way to
accomplish
> this in vb.net. Each button and Listbox or grid, pertains to a different
> report data filter. Another button on the form will have functionality to
> call a report, and use what ever items are selected as it's filter. I
would
> like advice on the best way to accomplish in vb.net using the controls
> mentioned. The list items relate in regards to filtering a reports
> underlying dataset.
>
>
>
> Example = CustomerTrailBalanceReport
>
> List1 = CustomerID
> List2 = PeridoValueID
> List3 = TransactionID
>
> Please if I'm not clear let me know, I'll answer any question you have.
>
> -Wil
>
>
>
>
> "Tim Wilson" <TIM(UNDERSCORE)WILSON(AT)ROGERS(PERIOD)COM> wrote in message
> news:%23WoWzZEQEHA.1432@TK2MSFTNGP09.phx.gbl...
> > Ok, so this doesn't sound *too* overly complex but I just want to
clarify
> a
> > few things. So each Button simply controls if the corresponding ListBox
is
> > visible or not. You have a Label that corresponds to each ListBox
> detailing
> > something that the user has selected. The thing that I still don't
really
> > understand is what is being displayed in the ListBox's. So what type of
> data
> > is contained in each ListBox and how are they related, if at all?
> >
> > --
> > Tim Wilson
> > .Net Compact Framework MVP
> > {cf147fdf-893d-4a88-b258-22f68a3dbc6a}
> > "Willie Neil" <kixman@excite.com> wrote in message
> > news:eUioODDQEHA.3348@TK2MSFTNGP09.phx.gbl...
> > > Thanks, yes I do know how many buttons and listboxes I will have. When
> the
> > > user clicks.... let's say Button1 show listbox1, and so on with the
> other
> > > buttons hiding the other listboxes. Also a label displaying either
"ALL"
> > or
> > > "Filterd" for only a few selected or "None" for none selected. User
> clicks
> > > item in lsitbox, label displays"Filtered", User selects all..Label
> Display
> > > "ALL". The items selected in each lsitbox will eventually be saved to
a
> > > table call settings and later developemnt will allow the user to
> retrieve
> > > previous settings and iterm will be selected in the respected listbox
> > > control in regards to the settings saved in the table. Here is the
post
> > from
> > > the other news group. Any advice as to how to handle this
functionality
> is
> > > appreciated.
> > >
> > >
> > > ***POST*********
> > >
> > > I'm new to vb.net and would like the advice of my peers. Here is my
> > > scenario: I have a user control which consists of three buttons, three
> > > listboxes and three labels. When the user selects a button an
associated
> > > listbox is made visible. The user can then select her choices which
will
> > be
> > > used for a reporting filter down the line. I've created a user control
> to
> > > house these controls and put the user control on a form, I will have
> > perhaps
> > > 4 different user controls later. I've create a class called
clsCustomCtl
> > > which has two classes in it, one for button which inherits button and
> one
> > > for listbox which inherits listbox. I then instantiate these classes
in
> my
> > > user control making my controls of the class type, clsButton or
clsList.
> > > Here is my code below, am I coding this in a correct manner? I'm a
> > stickler
> > > for coding style, but being new to .net I would love some advice.
> Through
> > a
> > > property assignment I'm assigning each button a list box and each list
> box
> > > I'm assigning a label control showing whether the listbox items were
> > > selected are not. I assume since the button has control over the
> listbox,
> > > doing it in this manner allows the same functionality for all buttons
> > > derived from clsButton. All the button does is toggles the visible
> > property
> > > showing it's assigned list box control and as Items are selected in
the
> > > listbox the label displays text of some kind. Thanks you for taking
the
> > > time, sorry so verbose.
> > >
> > > Code from User Control:
> > > Private Sub IntitializeCtls()
> > >
> > > Me.ListBox1.uLabel = Me.Label1
> > >
> > > Me.ListBox2.uLabel = Me.Label2
> > >
> > > Me.ListBox3.uLabel = Me.Label3
> > >
> > > Me.Button1.uListBox = Me.ListBox1
> > >
> > > Me.Button3.uListBox = Me.ListBox3
> > >
> > > Me.Button2.uListBox = Me.ListBox2
> > >
> > > End Sub
> > >
> > >
> > > CLASS CODE:
> > >
> > > Imports System.Windows.Forms
> > > Public Class clsButton
> > >
> > > Inherits Windows.Forms.Button
> > >
> > > Private _lst As ListBox
> > >
> > > Public Property uListBox() As ListBox
> > >
> > > Get
> > >
> > > Return _lst
> > >
> > > End Get
> > >
> > > Set(ByVal Value As ListBox)
> > >
> > > _lst = Value
> > >
> > > End Set
> > >
> > > End Property
> > >
> > >
> > >
> > > Public Sub New()
> > >
> > > MyBase.New()
> > >
> > > RemoveHandler Me.Click, AddressOf Button_click
> > >
> > > AddHandler Me.Click, AddressOf Button_click
> > >
> > > End Sub
> > >
> > > Private Sub Button_click(ByVal sender As System.Object, ByVal e As
> > > System.EventArgs)
> > >
> > > Me.uListBox.Visible = True
> > >
> > > Me.uListBox.BringToFront()
> > >
> > > If Me.uListBox.Visible Then
> > >
> > > Me.uLabel.Visible = True
> > >
> > > Else
> > >
> > > Me.uLabel.Visible = False
> > >
> > > End If
> > >
> > > End Sub
> > >
> > > End Class
> > >
> > > Public Class clsList
> > >
> > > Inherits Windows.Forms.ListBox
> > >
> > > Private _lbl As Label
> > >
> > > Public Property uLabel() As Label
> > >
> > > Get
> > >
> > > Return _lbl
> > >
> > > End Get
> > >
> > > Set(ByVal Value As Label)
> > >
> > > _lbl = Value
> > >
> > > End Set
> > >
> > > End Property
> > >
> > > Public Sub New()
> > >
> > > MyBase.New()
> > >
> > > MyBase.SelectionMode = SelectionMode.MultiSimple
> > >
> > > RemoveHandler Me.Click, AddressOf clsList_Click
> > >
> > > AddHandler Me.Click, AddressOf clsList_Click
> > >
> > > End Sub
> > >
> > > Private Sub clsList_Click(ByVal sender As Object, ByVal e As
> > > System.EventArgs) Handles MyBase.Click
> > >
> > > Me.uLabel.Text = "Filtered"
> > >
> > > End Sub
> > >
> > > End Class
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > > "Tim Wilson" <TIM(UNDERSCORE)WILSON(AT)ROGERS(PERIOD)COM> wrote in
> message
> > > news:eGttywCQEHA.808@tk2msftngp13.phx.gbl...
> > > > Sure, I'll answer the question here though, and if you wish you can
> post
> > a
> > > > follow up to your thread in that newsgroup with this reply. I don't
> > > usually
> > > > read too many threads in the "microsoft.public.dotnet.languages.vb"
> > > > newsgroup so I might not see any further replies if I post it there.
> > After
> > > > reading through your post I have one initial question, do you know
the
> > > > number of ListBox's, Button's, and Label's that are going to be in
the
> > > > UserControl or do you want this left up to the end-developer? If you
> > know
> > > > this ahead of time then you probably don't need your custom Button
> class
> > > and
> > > > your custom ListBox class. Just put all the logic to tie everything
> > > together
> > > > in the UserControl iteself.
> > > >
> > > > --
> > > > Tim Wilson
> > > > .Net Compact Framework MVP
> > > > {cf147fdf-893d-4a88-b258-22f68a3dbc6a}
> > > > "Willie Neil" <kixman@excite.com> wrote in message
> > > > news:elvU0fCQEHA.1388@TK2MSFTNGP09.phx.gbl...
> > > > > Tim thanks, I will try your solutions. I do however have another
> > > question
> > > > > that I posted in the microsoft.public.dotnet.languages.vb new
groups
> > in
> > > > > regards to coding some classes. Since you've been helpful can I
> > trouble
> > > > you
> > > > > for your opinion on this question please? The post is titled:
> "Advice
> > on
> > > > > coding my classes". Tim what can I say, thanks for the help.
> > > > >
> > > > >
> > > > > -Will
> > > > >
> > > > >
> > > > > "Tim Wilson" <TIM(UNDERSCORE)WILSON(AT)ROGERS(PERIOD)COM> wrote in
> > > message
> > > > > news:OPVq0ECQEHA.3380@TK2MSFTNGP11.phx.gbl...
> > > > > > Ok, now I think that I have all the information. Yes, when
> selecting
> > > > items
> > > > > > at startup it appears as if the items will not be selected
> properly
> > > when
> > > > > the
> > > > > > visibility is set to False through the designer. This obviously
> has
> > > > > > something to do with the placement of the ".Visisble = False"
> > > statement.
> > > > I
> > > > > > haven't done too much digging to confirm what causes this
though.
> > > > However,
> > > > > > if you set the ListBox's visibility to False in the Load event
and
> > > then
> > > > > > filled it, it should work.
> > > > > >
> > > > > > Private Sub Form1_Load(ByVal sender As Object, ByVal e As
> > > > > System.EventArgs)
> > > > > > Handles MyBase.Load
> > > > > > Me.ListBox1.Visible = False
> > > > > > FillMyList(Me.ListBox1)
> > > > > > End Sub
> > > > > >
> > > > > > Private Sub Button1_Click(ByVal sender As System.Object, ByVal e
> As
> > > > > > System.EventArgs) Handles Button1.Click
> > > > > > Me.ListBox1.Visible = Not Me.ListBox1.Visible
> > > > > > End Sub
> > > > > >
> > > > > > Private Sub FillMyList(ByRef list As ListBox)
> > > > > > Dim i As Integer
> > > > > > For i = 0 To 10
> > > > > > list.SetSelected(list.Items.Add("Line " & i), True)
> > > > > > Next
> > > > > > End Sub
> > > > > >
> > > > > > Alternatively, if you are trying to optimize the application
> startup
> > > > then
> > > > > > you could always select the items in the ListBox "on demand" the
> > first
> > > > > time,
> > > > > > only, when the user selects the Button to show the ListBox. I'm
> not
> > > > > exactly
> > > > > > sure how this is being used in your application but if there is
a
> > > chance
> > > > > > that the user will not click the Button then selecting all the
> items
> > > in
> > > > > the
> > > > > > ListBox might not always be necessary. In this case you could do
> > > > something
> > > > > > similar to the following.
> > > > > >
> > > > > > Private Sub Button1_Click(ByVal sender As System.Object, ByVal e
> As
> > > > > > System.EventArgs) Handles Button1.Click
> > > > > > If (Me.ListBox1.Tag = Nothing) Then
> > > > > > FillMyList(Me.ListBox1)
> > > > > > Me.ListBox1.Tag = True
> > > > > > End If
> > > > > > Me.ListBox1.Visible = Not Me.ListBox1.Visible
> > > > > > End Sub
> > > > > >
> > > > > > Private Sub Form1_Load(ByVal sender As Object, ByVal e As
> > > > > System.EventArgs)
> > > > > > Handles MyBase.Load
> > > > > > Me.ListBox1.Visible = False
> > > > > > End Sub
> > > > > >
> > > > > > Private Sub FillMyList(ByRef list As ListBox)
> > > > > > Dim i As Integer
> > > > > > For i = 0 To 10
> > > > > > list.SetSelected(list.Items.Add("Line " & i), True)
> > > > > > Next
> > > > > > End Sub
> > > > > >
> > > > > > --
> > > > > > Tim Wilson
> > > > > > .Net Compact Framework MVP
> > > > > > {cf147fdf-893d-4a88-b258-22f68a3dbc6a}
> > > > > > "Maggie Adams" <kixman@excite.com> wrote in message
> > > > > > news:%23OQnowBQEHA.620@TK2MSFTNGP10.phx.gbl...
> > > > > > > Thanks for the reply, but none of my items are getting
selected
> as
> > > it
> > > > > > should
> > > > > > > and yes the list controls is MultiSimple. Not sure why. Now
I'm
> > not
> > > > > making
> > > > > > > the list box visible until a button is clicked, I don't want
to
> > > select
> > > > > the
> > > > > > > items on the button click, cause if the user makes changes I
> would
> > > > like
> > > > > to
> > > > > > > preserve these changes even if the list box is toggle visible
> > false.
> > > > But
> > > > > > > when I first load the form I would like the items to be all
> > > selected.
> > > > > Any
> > > > > > > advice is greatly appreciated.
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > "Tim Wilson" <TIM(UNDERSCORE)WILSON(AT)ROGERS(PERIOD)COM>
wrote
> in
> > > > > message
> > > > > > > news:ujy2YsBQEHA.1432@TK2MSFTNGP09.phx.gbl...
> > > > > > > > That code also works fine for me. You want to add the item
and
> > > then
> > > > > > select
> > > > > > > > it right away, correct? The code that you posted adds eleven
> > items
> > > > to
> > > > > > the
> > > > > > > > ListBox (ListBox1) and selects (highlights) them all,
assuming
> > > that
> > > > > the
> > > > > > > > SelectionMode property is Multi* (MultiSimple,
MultiExtended).
> > > > > > > >
> > > > > > > > --
> > > > > > > > Tim Wilson
> > > > > > > > .Net Compact Framework MVP
> > > > > > > > {cf147fdf-893d-4a88-b258-22f68a3dbc6a}
> > > > > > > > "Willie Neal" <kixman@excite.com> wrote in message
> > > > > > > > news:eORCpZBQEHA.3420@TK2MSFTNGP11.phx.gbl...
> > > > > > > > > I should have been more clear, when the box is first
> populated
> > I
> > > > > would
> > > > > > > > like
> > > > > > > > > all items selected. This does not seem to work any ideas.
> > > > > > > > >
> > > > > > > > > Private Sub fillList1()
> > > > > > > > >
> > > > > > > > > With Me.ListBox1
> > > > > > > > >
> > > > > > > > > Dim i As Integer
> > > > > > > > >
> > > > > > > > > For i = 0 To 10
> > > > > > > > >
> > > > > > > > > Me.ListBox1.Items.Add("Line " & i)
> > > > > > > > >
> > > > > > > > > Me.ListBox1.SetSelected(i, True)
> > > > > > > > >
> > > > > > > > > Next
> > > > > > > > >
> > > > > > > > > End With
> > > > > > > > >
> > > > > > > > > End Sub
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > "Tim Wilson" <TIM(UNDERSCORE)WILSON(AT)ROGERS(PERIOD)COM>
> > wrote
> > > in
> > > > > > > message
> > > > > > > > > news:ORk$zTBQEHA.2468@TK2MSFTNGP11.phx.gbl...
> > > > > > > > > > The code that you posted works fine for me.
> > > > > > > > > >
> > > > > > > > > > --
> > > > > > > > > > Tim Wilson
> > > > > > > > > > .Net Compact Framework MVP
> > > > > > > > > > {cf147fdf-893d-4a88-b258-22f68a3dbc6a}
> > > > > > > > > > "Willie Neal" <kixman@excite.com> wrote in message
> > > > > > > > > > news:uxQMv8AQEHA.628@TK2MSFTNGP11.phx.gbl...
> > > > > > > > > > > I'm trying to select all item in a list box control
but
> to
> > > no
> > > > > > avail.
> > > > > > > > Any
> > > > > > > > > > > ideas. My list box is initialized as such:
> > > > > > > > > > > MyBase.SelectionMode = SelectionMode.MultiSimple
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > Private Sub SelectAll(ByVal lst As ListBox)
> > > > > > > > > > >
> > > > > > > > > > > Dim i As Integer
> > > > > > > > > > >
> > > > > > > > > > > For i = 0 To lst.Items.Count - 1
> > > > > > > > > > >
> > > > > > > > > > > lst.SetSelected(i, True)
> > > > > > > > > > >
> > > > > > > > > > > Next
> > > > > > > > > > >
> > > > > > > > > > > End Sub
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > > >
> > > > > >
> > > > > >
> > > > >
> > > > >
> > > >
> > > >
> > >
> > >
> >
> >
>
>
begin 666 VB.zip
M4$L#!!0````(`/ADMS#I94I":@$``!4'```2````7U9"3F5T+G9B<')O:BYU
M<V5R[97/3H- $,;O)GT'T@<H-1YZ09/^34RJ1;#5ZQ:FL J[S>R@Z=N[4&@H
M4M<:C]T;N[]OV'SS9=99<96QQ*<LY-)%^08!W76N++V<_=&(*1Y8<Z9HL06Q
M`E1<"NO6Z@YZU_W>37\PZ%JEHE"-,IZ$M8UBTP<B+B)E>; !!!& RRC.JQR)
M#_Q8B@V/OA_DZY&ED"LGL,ZB;CLS%6R=P-!W"RC2O\X5&Y8H,"E>SY0L1<H$
MBR \4^<_S7W #\!?ZSQ()4&![TN$9R@>6!!S41AW`O:)(0T#*MM;AN%'&*,L
M!4'*5-75_A@9E!&RU(0MO;D)>9'XKNV<<-3WE[@S\ISB^VE.$69M5MI_C:@'
M"3!SY"XAO83TWT/JV-70K4]GNSF>G07%@*6/E>*XTEAN=R4P`:4!EML_DTD(
MV'+M&KX4P6'.GX06VZJ;_094`BL.G[5FSW@"JIU\QDQ1LU)EC&/7'C2]5WTW
MW[[.U1=02P,$% ````@`^&2W,,2'XZ,!"P```"H```H```!?5D).970N<W5O
M[5EI;!O'%1Y2U'W&5]PT=FG'5FQ'HDB=EBVW$4DQ5BS*BB1+KA.76))+>:4E
MEU@N)0MV&A5.42- D\)N"R<H4!4]$"AM>OSI\2-U`*- ?Q1Q`Z1%@#1H@+1Q
MVP"642!R5-CJ]V9WI:5.2E:;&/ C/LZQL_-FWKSWYLWLU3?N^^OW?O[ >VP>
M?9[EL-LSA2S/4F<SP*F",;M1OCTS,V-6S]RCNXIN`0YC#7.1TGKG`P5 (5 ,
M% &E0(G1K@QIN:X"[#Y@`[#1>':/[B[J9@I^&G.R-I9 JK)1MAK:PG)G;;YX
MA;:3A]]]_OU'K]ARJ'"_7M<%C@H;9.W@'D.NC9U>KHL%M 5>R#J?E=_0J<)(
M>YG 4FR(=3 )J<:.X5_$F,SZU+*],+:+V6UD/V0WV?(GGUE@Y-M9'^MA0>;'
M3P0WB0U $C2"'OX_C)H(<DO1/O G/TPVFBU_J[^F/('6A.9!/L!EJ2=0W[2V
M9/_D!ZSV;[;9:,GO1OY)8"OP&> !X+/ @\ V8#OP.<!IO+-S'K]*E!\&]@![
M&<V1L4> *J :> *H`=R !Z@%ZH!ZH %H!)J _4 S< `X"+0`AQCM;8Q]`7@4
M: 6\@ _P`VU `'@,.,QH?1A['#@"= !!H!,XRDAW]7%W(^UAI$L,^L.PHHSU
M`\>!+P(GV-S\/FVDWLCYV0>[+W1,_/)DH]+R[W-LE33I*URYT3)$>K3A:%),
M=+;U^@).GY+05$7F5E?1WK6O7U&'4CN<)]J[G'V-O#(XZCR6$M79EF1,]6?:
M?,U-@<:Z0+7;XVFJKG?[ZZJ]OCI_=5.#K\X3J&VH;79[GCX;ZO-VBIIK.)Q4
ME4'T1!T9_:#2SDHSJFS,V3.:TL2XJU]*1)61E"N@J/&4R]*$Z<9,@C0#(P=E
MMALO=HLQ68QHDI)PM:928CPLCW8*<9$,*3=$N:+9>&J-1.^3';1!RY]B(<.+
M#,&3*2P)[4[BE^)/^J#GG7BJH:03V74[M)9V`)F%\7\Z2Z\S1T[X'],7D!A6
M:D]$_NJKAMK0>,,L#:\WP#GWP^]JX'V*SV-E<J[!_Y.OWF3DY_/W`B+&, 2Y
M*9 "[8G+C6,/YD_QTFKX4_L6(S^?/^U_)/DD^$H806(%*50:\Z?])%O^!6QN
M_[E3_3.)]H_GF:F'0:X_M+.G@!B/+_KX#IN&;&64>E"79E$^1R=VG$Z\V8M<
M+;39#6]NQB,DDR0@\7W9"8U6N79(_%F$:W,?TB:DQ)'**=Z&M/P[G_"(2)=E
M%@>_B&5<9OG3,+[Y^A?@.A\%-P6UZHI>`/IG([TC<\Y6_ZCMWPW%6YK_*.04
MYIYI.:I<@_W3F64I^P_B/PZN% ?W&V-1V,B25EB%^5-?%!-ERY_.2[U&GNQ=
M7[,$7V>:O\Q]GQD9ZVOFX[Z 6F9ZI /@3S'9:N9/XW48^<7T4]=:<Y?XWY-]
MG>O^GY3+;*3)45ZXGUW-2=N+:#5VV5F.+6?,VO3KQW\T,MXR1-%MI<-V!DOO
M8\VY6(GKK_WD70+U1'YTW/+2'UZIWV ^(Z)]8X_E&>ER$/HK\_V"?(3 O6 :
M/L#4((IZ^9D+43#%R 9K>( `]%_!FJ>A`[IF676^BWLC:=F=R+T&^]L,_,M0
MP.7XFV<Q/]=(8=&^7-!_FAN%5-GRW\+T6)^HAWN8].P<=3N+\7,8^3]A]LGB
M5+6&^=/1]X2AN$?A?0:Q@@/@M92-+T?;,7]2#3JW9<M_!]//*$2-V#D".%6Y
M<9+R0".JH2%N2*<..2]&5(=\->H;>-Z#MK7(UT)[Z(VG(?\H5BI3[X[RZ,6J
M=10A+JZ;NG>CM@6,+,.JFW<ZMH/\I+>>/;I8-T8L\PB1=//L[#[L@LYX9V-7
M+]I$,R30LNXCF=NYLA\%1?RM7.(28GP1?<?POBY]TJ"Y/@]F.7_JN:RSYYW7
MKI<$G]M]Z;?V[VZ^R5V5^OO'6_=>&CSR\I_'O])]^U<37$MIE[2>1!@[=_4W
M-XZ?W_GKMA\?>"MR:>KT-CK0KV+^3SC)!XG&Z2?*K*<?P7+Z&4;;!#-//V;4
MZV/'WRCBN87SSY+68S'/9@C%Q0>;- SD["HG%^/!2QS]ZOV<Q>\,>/DX+QI!
M$W+5/$6M#ZM):YGBT:8(6UZ=%]H%_T?Q#.U#V?H?Z_V3Z0<H#DIB+#1X_?9+
MXWJ\TAETEQ%_TOU3MOP?8OH=$-$QS)*X"ER\T7E^:64?O-/@OQK_;YW__/O'
M'MBMPKUDA.]*V<A_M?QWL<7N'_69)[GT-42_7EX>,?;@I6C?&OC?SK)=MK1:
M_NM-=S7_:NZS_-PG[,?/Q[T6'2E;`=JNZ#F5ZY$G7Q4P/ QCGEH*9J;M1LQ;
MN7S,N\FVGAO@>OK,.-0];2AZQ'!_*@\,L_*A=R+#4%<Z+$N1(^)H^5RV5QD2
M$R4A7UK6TJK8GH@IA2&?$A6]0DHL"/6):DI2$F6APT+J5*L\H*B2=BJ^-;,8
M4,P[R@VA'B2)`;IN1-]=@J1N-OOP*?&DH$EA29:TT;Q00!8&4N6\H[GW;?GY
MS);#*=]N+R@SKC:-'AJ,(AK'I(&T*E@O.R4Q-7OOF3&ZM;WUT,);U053:\FV
MY\4DL @#Z[4M%X\]CR+W4J.E7TQ)`XE"BH**GL%?'AUK3L0D63Q04U,3.5 S
M(B426HU@]%(S($1J4OJK4?YJC<?E=C6XW6Z7.Q0*N^MB#;&FF,<3;7 +=4)F
M4U=4E@LI2G%,P]#7)D(*?/*'!3DMAD*LP %;M7V,SJ8-SU'DN(G<'<DPDP.5
M'%/H,QO1+GRUJ-P\#]MIUZ+Q?I.D3$N <G=/JX=N,FSXY?]QNO_*JV]/?M_U
M[$3YJ[=*_W'MUN"'+WSM/SG#\KF.%R]L_\7!#UYZ^ZUW7O_+2V\V;MQA_T:Q
MVO+QV+>>N?+>2,4+O\L?.;KW6FW9A7_F?OC^M1V7?WC]VHWH4QTE%U]_Y<4]
M)\-5$V+5MND_'=).*M5_N_'E+_VT_,JW#U4^^-P&G[C5&;]\L3YXXLV+#EJ9
M><;!/PR&@L*@HB*1$I1XTY(<+0QUB\,2-2&I%X#,B/3\1CTM7O!AH80FW9.A
M=U5.@]&A.2VJ<AINXU!"3&NJ(%<Y,_W*H?E:5D(R[C4[5@6H[, Z]4P"Z-![
M7F./34U"0Z2AT=-<5R^Z]S?GDC0Z%_TLHXO$^G7&KT32<3&AZ4]$]1'+LUY%
MD</*Z7;T0Y\#"GI'DR+_-&/5RF*_E$K*`L_G>24M+B3S.I3(D!C-"TBR)JHV
M^OCKV)PI.Y?>DJ1JJYTUI7A226 L0;AQV67AKG?4JFFJ%$YKXI,G'4R_U<HC
MA=ID?++*^#!5E$=#SOQ854@?%6R%%-;E4G;Q,7%S] N:D&^GX17236P^#P5-
M+7.X5SMB&F\Y=?01#=P;_,CH:9CI-U45!FRS=XZ,72G383X#P?^,S; QI&-C
M,V,HCZ$\AO+ERY>1XAFL@?$?=U8S1H9'/1,3$^/4"=*7;YX_/X9"P=3(R-CX
MR,AIGB99`9I-CD\E\1C/;R9O)I-X:69R9I+2)%ZF="HYQ>OG/Q\!(?V!GV@N
M-:FXW ][CH@9WR_+?2I$*<C.;C&IJ!JOX\*G3-'Q8(>S)W)*C/-BJ5\29&7
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
MDI_%&GR!#X=+&#?6TDNAY$\\,ZO2:-2^=9EZJ^ =!X6+]1>']LQH;XUJ=<E
MIX6Q9%(?9GZMT"5S4\+$;LN&QGNSNB<^QZ6_)YS*O/!=C*&I=.:::TPQ]4+G
M"N.C%X? OPM,SI2D2W<JHC[S!3R'EP^K/R/[#_J:2C*I\W+)(,MBCMH0<,?-
MH"RI!L)3\4(!/NB,"Q+,G@52S35:*S-TD$E7&H?@#:0*A8:J##5(6WY!2>>9
M_"MK/-V+RC0AM#*"$IUT?KC@H]I7/%Q_%:KQ+'4.`P=#8]A[R&&\W-#-"]0L
M9.FE\1!W@1V,'8L*,NO?V?7N#)(V8' ;TAPO^7AW:EJO->SBWJ-E^B\]&%B0
MU]3SL''-03='75->T$"H9,RE$C(`.<;E9/[A#6<"2Z.4N>'\2VM2S"J+_SP(
M[&GL:7@T+!!6)I-+29 JT/GX^ `P<&1 $\L!M0;I-V!AB#&3WH19>]OD-)(B
MU\9YF1+?N*CR'*GWL9P7UE1Y$???0\L)]\ C$THC'Q[M!JI?J9L'E3<S6@3(
M=9H1K!F>-KH53%/"FOB4INBX&X,P*7]!G)R\/H23XU<MZ%*LV#P*UX@:X1QO
M_:9PNS4.^%QOPGK!M0W ^X9*O[-L-BS.:7"&YO:(=3Q(9#P27LS%0N&6X39O
MN]/;V_53I]NYBJ,=@^@A%/6FJE:ZWAK1F)B*#F&^+C'YA)[_XZ@A<.8M\1?U
M'_0RY<\$N^ K3!;?:2'$??@5',)1]/O_02^?`CI^"NCD*:#3!A36^_U*[$BV
M6X>/X</[!U!+`P04````" #@8[<PPA+74\T&``#K+ ``$@```$UY57-E<D-O
M;G1R;VPN<F5S>-U:;6_;-A#^/F#_@1.&O0"Q;,=-FQIVBL9INV!).M3>6F#8
M!TJF;:X4J9)4;/?7[_AFRV^MW298%7^P)?%X=\_=\3DR4>?9+&/HEDA%!>]&
MS;@1(<)3,:1\W(T*/:J=1L_.OO^N(X70\(M0YX=:#9D+A*YI*H42(XW>$/4.
M]=,)R; ?<]]_.<6H&;?*CP<3@G)),RSG:"PP4TB,D)Y0A49"9E@CN-("8<;$
M%&&D:)8S@MY=7X5QIT9/G&@FE&9S-"DRS)$D>(@31F)K94PXD5@;'S ?HAR#
M/WSLS!&OYA9+*@J%AEACI.<Y40A+@H:"$Y"2HAA/K/0`AGJ"0[ TD2AE6"D0
M=3K@6J04:S)$4ZJ=_%)?7 ;_8H8-G';Y61S'" ]%S(FN&Y@3``&A0S\AY8(*
M`DZR(XERHXCCC'0CN,]H1HR=Z$R3F:YG(2TU&)MUZHL99SM4^/1'9Y"F/<2E
MO8G.^G.E219#[D4A4T!IJB#<O;%"1\@+O:5\**8J?@GY4T<&SAZ&II+JSQIZ
M:X4.,V0SXVS<P'<3`F>*SY32'#$!!:*TA#KIU(WDEED]P81L1C:[W<B;OI!X
M"I-B.[APR#^-SLY9078J/*<ZPSEH#+GL1CC/&4UM[=9GM45238W$(OF7I#I.
M*(<E%"=8D<>/(J_6?/YVCZPVMYZA,!61%#/Z$2[CFQ<#]%*"Z:F0[Y%3]X]W
M:Y>/EZG@NS";L0W(!X*9:X*EQ/OCL3F"!9]#@@G7Y@8CHP99/98LPE+?&W'Y
MLV K22PE8#Y'O,@2J%!0&RWJ*D(2:L[Q$01"8\H#:3D5)H#U6PP5`!1$Y1HA
MX'3BR *TA/G 07;6D>4M.]4QFI$!QA1E04^'$&DDY"+JL64LD)/@:"[XT)&J
M"X6E+^>Q*O)<R 6I&@IQKJ:6["R![^9!+-,)K,!4%Q(L.AT]SXU6/?#HSTLC
M=J&96):JT2!46L@R>3I%`0I(ZY68F4@L!D%CH6 RY+NDU:58N0!JPI@J*=ZD
M*C2!P$)\AB0WF)6VTKXVP9[CA[2 8'+3;;@($8. $:ZH[3E .Q#A,;TE?.F?
M4>0BFA6@-[%P$$XA,Z;/LOE*+[@14, U=.CRMST3#&UV2/-TDS$AU(R%_@AE
M!O )I-1*.X9'*;13I\<\L-7O5Y,SHA"#.$&H$P*->B4_`7O[8!QNO@L70FV;
M:2=7BMXBR;9>5A=N.]!0WXM9V[8A8 W 57SN[+F?Q?-U+;9L)I#'P#?6E@]V
MV"-].6@E<'[GD-\40(,9V0V];ZR:KZ^&_25Y7F/XPW!3;MFKQ._KKA?*M0`?
MC)[(@/5@M5X##A:OT-;7)+M6<QOAF1JV_?:,#F%;!#OD",%VFJMNY"_:(-.-
M)EKG[7I].IW&TU8LY+A^W&@TS4;/;9F#<*9,%X!MM^1>L5H&LI:*K UR-2<5
MNJ/U@C"2`<ZP/[...+'VI;J GS[1W4C+@BR;JIT(.J%)S4QH2NW/#4T$38&Q
M\.QU"JP'F J>B()#<**55KG%@[*#JTJWVBL)*/*A@'!OCFZU8TLG[$CL=+LE
M,!L/'KQN+$+QVK M9G#*B5!]/P/@K[D[W,3Q-A.=^B<A6ONP)B5-"JAQYX'Y
MWFI^'TQ;-=J3PAX:6WMK7)P_]M#Z:%.K"\NNTG"C/BV?*[SECJQBU7>7I0%[
M(1.)#P6%'=5=A=O/LJ2PY) =JC:5>'R6U-R#3YYCO1H;X>V'6C?D5*^>[W8?
M;U>TVK/N`5KD2EUY)5]Q!/9_&NDVXT9\TF@TXL81ZA7,;*.[G!1:8G:$_B@2
M:*J_D_E O">\FSQY@D_2D\?-IZU'I''Z]" `X32]/X!/'ZWO'4#IZ'D%^\QS
M,6O&%V2$P09T=#JBX,#:<;0'O?M"9/$U,8>TYV'!J(#A;KQ>B^%S..MD"9NO
M@ED<*;?BN!+I>[,X5[P_%X(1#.?H3,'1@-'D7MQ]":='<HBO50WV>:&UX)6(
M=7"UXN4=8%1V>6(XR59C<3I/JTZ'#D6EW3^N3+D</XAR.:YX/ZI$O017'T0_
MJF[%^"U8]1=NP%&=;6^%B\:P9*LR7:GU(+I2J^)=J1+U$EQ]$%VINA7C&;+Z
M"S?@J$Y7JF[1_&C^\1\/))Y?83DFYGV1;SK@SM\*5(9SM,]Q/A"O)/U_G!W(
M8G]?S>M!U?#T!J[7YE_/_U1$]@374K"#ZOXW0L<3O0;ZDNO6\3U#/FWL7^^8
MCPL\)FM>OF(B6;Y.X-VYY"-QSY[_XCO,KX<L6.MHPM8Q?(NKMN(-U($P2[E/
M/Z['.[P9:(;6WPS\0L<;K=')Z,FHV1R>-' +KY?Y$3K=ZG2G;E]>_@]02P,$
M% ````@`]V2W,*F%:@T]!@``&!\``! ```!->55S97)#;VYT<F]L+G9BW5E;
M;]LV%'YV@?X'0GVHC65"+:5I.JP#<FT-Y&+87K,]%;)U;'.318VDDGJ_?B1%
M2I0L*8H78$,,)*;.]>,YAX<R.4[G$5Z@LRA@#%UO?V5 STC,*8E>OT+B,XK7
M0#%G:+IE'#;N'8Y#\L#<2T(WS"V)OW[U9@(K3&+D("V&I!@Z!X97,5"T`O$_
MX!"B!0D!.5)'.AEG(*;I'-W 0W^04>7G>GL:,' UM:"_G:TQ0XL@BI#XIO!7
MBJDP.]\BOH9Z[VZA/8HQQT&$_X8SLDE(##'/S/=Z!>LD202H@(L)%;XOXE#"
M-(]OK0`@<@^4XA 8"C%+" /$"5I$$,0H312NA?&&(LRX!C2FA,-"!N56&(A(
M$#(URDS)F)QGYOJGVZ]!I(WC>(5.&#HE1#JP(C9:6A*S-<0%2[-O"$?]' I#
M(R9):R$_J%&0GT+8-5@&92D9E]&RH%6?=1Z-=HYP4!_629>$FO#A>U%2%D89
M%UVM>7JO1;U%[DBF*L!*5WNZN9U=_"2GC98DBLB#C%I"R0+"E$+GVM+&1ER4
M9(SF@#8DQ$LLM%*5A^:B1$CKGA,4B\0HQ2W"W-)4BP5"S(DLXMXEQ2#B=8?Y
M^N)>3?A*5-,I^3ZT9EY>IUJ@5ODTY9S$S;H9O]YO,(>HQ:MD-RMZ>RAF8)HU
MV\!F,6CQVA(DA<C?&W"SYN. 6[SF@'_6_',<K&+".%Z(E0KS=+4".N60S-:4
MI*MU?_!+OEYD8VGH@[W>-;AY37V2/?DQ`%+#%%*+0CY;Y2&KGC;[.JRYM-=5
MVM1)9RRF.#K/5E?$D_"TBM?A:;=?PC--62(*Z"K8DE1G\:WZ9Q*94ZSDNB?Q
M8DVH\'(VVR;0[_=K/6524[Z-@+DSDJ!;6@^I)'@%2SY WZ1+^>FD,\&K-1\<
M/"Y9+5/WBF1[=3EBYS20+=T=$RQJ^_@`'>\HW@0;$$J.(3A5@:E8'_56):?O
M>8<'Z.CCCMU9,!_%(7P7JN^*;.A%8B=#DW9R\8RI>')8#:8N4?4.WUEQ-9HF
MK/K9J;"MZ RK+/C.JYJZE%7'*!6RHKR ,L[FT;6(WU?T\AI6CTZ9V:5^AT<5
MBU9^O I'I\?R967'V\F.]T*RXW7-SO#C846QE![/*3/W2(]GI^=]A6.GQ[/2
MH[?$W<ZSFZ#_OO-T"[;J/,/AAZINN?=X3H5M!>^PRBKU'CM\Y@VA5-^:]F*V
MT>XU7@0]5ZULI$6=&X&]-M)2NOQ*MRF>S0+P7TBW\;MFPG_G5Q1+W<9WRLP]
MNHUO9^"XPK&[C;_3;4KYT:3_8;?I%FS5;3SOJ*I;[C:^4V%;P?M0996ZC;_;
M;<KUK6DOIMMTKG$KZ+EJI=OX3E5@KVY32M=1D8_*R6B1%$T2\PS#?KXN!@U<
MG>@FM@'1R%=[>KOQ1K;IIZW&A^W&&]GF5X_AF^R4XF92]$AF?,\7;<W+-Y@)
ML'0#^H?M91 Q&*BS6NO0\(T<9X?/BJ4/E,>4)$#Y-C\@DT#4(8<\4[F=_P$+
M+IU\!O75FP!/:8RL^;CG`0^F)*4+D!+2C1:>`M<'LN(OA<*@@MVKMR%FK:2-
MK:FR)4<&:AM\[ZGPO6> [ST;?/^I\/UG@._O`;_VA*QR'2 Z`)KB6!B5=Q#R
ME-:YQPS/<204@#DHH( 8<'D',*,"(8Z55&CN0AX$&V^2:(MB@%"*<;):1:"D
M<E/9F?,24R8LX0W(\]_>3 GJ"7[-1>UU>("*-:O&UNI^7-VSU+U"W>NH[EOJ
M?J&NVIJU:$N!;K)ZNIW 4EV7R!QK_@'*R'/E0MV#J)&A1]*=DI<#A5I:<)7=
M2/4>HN]@-$F*C):H;]/,;8BHI\Q1OE]_P2&H9M93GM3N^BFS)X<_9,,O(/=%
M\:3>F2Y$WZJS-5V3AUU;1H@DIECE;4IC]'2FOYV)$OU3+PP&8ANCUN%QMD!D
MC"0;+(XZ<#ZA*S9 7X(X%#NUL>@JB_^^Z-J!>\\.W'L*\+9R;P?N/SMP_RG
MNR\T^XJQN%B\C<>!?,7:Q5=^AU-2!>2L^RDB"K(N!FA.J)Q\0$DJ/,NN9>W\
MJFV!^YD&R5K=38C]?B(0!;&8H7Y]'4/,I,16K@PU&1$)X3*7<W^KI?Y>2[W#
M(5^C']&PEJN7IF!70B6'ZB[\'U!+`0(4`!0````(`/ADMS#I94I":@$``!4'
M```2``````````$`( "V@0````!?5D).970N=F)P<F]J+G5S97)02P$"% `4
M````" #X9+<PQ(?CHP$+````*@``"@```````````"(`MH&:`0``7U9"3F5T
M+G-U;U!+`0(4`!0````(`+U>MS R#VD3C@,``.D1```-``````````$`( "V
M@<,,``!?5D).970N=F)P<F]J4$L!`A0`% ````@`=+TT,$:E5/93`0``@0,`
M``H``````````0`@`+:!?! ``%]60DYE="YS;&Y02P$"% `4````" !SO30P
M@\HKE^P!```4! ``#P`````````!`" `MH'W$0``07-S96UB;'E);F9O+G9B
M4$L!`A0`% ````@`J6*W,'7/#B@^!@``(1D```H``````````0`@`+:!$!0`
M`$9O<FTQ+G)E<WA02P$"% `4````" #Q9+<P)[0:*O,"``"%!P``" ``````
M```!`" `MH%V&@``1F]R;3$N=F)02P$"% `4````" #@8[<PPA+74\T&``#K
M+ ``$@`````````!`" `MH&/'0``37E5<V5R0V]N=')O;"YR97-X4$L!`A0`
M% ````@`]V2W,*F%:@T]!@``&!\``! ``````````0`@`+:!C"0``$UY57-E
A<D-O;G1R;VPN=F)02P4&``````D`"0`4`@``]RH`````
`
end
- Previous message: Nick Hird: "Remove Inherited Controls Properties?"
- In reply to: Willie Neil: "Re: Can't select Item in a list box"
- Next in thread: Tim Wilson: "Re: Can't select Item in a list box"
- Messages sorted by: [ date ] [ thread ]
Loading