Click here to Skip to main content
15,920,896 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: 2 Questions About Pointers Pin
MaNDROiD5-Nov-04 22:41
MaNDROiD5-Nov-04 22:41 
GeneralRe: 2 Questions About Pointers Pin
sacoskun5-Nov-04 23:54
sacoskun5-Nov-04 23:54 
GeneralReading Registry Pin
picasso25-Nov-04 16:49
picasso25-Nov-04 16:49 
GeneralRe: Reading Registry Pin
ThatsAlok5-Nov-04 17:30
ThatsAlok5-Nov-04 17:30 
Questionhow to find IP of internet radio Pin
don7cry5-Nov-04 14:18
don7cry5-Nov-04 14:18 
AnswerRe: how to find IP of internet radio Pin
Archer2826-Nov-04 5:39
Archer2826-Nov-04 5:39 
Generalreading a Device dependent bitmap from clipboard ! Pin
schumi19805-Nov-04 12:19
schumi19805-Nov-04 12:19 
GeneralRe: reading a Device dependent bitmap from clipboard ! Pin
John R. Shaw5-Nov-04 13:02
John R. Shaw5-Nov-04 13:02 
Call GetClipboardData(CF_BITMAP) or GetClipboardData(CF_DIB). You may want to call IsClipboardFormatAvailable(...) first it see if there is a bitmap available.

// something like this
HANDLE MyGetClipboardBitmap()
{
    HANDLE hClipBitmap = GetClipboardData(CF_BITMAP);
    if( hClipBitmap )
    {
        HANDLE hCopy = MyMakeCopy(hClipBitmap);
        return hCopy;
    }
    return NULL;
}


The above example did not call the OpenClipboard() or CloseClipboard(), which you need to call before trying to get anything from the clipboard.

The "Clipboard Functions" page in the MSDN library is kind of hard to locate, but it is there.

Good Luck!

INTP
GeneralSystemParametersInfo Pin
Archer2825-Nov-04 12:18
Archer2825-Nov-04 12:18 
GeneralRe: SystemParametersInfo Pin
Yulianto.5-Nov-04 18:23
Yulianto.5-Nov-04 18:23 
Generaltry/catch throw to ifstream error Pin
dbslon25-Nov-04 12:07
dbslon25-Nov-04 12:07 
GeneralRe: try/catch throw to ifstream error Pin
Andrew Walker5-Nov-04 14:29
Andrew Walker5-Nov-04 14:29 
Generalhelp:can't use mktyplib Pin
happycpp5-Nov-04 11:44
happycpp5-Nov-04 11:44 
Generalanothere thread call UpdateAllViews() Pin
LeeeNN5-Nov-04 11:05
LeeeNN5-Nov-04 11:05 
GeneralRe: anothere thread call UpdateAllViews() Pin
John R. Shaw5-Nov-04 12:17
John R. Shaw5-Nov-04 12:17 
GeneralRe: anothere thread call UpdateAllViews() Pin
LeeeNN5-Nov-04 12:35
LeeeNN5-Nov-04 12:35 
GeneralRe: anothere thread call UpdateAllViews() Pin
John R. Shaw5-Nov-04 14:04
John R. Shaw5-Nov-04 14:04 
GeneralRe: anothere thread call UpdateAllViews() Pin
Neville Franks6-Nov-04 0:09
Neville Franks6-Nov-04 0:09 
GeneralRe: anothere thread call UpdateAllViews() Pin
LeeeNN8-Nov-04 6:29
LeeeNN8-Nov-04 6:29 
GeneralLinking In Help File Pin
Grahamfff5-Nov-04 10:45
Grahamfff5-Nov-04 10:45 
GeneralDeleting a character in a text file Pin
Nikhil Wason5-Nov-04 9:29
Nikhil Wason5-Nov-04 9:29 
GeneralRe: Deleting a character in a text file Pin
John R. Shaw5-Nov-04 9:50
John R. Shaw5-Nov-04 9:50 
Questioncan i find out free disk space on a computer on network??? Pin
venadder5-Nov-04 8:35
venadder5-Nov-04 8:35 
GeneralDrawing in a Dialog Pin
sir kaber5-Nov-04 7:47
sir kaber5-Nov-04 7:47 
GeneralRe: Drawing in a Dialog Pin
John R. Shaw5-Nov-04 9:30
John R. Shaw5-Nov-04 9:30 

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.