For the first time ever I have been given this message whilst compiling an Exe:
Error 477 in C:PBDLL60\WINAPI\COMMCTRL.INC (2965:5)
Line 2965: Sub Combo_GetEditSel(ByVal hComboBox As Long, lpStart As Long, lpEnd As Long)
the actual area in the Inc file area below:
' position of the first character after the last selected character
' in the high-order word.
'
Sub Combo_GetEditSel(ByVal hComboBox As Long, lpStart As Long, lpEnd As Long)
SendMessage hComboBox, %CB_GETEDITSEL, VarPtr(lpStart), VarPtr(lpEnd)
End Sub
What does one do? I have not modified the Inc file.
Error 477 in C:PBDLL60\WINAPI\COMMCTRL.INC (2965:5)
Line 2965: Sub Combo_GetEditSel(ByVal hComboBox As Long, lpStart As Long, lpEnd As Long)
the actual area in the Inc file area below:
' position of the first character after the last selected character
' in the high-order word.
'
Sub Combo_GetEditSel(ByVal hComboBox As Long, lpStart As Long, lpEnd As Long)
SendMessage hComboBox, %CB_GETEDITSEL, VarPtr(lpStart), VarPtr(lpEnd)
End Sub
What does one do? I have not modified the Inc file.
Comment