Click here to Skip to main content
15,917,632 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Reference question Pin
Jose Lamas Rios13-Aug-05 6:58
Jose Lamas Rios13-Aug-05 6:58 
GeneralRe: Reference question Pin
S. Senthil Kumar13-Aug-05 7:04
S. Senthil Kumar13-Aug-05 7:04 
GeneralRe: Reference question Pin
Jose Lamas Rios13-Aug-05 7:23
Jose Lamas Rios13-Aug-05 7:23 
GeneralRe: Reference question Pin
LiYS13-Aug-05 16:19
LiYS13-Aug-05 16:19 
GeneralRe: Reference question Pin
S. Senthil Kumar13-Aug-05 6:59
S. Senthil Kumar13-Aug-05 6:59 
Generalshow background image on a window Pin
Ankit Aneja12-Aug-05 23:46
Ankit Aneja12-Aug-05 23:46 
GeneralRe: show background image on a window Pin
ThatsAlok13-Aug-05 0:08
ThatsAlok13-Aug-05 0:08 
GeneralRe: show background image on a window Pin
Ankit Aneja13-Aug-05 3:01
Ankit Aneja13-Aug-05 3:01 
i am showing my data in Listcontrol and want to show image on background
of that listctrl behind my data
i found CListCtrl::GetBkImage
and example
// The pointer to my list view control.
extern CListCtrl* pmyListCtrl;
LVBKIMAGE bki;

// If no background image is set for the list view control use
// the Microsoft homepage image as the background image.
if (pmyListCtrl->GetBkImage(&bki) && (bki.ulFlags == LVBKIF_SOURCE_NONE))
{
pmyListCtrl->SetBkImage(
TEXT("http://www.microsoft.com/library/images/gifs/homepage/microsoft.gif"),
TRUE);
}

but not undestanding how to use this
also tried like this
void CXListCtrl:: SetBkImage( LVBKIMAGE* plvbkImage )
{
SetBkImage(
TEXT("http://www.microsoft.com/library/images/gifs/homepage/microsoft.gif"),
TRUE);

}


Ankit Aneja

GeneralRe: show background image on a window Pin
Achim Klein13-Aug-05 8:06
Achim Klein13-Aug-05 8:06 
GeneralRe: show background image on a window Pin
Ankit Aneja13-Aug-05 18:50
Ankit Aneja13-Aug-05 18:50 
GeneralRe: show background image on a window Pin
Jose Lamas Rios13-Aug-05 22:32
Jose Lamas Rios13-Aug-05 22:32 
GeneralRe: show background image on a window Pin
Ankit Aneja13-Aug-05 23:13
Ankit Aneja13-Aug-05 23:13 
GeneralRe: show background image on a window Pin
Achim Klein14-Aug-05 2:44
Achim Klein14-Aug-05 2:44 
GeneralSetThreadLocale() Pin
Ali Tavakol12-Aug-05 23:45
Ali Tavakol12-Aug-05 23:45 
GeneralProcess Priority Pin
Abd.Eskandari12-Aug-05 23:34
Abd.Eskandari12-Aug-05 23:34 
GeneralRe: Process Priority Pin
Bob Stanneveld13-Aug-05 6:07
Bob Stanneveld13-Aug-05 6:07 
GeneralRe: Process Priority Pin
S. Senthil Kumar13-Aug-05 7:01
S. Senthil Kumar13-Aug-05 7:01 
GeneralATL Pin
Pham van hoi12-Aug-05 22:35
Pham van hoi12-Aug-05 22:35 
GeneralSDI Doc/View, synchronizing splitter windows w/ DirectX Pin
dtowers2312-Aug-05 19:32
dtowers2312-Aug-05 19:32 
GeneralUnion member cast and MFC message handling Pin
LiYS12-Aug-05 18:25
LiYS12-Aug-05 18:25 
GeneralRe: Union member cast and MFC message handling Pin
Jose Lamas Rios12-Aug-05 18:39
Jose Lamas Rios12-Aug-05 18:39 
GeneralRe: Union member cast and MFC message handling Pin
LiYS12-Aug-05 20:12
LiYS12-Aug-05 20:12 
GeneralRe: Union member cast and MFC message handling Pin
PJ Arends12-Aug-05 22:12
professionalPJ Arends12-Aug-05 22:12 
GeneralRe: Union member cast and MFC message handling Pin
LiYS12-Aug-05 23:58
LiYS12-Aug-05 23:58 
GeneralRe: Union member cast and MFC message handling Pin
Tim Smith13-Aug-05 5:02
Tim Smith13-Aug-05 5:02 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.