Click here to Skip to main content
16,010,553 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Getting current mouse position Pin
Tommy2k27-Jun-03 5:11
Tommy2k27-Jun-03 5:11 
GeneralRe: Getting current mouse position Pin
Ryan Binns27-Jun-03 5:17
Ryan Binns27-Jun-03 5:17 
Questionhow to acquire system icon(like my computer) through programming? Pin
Anonymous27-Jun-03 4:31
Anonymous27-Jun-03 4:31 
AnswerRe: how to acquire system icon(like my computer) through programming? Pin
Ryan Binns27-Jun-03 4:43
Ryan Binns27-Jun-03 4:43 
GeneralRe: how to acquire system icon(like my computer) through programming? Pin
tiplip27-Jun-03 17:29
tiplip27-Jun-03 17:29 
GeneralRe: how to acquire system icon(like my computer) through programming? Pin
Ryan Binns27-Jun-03 17:37
Ryan Binns27-Jun-03 17:37 
GeneralRe: how to acquire system icon(like my computer) through programming? Pin
tiplip27-Jun-03 19:35
tiplip27-Jun-03 19:35 
GeneralRe: how to acquire system icon(like my computer) through programming? Pin
Ryan Binns28-Jun-03 0:12
Ryan Binns28-Jun-03 0:12 
This is a program that compiles perfectly on my system (VC6, Oct02 SDK, WinXP):
#include "stdafx.h"
#define _WIN32_IE	0x0500
#include <shlobj.h>

int __stdcall WinMain(HINSTANCE hInst, HINSTANCE hPrevInst, LPSTR lpCmdLine, int nCmdShow)
{
   LPITEMIDLIST pidl;
   SHGetFolderLocation(NULL, CSIDL_DRIVES, NULL, NULL, &pidl);
   return 0;
}
It doesn't do actually anything useful so you'll need to fill in the rest from the last example I gave you.

Ryan

Being little and getting pushed around by big guys all my life I guess I compensate by pushing electrons and holes around. What a bully I am, but I do enjoy making subatomic particles hop at my bidding - Roger Wright (2nd April 2003, The Lounge)

Punctuality is only a virtue for those who aren't smart enough to think of good excuses for being late - John Nichol "Point Of Impact"

Generaladding variables to a struct that were read in from a file Pin
johnstonsk27-Jun-03 4:05
johnstonsk27-Jun-03 4:05 
GeneralRe: adding variables to a struct that were read in from a file Pin
Ryan Binns27-Jun-03 4:27
Ryan Binns27-Jun-03 4:27 
GeneralRe: adding variables to a struct that were read in from a file Pin
johnstonsk27-Jun-03 5:15
johnstonsk27-Jun-03 5:15 
GeneralRe: adding variables to a struct that were read in from a file Pin
Ryan Binns27-Jun-03 5:20
Ryan Binns27-Jun-03 5:20 
GeneralRe: adding variables to a struct that were read in from a file Pin
johnstonsk27-Jun-03 5:24
johnstonsk27-Jun-03 5:24 
GeneralRe: adding variables to a struct that were read in from a file Pin
Rage27-Jun-03 4:47
professionalRage27-Jun-03 4:47 
GeneralRe: adding variables to a struct that were read in from a file Pin
Ryan Binns27-Jun-03 4:59
Ryan Binns27-Jun-03 4:59 
GeneralRe: adding variables to a struct that were read in from a file Pin
John M. Drescher27-Jun-03 5:53
John M. Drescher27-Jun-03 5:53 
GeneralRe: adding variables to a struct that were read in from a file Pin
David Crow27-Jun-03 4:54
David Crow27-Jun-03 4:54 
GeneralRe: adding variables to a struct that were read in from a file Pin
johnstonsk27-Jun-03 5:18
johnstonsk27-Jun-03 5:18 
GeneralRe: adding variables to a struct that were read in from a file Pin
David Crow27-Jun-03 5:42
David Crow27-Jun-03 5:42 
GeneralRe: adding variables to a struct that were read in from a file Pin
Ryan Binns27-Jun-03 4:56
Ryan Binns27-Jun-03 4:56 
GeneralRe: adding variables to a struct that were read in from a file Pin
johnstonsk27-Jun-03 5:24
johnstonsk27-Jun-03 5:24 
GeneralRe: adding variables to a struct that were read in from a file Pin
Ryan Binns27-Jun-03 13:48
Ryan Binns27-Jun-03 13:48 
GeneralAbout SetIcon Pin
olinn27-Jun-03 3:56
olinn27-Jun-03 3:56 
GeneralRe: About SetIcon Pin
Rage27-Jun-03 4:25
professionalRage27-Jun-03 4:25 
Generalup and down arrows in a string. Pin
mcgahanfl27-Jun-03 3:29
mcgahanfl27-Jun-03 3:29 

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.