Click here to Skip to main content
15,925,868 members
Home / Discussions / C#
   

C#

 
GeneralRe: Detecting dependent DLLs Pin
Heath Stewart17-Nov-03 7:15
protectorHeath Stewart17-Nov-03 7:15 
GeneralSending CTRL-F6 using PostMessage or SendMessage Pin
ccanales00117-Nov-03 6:02
ccanales00117-Nov-03 6:02 
I'm trying to develop a system tray application that invokes CTRL-F6 at certain intervals to switch between windows within an application. For testing purposes, I've been trying to send CTRL-F6 to WinWord.exe as a means to iterate through open documents. Have been using FindWindow("OpusApp", null), PostMessage() and SendMessage() with various combinations of
const int WM_KEYDOWN = 0x0100;
const int WM_KEYUP = 0x0101;
const int WM_CHAR = 0x0102;
oonst int WM_SYSCOMMAND = 0x112;
const int SC_NEXTWINDOW = 0xF040;
const int VK_CTRL = 0x0011;
const int VK_F6 = 0x0075;

I've had no successs. Anyone's help with this would be greatly appreciated.

casey
GeneralRe: Sending CTRL-F6 using PostMessage or SendMessage Pin
Heath Stewart17-Nov-03 6:24
protectorHeath Stewart17-Nov-03 6:24 
GeneralRe: Sending CTRL-F6 using PostMessage or SendMessage Pin
ccanales00117-Nov-03 8:28
ccanales00117-Nov-03 8:28 
GeneralRe: Sending CTRL-F6 using PostMessage or SendMessage Pin
Heath Stewart17-Nov-03 10:05
protectorHeath Stewart17-Nov-03 10:05 
GeneralRe: Sending CTRL-F6 using PostMessage or SendMessage Pin
J. Dunlap17-Nov-03 10:22
J. Dunlap17-Nov-03 10:22 
GeneralRe: Sending CTRL-F6 using PostMessage or SendMessage Pin
ccanales00118-Nov-03 5:14
ccanales00118-Nov-03 5:14 
GeneralRe: Sending CTRL-F6 using PostMessage or SendMessage Pin
Heath Stewart18-Nov-03 6:25
protectorHeath Stewart18-Nov-03 6:25 
GeneralGenerating a pseudo file from in memory data Pin
fuad.abdallah17-Nov-03 5:57
fuad.abdallah17-Nov-03 5:57 
GeneralRe: Generating a pseudo file from in memory data Pin
Heath Stewart17-Nov-03 6:16
protectorHeath Stewart17-Nov-03 6:16 
GeneralRe: Generating a pseudo file from in memory data Pin
Daniel Turini18-Nov-03 0:44
Daniel Turini18-Nov-03 0:44 
GeneralDetermining dependent DLLs Pin
Arash Sabet17-Nov-03 5:39
Arash Sabet17-Nov-03 5:39 
GeneralRe: Determining dependent DLLs Pin
Heath Stewart17-Nov-03 6:09
protectorHeath Stewart17-Nov-03 6:09 
GeneralRe: Determining dependent DLLs Pin
Arash Sabet17-Nov-03 6:12
Arash Sabet17-Nov-03 6:12 
GeneralRe: Determining dependent DLLs Pin
Heath Stewart17-Nov-03 7:07
protectorHeath Stewart17-Nov-03 7:07 
GeneralTop most form Pin
Judah Gabriel Himango17-Nov-03 5:29
sponsorJudah Gabriel Himango17-Nov-03 5:29 
GeneralRe: Top most form Pin
Heath Stewart17-Nov-03 6:06
protectorHeath Stewart17-Nov-03 6:06 
GeneralRe: Top most form Pin
Judah Gabriel Himango17-Nov-03 8:12
sponsorJudah Gabriel Himango17-Nov-03 8:12 
GeneralRe: Top most form Pin
Roger Stewart17-Nov-03 9:12
professionalRoger Stewart17-Nov-03 9:12 
GeneralRe: Top most form Pin
Judah Gabriel Himango17-Nov-03 9:21
sponsorJudah Gabriel Himango17-Nov-03 9:21 
Generalpassing TimeSpan in a RowFilter Expression Pin
nedeus17-Nov-03 0:31
nedeus17-Nov-03 0:31 
GeneralRe: passing TimeSpan in a RowFilter Expression Pin
Heath Stewart17-Nov-03 3:07
protectorHeath Stewart17-Nov-03 3:07 
GeneralRe: passing TimeSpan in a RowFilter Expression Pin
Anonymous17-Nov-03 3:30
Anonymous17-Nov-03 3:30 
GeneralArgumentOutOfRangeException Pin
Mertli Ozgur Nevres16-Nov-03 21:49
Mertli Ozgur Nevres16-Nov-03 21:49 
GeneralRe: ArgumentOutOfRangeException Pin
Heath Stewart17-Nov-03 2:49
protectorHeath Stewart17-Nov-03 2:49 

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.