Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Selected Item in a Listbox store item number to form val
Message
De
07/04/2004 11:10:21
 
 
À
07/04/2004 11:03:12
Cetin Basoz
Engineerica Inc.
Izmir, Turquie
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00892932
Message ID:
00892937
Vues:
22
This is too cool Cetin! It works great. Now I can select an item in the left listbox and copy it to the right listbox and there is not delay because I am not stepping through the listbox to determine which item is selected. Can't believe I forgot about listindex! Haven't used it in months....THANKS!
*--cmdAdd Button click
*--Adds an item selected in lstSource listbox to lstSelected listbox
THISFORM.LockScreen = .T.
nCnt = THIS.parent.lstSource.ListIndex
IF THIS.Parent.lstSource.Selected(nCnt)
   THIS.Parent.lstSelected.AddItem(THIS.Parent.lstSource.List(nCnt))
   THIS.Parent.lstSource.RemoveItem(nCnt)
ENDIF
THISFORM.LockScreen = .F.
>>When I click on an item in a listbox to select it, I am storing the value in the listbox to a variable. I would also like to store the listbox item number to a form property to determine which item was selected instead of stepping through the listbox as it is now (see code below). In other words, I do not allow multiselect on the listbox and I want to know what the 'nCnt' (see nCnt var below) value is when I click on an item. Is there anyway to determine that?
>>
>>
>>nCnt = 1
>>DO WHILE nCnt <= THIS.Parent.lstSource.ListCount
>>   IF THIS.Parent.lstSource.Selected(nCnt)
>>      THIS.Parent.lstSelected.AddItem(THIS.Parent.lstSource.List(nCnt))
>>      THIS.Parent.lstSource.RemoveItem(nCnt)
>>   ENDIF
>>ENDDO
>>
>
>Directly use ListIndex.
>Cetin
.·*´¨)
.·`TCH
(..·*

010000110101001101101000011000010111001001110000010011110111001001000010011101010111001101110100
"When the debate is lost, slander becomes the tool of the loser." - Socrates
Vita contingit, Vive cum eo. (Life Happens, Live With it.)
"Life is not measured by the number of breaths we take, but by the moments that take our breath away." -- author unknown
"De omnibus dubitandum"
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform