Buchempfehlung
Windows System Programming
Windows System Programming
Das Kompendium liefert viele interessante Informationen zur Windows-Programmierung auf Englisch. [Mehr Infos...]
FreeBASIC-Chat
Es sind Benutzer im FreeBASIC-Chat online.
(Stand:  )
FreeBASIC bei Twitter
Twitter FreeBASIC-Nachrichten jetzt auch über Twitter erhalten. Follow us!

fb:porticula NoPaste

Info
Info / Hilfe
Liste
Übersicht / Liste
Neu
Datei hochladen
Suche
Quellcode suchen
Download
Dateidownload

Ergänzung zum Combobox-Versuch

Uploader:AdministratorSebastian
Datum/Zeit:12.09.2009 17:29:07

Function WndProcDropDown(ByVal hWin As HWND,ByVal uMsg As UINT,ByVal wParam As WPARAM,ByVal lParam As LPARAM) As Integer
    'Return DefWindowProc(hWin,uMsg,wParam,lParam)
    Select Case uMsg
        Case WM_INITDIALOG
        SetWindowPos (hWin,HWND_NOTOPMOST,0,0,0,0,SWP_NOACTIVATE Or SWP_NOZORDER)

    End Select
    return 0
End Function