SendMessage et ListBox

MrDogbert Messages postés 133 Date d'inscription jeudi 26 octobre 2000 Statut Membre Dernière intervention 20 juillet 2004 - 20 nov. 2002 à 13:14
miate Messages postés 16 Date d'inscription mercredi 20 novembre 2002 Statut Membre Dernière intervention 24 mai 2006 - 20 nov. 2002 à 17:21
Salut

Y a t il un moyen d'utiliser la fonction :

Private Declare Function SendMessage Lib "user32" Alias "SendMessageA" (ByVal hwnd As Long, ByVal wMsg As Long, ByVal wParam As Long, lParam As Any) As Long


sur une listbox ou bien une dirlistbox?

Merci d'avance

2 réponses

BasicInstinct Messages postés 1470 Date d'inscription mardi 5 février 2002 Statut Membre Dernière intervention 20 octobre 2014 12
20 nov. 2002 à 13:47
'Vla 1 exemple sur une listbox (cf API-guide)

' Code submitted by Alok Sathaye (alok_sathaye@rediffmail.com)
'
'Place a Listbox on the Form. Name it
'List1
'Paste this code in the Declarations module
Private Const DT_CALCRECT = &H400
Private Type RECT
Left As Long
Top As Long
Right As Long
Bottom As Long
End Type
Private Declare Function SendMessageLong Lib "user32" Alias _
"SendMessageA" (ByVal hwnd As Long, ByVal wMsg As Long, _
ByVal wParam As Long, ByVal lparam As Long) As Long
Private Declare Function DrawText Lib "user32" Alias _
"DrawTextA" (ByVal hdc As Long, ByVal lpStr As String, _
ByVal nCount As Long, lpRect As RECT, ByVal wFormat _
As Long) As Long
Public Function AutosizeListbox(List1 As ListBox) As Boolean
'Automatically sizes a list box to hold the longest item within it
Dim lngRet As Long
Dim rectCboText As RECT
Dim lngParentHDC As Long
Dim lngListCount As Long
Dim lngCounter As Long
Dim lngTempWidth As Long
Dim lngWidth As Long
Dim strSavedFont As String
Dim sngSavedSize As Single
Dim blnSavedBold As Boolean
Dim blnSavedItalic As Boolean
Dim blnSavedUnderline As Boolean
Dim blnFontSaved As Boolean
On Error GoTo ErrorHandler
'Grab the List1 handle and list count
lngParentHDC = List1.Parent.hdc
lngListCount = List1.ListCount If lngParentHDC 0 Or lngListCount 0 Then Exit Function
'Save List1 box fonts, etc. to the parent object (form), for testing lengths with the API
With List1.Parent
strSavedFont = .FontName
sngSavedSize = .FontSize
blnSavedBold = .FontBold
blnSavedItalic = .FontItalic
blnSavedUnderline = .FontUnderline
.FontName = List1.FontName
.FontSize = List1.FontSize
.FontBold = List1.FontBold
.FontItalic = List1.FontItalic
.FontUnderline = List1.FontItalic
End With

blnFontSaved = True
'Get the width of the widest item
For lngCounter = 0 To lngListCount
DrawText lngParentHDC, List1.List(lngCounter), -1, rectCboText, DT_CALCRECT
'Add 10 to the the number as a margin
lngTempWidth = rectCboText.Right - rectCboText.Left + 10

If (lngTempWidth > lngWidth) Then
lngWidth = lngTempWidth
End If
Next
lngWidth = (lngWidth) * Screen.TwipsPerPixelX
If lngWidth > Screen.Width - 20 Then lngWidth = Screen.Width - 20

'Set the width of our List1
List1.Width = lngWidth
AutosizeListbox = True
ErrorHandler:
On Error Resume Next
If blnFontSaved Then
With List1.Parent
.FontName = strSavedFont
.FontSize = sngSavedSize
.FontUnderline = blnSavedUnderline
.FontBold = blnSavedBold
.FontItalic = blnSavedItalic
End With
End If
End Function
'**************************
Private Sub Form_Load()
Dim x As Boolean
x = AutosizeListbox(List1)
End Sub
0
miate Messages postés 16 Date d'inscription mercredi 20 novembre 2002 Statut Membre Dernière intervention 24 mai 2006
20 nov. 2002 à 17:21
Oui cette fonction sert à tout
dans une listbox à rechercher dans la liste le texte frapper dans la sone de saisie.
dans un dirlistbox à parcourir plus vite un arbre
ex:
list1.listindex=sendmessage
(list1.hwnd,LB_FINDSTRING,-1,ByVal cstr
(list1.text))

voir aussi pour de plus ample info msdn library
et rechercher sendmessage
0
Rejoignez-nous