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

C / C++ / MFC

 
GeneralRe: Bluetooth DUN and PPP Pin
Alexander M.,27-Feb-08 22:12
Alexander M.,27-Feb-08 22:12 
GeneralRe: Bluetooth DUN and PPP Pin
PSLoh27-Feb-08 22:21
PSLoh27-Feb-08 22:21 
GeneralRe: Bluetooth DUN and PPP Pin
Alexander M.,28-Feb-08 4:28
Alexander M.,28-Feb-08 4:28 
Questionhow to format our code in editor Pin
gentleguy27-Feb-08 15:12
gentleguy27-Feb-08 15:12 
AnswerRe: how to format our code in editor Pin
Maxwell Chen27-Feb-08 18:44
Maxwell Chen27-Feb-08 18:44 
AnswerRe: how to format our code in editor Pin
Rajkumar R27-Feb-08 19:40
Rajkumar R27-Feb-08 19:40 
GeneralMonitor a process to see if it opens a file Pin
csmithmaui27-Feb-08 13:11
csmithmaui27-Feb-08 13:11 
GeneralRe: Monitor a process to see if it opens a file Pin
Alexander M.,27-Feb-08 22:02
Alexander M.,27-Feb-08 22:02 
there are ways to do that, but they might be tricky...

one way is polling the open handles of the process with ZwQuerySystemInformation with argument SystemHandleInformation from ntdll.dll.

another way could be injecting a dll to the target process and hooking the api functions (e.g. CreateFileA/W), or creating a device filter driver (which can be very nasty)..

if you don't need this feature permanently in your application (e.g. just for one special case for analysing another application or so), you can use Filemon from www.sysinternals.com.

Don't try it, just do it! Wink | ;-)

Generalassociating tray icon with app Pin
act_x27-Feb-08 10:06
act_x27-Feb-08 10:06 
GeneralRe: associating tray icon with app Pin
Alexander M.,27-Feb-08 22:08
Alexander M.,27-Feb-08 22:08 
Generalknowing if window were minimized or maximized using window hooks Pin
marcio kovags27-Feb-08 8:22
marcio kovags27-Feb-08 8:22 
GeneralRe: knowing if window were minimized or maximized using window hooks Pin
led mike27-Feb-08 9:40
led mike27-Feb-08 9:40 
GeneralRe: knowing if window were minimized or maximized using window hooks Pin
marcio kovags27-Feb-08 9:53
marcio kovags27-Feb-08 9:53 
GeneralRe: knowing if window were minimized or maximized using window hooks Pin
led mike27-Feb-08 10:02
led mike27-Feb-08 10:02 
GeneralRe: knowing if window were minimized or maximized using window hooks Pin
marcio kovags27-Feb-08 10:12
marcio kovags27-Feb-08 10:12 
GeneralRe: knowing if window were minimized or maximized using window hooks Pin
led mike27-Feb-08 11:38
led mike27-Feb-08 11:38 
GeneralRe: knowing if window were minimized or maximized using window hooks Pin
marcio kovags27-Feb-08 14:54
marcio kovags27-Feb-08 14:54 
GeneralRe: knowing if window were minimized or maximized using window hooks Pin
led mike28-Feb-08 6:39
led mike28-Feb-08 6:39 
GeneralRe: knowing if window were minimized or maximized using window hooks Pin
marcio kovags1-Mar-08 15:10
marcio kovags1-Mar-08 15:10 
GeneralCan't create tray icon from modeless dialog Pin
Royce Fickling27-Feb-08 5:44
Royce Fickling27-Feb-08 5:44 
QuestionRe: Can't create tray icon from modeless dialog Pin
David Crow27-Feb-08 6:01
David Crow27-Feb-08 6:01 
GeneralRe: Can't create tray icon from modeless dialog Pin
Royce Fickling6-Mar-08 12:11
Royce Fickling6-Mar-08 12:11 
GeneralRe: Can't create tray icon from modeless dialog Pin
led mike7-Mar-08 5:04
led mike7-Mar-08 5:04 
GeneralRe: Can't create tray icon from modeless dialog Pin
Mark Salsbery27-Feb-08 6:38
Mark Salsbery27-Feb-08 6:38 
GeneralRe: Can't create tray icon from modeless dialog Pin
David Crow27-Feb-08 6:44
David Crow27-Feb-08 6:44 

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.