Click here to Skip to main content
15,913,941 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Memory Mapped Files: Hadling Big Files Pin
David Crow14-Oct-04 2:41
David Crow14-Oct-04 2:41 
GeneralAdding accelerator keys to Buttons and Toolbars Pin
ledallam14-Oct-04 1:39
ledallam14-Oct-04 1:39 
GeneralRe: Adding accelerator keys to Buttons and Toolbars Pin
Sujan Christo14-Oct-04 2:03
Sujan Christo14-Oct-04 2:03 
GeneralRe: Adding accelerator keys to Buttons and Toolbars Pin
ledallam14-Oct-04 18:21
ledallam14-Oct-04 18:21 
GeneralRegarding Modeless dialog Pin
balajeedurai14-Oct-04 1:14
balajeedurai14-Oct-04 1:14 
GeneralRe: Regarding Modeless dialog Pin
Sujan Christo14-Oct-04 2:06
Sujan Christo14-Oct-04 2:06 
GeneralRe: Regarding Modeless dialog Pin
balajeedurai14-Oct-04 2:49
balajeedurai14-Oct-04 2:49 
GeneralRe: Regarding Modeless dialog Pin
BlackDice14-Oct-04 6:21
BlackDice14-Oct-04 6:21 
here is a code snippet I found on this site a few weeks ago. I think the title of the article is something like "Dialog box tips & tricks". I haven't tried it yet, but I thought it may come in handy, so I put it in my Code Librarian:

//Attach foreground window thread
//to our thread
AttachThreadInput(
    GetWindowThreadProcessId(
        ::GetForegroundWindow(),NULL),
    GetCurrentThreadId(),TRUE);

//Do our stuff here ;-)
SetForegroundWindow();
SetFocus(); //Just playing safe

//Detach the attached thread
AttachThreadInput(
    GetWindowThreadProcessId(
        ::GetForegroundWindow(),NULL),
    GetCurrentThreadId(),FALSE);


Who are all these people and what are they doing in my house?...Me in 30 years, inside a grocery store

bdiamond Sleepy | :zzz:
QuestionAccept incoming TCP connections when logged off? Pin
One Stone14-Oct-04 0:35
One Stone14-Oct-04 0:35 
AnswerRe: Accept incoming TCP connections when logged off? Pin
Bob Stanneveld14-Oct-04 1:13
Bob Stanneveld14-Oct-04 1:13 
Generalpush-like check box Pin
jooo13-Oct-04 23:33
jooo13-Oct-04 23:33 
Generalsql server import /export access in vc++ code Pin
tgprakash13-Oct-04 23:21
tgprakash13-Oct-04 23:21 
GeneralRe: sql server import /export access in vc++ code Pin
rabih_kai13-Oct-04 23:38
rabih_kai13-Oct-04 23:38 
GeneralRe: sql server import /export access in vc++ code Pin
tgprakash14-Oct-04 1:28
tgprakash14-Oct-04 1:28 
GeneralRe: sql server import /export access in vc++ code Pin
rabih_kai14-Oct-04 3:12
rabih_kai14-Oct-04 3:12 
GeneralRe: sql server import /export access in vc++ code Pin
tgprakash14-Oct-04 4:04
tgprakash14-Oct-04 4:04 
GeneralRe: sql server import /export access in vc++ code Pin
rabih_kai14-Oct-04 5:53
rabih_kai14-Oct-04 5:53 
GeneralRe: sql server import /export access in vc++ code Pin
BlackDice14-Oct-04 6:29
BlackDice14-Oct-04 6:29 
GeneralRe: sql server import /export access in vc++ code Pin
tgprakash14-Oct-04 8:43
tgprakash14-Oct-04 8:43 
Generalproblem in linking tow relative classes Pin
Reza Azizi13-Oct-04 23:18
Reza Azizi13-Oct-04 23:18 
GeneralRe: problem in linking tow relative classes Pin
rabih_kai13-Oct-04 23:42
rabih_kai13-Oct-04 23:42 
GeneralRe: problem in linking tow relative classes Pin
Mad__14-Oct-04 0:19
Mad__14-Oct-04 0:19 
QuestionCD-Key generator for my shareware game? Pin
Link260013-Oct-04 23:04
Link260013-Oct-04 23:04 
AnswerRe: CD-Key generator for my shareware game? Pin
Antony M Kancidrowski14-Oct-04 0:35
Antony M Kancidrowski14-Oct-04 0:35 
GeneralDirectSound capturing 8/16 bit wave PCM Pin
erkanina13-Oct-04 22:51
erkanina13-Oct-04 22:51 

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.