| View previous topic :: View next topic |
| Author |
Message |
neXt
Joined: 19 Mar 2007 Posts: 463
|
Posted: Fri Dec 28, 2007 5:32 pm Post subject: send mesage in outlook / postmessage |
|
|
I'm trying to enable "request a delivery receipt for this message" in outlooks new message, but can't figure out how to do that.
Here is what i have so far:
| Code: |
PostMessage, 0x111, 4231,BN_CLICKED,,Message Options
|
there was no code 0, that's why i used "BN_CLICKED" hoping that it will do what i need, but apparently i'm wrong.
"request a delivery receipt for this message" can be found by starting outlook -> new message -> options
Thanks. |
|
| Back to top |
|
 |
[VxE]
Joined: 07 Oct 2006 Posts: 1129
|
Posted: Fri Dec 28, 2007 9:38 pm Post subject: |
|
|
Outlook has a normal windows menu, so sending a key combination can probably do the trick. Try to navigate to the option using just the keyboard (start with [alt][F]) then AHK can repeat that key sequence ....whenever.... _________________ My Home Thread
More Common Answers: 1. It's in the FAQ 2. Ternary ( ? : ) guide 3. Post code with [code][/code] tags |
|
| Back to top |
|
 |
engunneer
Joined: 30 Aug 2005 Posts: 6772 Location: Pacific Northwest, US
|
Posted: Fri Dec 28, 2007 9:42 pm Post subject: |
|
|
see also WinMenuSelectItem _________________
Unless otherwise noted, all code is untested.
Common Answers: 1.(Loops, Viruses, etc.) 2. Search 3.RTFM |
|
| Back to top |
|
 |
svi
Joined: 09 Oct 2006 Posts: 124 Location: Finland
|
Posted: Fri Dec 28, 2007 9:50 pm Post subject: Re: send mesage in outlook / postmessage |
|
|
| neXt wrote: | | ... to enable "request a delivery receipt for this message" in outlooks ... |
I have a Finnish OS, so I'm not sure if this is what you want (value 40347 from ResHacker: ... Program Files\Outlook Express\msoeres.dll):
| Code: | | PostMessage, 0x111, 40347, 0, , Outlook Express |
_________________ Pekka Vartto |
|
| Back to top |
|
 |
neXt
Joined: 19 Mar 2007 Posts: 463
|
Posted: Fri Dec 28, 2007 10:10 pm Post subject: |
|
|
I think this can't be selected from the regular menu, at least i couldn't find it.
There's an actual button that i have to click to get there, more info here: http://grok.lsu.edu/Article.aspx?articleId=88
Scroll down to: "To set Outlook to notify you when an individual message is delivered or read:"
They have a better explanation with pics.
I don't really want to use mouse clicks and wait for windows to show up , that's why i'm trying to use SendMessage.
My last attempt was | Code: | | PostMessage, 0x4E, 4230,,,Message Options | but it just froze the application.
svi, I tried it, didn't help and i think that's for outlook express. |
|
| Back to top |
|
 |
svi
Joined: 09 Oct 2006 Posts: 124 Location: Finland
|
Posted: Fri Dec 28, 2007 10:25 pm Post subject: |
|
|
| neXt wrote: | | svi, I tried it, didn't help and i think that's for outlook express. |
Yes, I didn't think there's anything else Outlook  _________________ Pekka Vartto |
|
| Back to top |
|
 |
svi
Joined: 09 Oct 2006 Posts: 124 Location: Finland
|
Posted: Fri Dec 28, 2007 10:33 pm Post subject: |
|
|
So, you want to turn on a checkbox?
Is it possible with Postmessage  _________________ Pekka Vartto |
|
| Back to top |
|
 |
neXt
Joined: 19 Mar 2007 Posts: 463
|
Posted: Fri Dec 28, 2007 10:42 pm Post subject: |
|
|
| i don't know, you think not? |
|
| Back to top |
|
 |
svi
Joined: 09 Oct 2006 Posts: 124 Location: Finland
|
Posted: Fri Dec 28, 2007 10:57 pm Post subject: |
|
|
| neXt wrote: | | i don't know, you think not? |
I thought so, but it seems to be possible (I tested it in Calculator).
Also Control, Check could be used. _________________ Pekka Vartto |
|
| Back to top |
|
 |
neXt
Joined: 19 Mar 2007 Posts: 463
|
Posted: Fri Dec 28, 2007 11:11 pm Post subject: |
|
|
I forgot about Control . Ok, i guess i'm OK then.
| Code: |
send !p ;apparently this opens up "options" menu
WinWaitActive Message Options
Control, Check,, Button3, Message Options
return
|
Thanks. |
|
| Back to top |
|
 |
|