Herzlich Willkommen, lieber Gast!
  Sie befinden sich hier:

  Forum » C / C++ (WinAPI, Konsole) » Icon in Dialog

Forum | Hilfe | Team | Links | Impressum | > Suche < | Mitglieder | Registrieren | Einloggen
  Quicklinks: MSDN-Online || STL || clib Reference Grundlagen || Literatur || E-Books || Zubehör || > F.A.Q. < || Downloads   

Autor Thread - Seiten: > 1 <
000
17.08.2004, 11:29 Uhr
RedEagle



Ich möchte in meinem Fenster ein Icon Platzieren, das anzeigt, ob ich im Lan bin, oder nciht.
d.h. 2 Icons laden, und je nach zustand eins anzeigen.


C++:
//Ich kann ja das 2 mal machen (Icon1.ico und Icon2.ico)
hIcon1 = LoadImage (GetModuleHandle (NULL), "icons\\Icon1.ico",   IMAGE_ICON,0, 0,LR_DEFAULTCOLOR | LR_LOADFROMFILE);
hIcon2 = LoadImage (GetModuleHandle (NULL), "icons\\Icon2.ico",   IMAGE_ICON,0, 0,LR_DEFAULTCOLOR | LR_LOADFROMFILE);

//Und wie zeige ich die??


--
MFG RedEagle
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
001
17.08.2004, 17:15 Uhr
RedEagle



So, bin inzwischen soweit:

C++:
hIcon6 = LoadImage (GetModuleHandle (NULL), "icons\\Icon1.ico", IMAGE_ICON,0, 0,LR_DEFAULTCOLOR | LR_LOADFROMFILE);

hwndStatic   = CreateWindow("STATIC", "", WS_CHILD | WS_VISIBLE | BS_ICON, 405, 162, 32, 32, hwnd, NULL, (HINSTANCE) GetWindowLong (hwnd, GWL_HINSTANCE), NULL);

SendMessage (hwndStatic, BM_SETIMAGE, (WPARAM) IMAGE_ICON, (LPARAM)(HANDLE) hIcon6);



Es wird nur leider ein Leeres "Static-feld" angezeigt, ohne Icon drin/drauf
--
MFG RedEagle

Dieser Post wurde am 17.08.2004 um 17:15 Uhr von RedEagle editiert.
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
002
17.08.2004, 18:20 Uhr
~RedEagle
Gast


hat sich erledigt:

C++:
hIcon6 = LoadImage (GetModuleHandle (NULL), "icons\\Icon1.ico", IMAGE_ICON, 0, 0, LR_DEFAULTCOLOR | LR_LOADFROMFILE);

hwndStatic = CreateWindow("STATIC", "", WS_CHILD | WS_VISIBLE | SS_ICON, 405, 162, 32, 32, hwnd, NULL, (HINSTANCE) GetWindowLong (hwnd, GWL_HINSTANCE), NULL);

SendMessage (hwndStatic, STM_SETIMAGE, (WPARAM) IMAGE_ICON, (LPARAM)(HANDLE) hIcon6);

 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
003
18.08.2004, 12:32 Uhr
NotUsed



immer diese selbstgespräche
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
004
18.08.2004, 13:17 Uhr
RedEagle




--
MFG RedEagle
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
Seiten: > 1 <     [ C / C++ (WinAPI, Konsole) ]  


ThWBoard 2.73 FloSoft-Edition
© by Paul Baecher & Felix Gonschorek (www.thwboard.de)

Anpassungen des Forums
© by Flo-Soft (www.flo-soft.de)

Sie sind Besucher: