Hi.
I'm using winAPI commands to insert a menu into another program. That works. Now I need it so if I click the menu item in the other program (there are no sub-menus) it will open a seperate program.
How would I go about doing this?
I'm trying to hook the notification message but i'm kind of ...
Search found 78 matches
- Wed Mar 22, 2006 11:02 pm
- Forum: Coding Questions
- Topic: hooking a menu with API?
- Replies: 0
- Views: 779
- Sun Nov 27, 2005 6:16 pm
- Forum: Coding Questions
- Topic: Drawing on another window or above them all
- Replies: 36
- Views: 7155
- Sun Nov 27, 2005 5:18 am
- Forum: Coding Questions
- Topic: Drawing on another window or above them all
- Replies: 36
- Views: 7155
- Sun Nov 27, 2005 4:48 am
- Forum: Coding Questions
- Topic: Drawing on another window or above them all
- Replies: 36
- Views: 7155
- Sat Nov 26, 2005 4:24 am
- Forum: Coding Questions
- Topic: Drawing on another window or above them all
- Replies: 36
- Views: 7155
- Sat Nov 26, 2005 2:19 am
- Forum: Coding Questions
- Topic: Drawing on another window or above them all
- Replies: 36
- Views: 7155
- Fri Nov 25, 2005 3:46 am
- Forum: Coding Questions
- Topic: Drawing on another window or above them all
- Replies: 36
- Views: 7155
- Wed Nov 23, 2005 8:22 pm
- Forum: Coding Questions
- Topic: Drawing on another window or above them all
- Replies: 36
- Views: 7155
Drawing on another window or above them all
Hello,
I was trying to figure out how to draw a shape above all windows, or at least just on one.
StartDrawing with DesktopOutput worked at first, but then I brought up the other windows, the shape flickered, and it needs to be solid.
This is what I had:
#wMem=0
Global Mem.l
Mem ...
I was trying to figure out how to draw a shape above all windows, or at least just on one.
StartDrawing with DesktopOutput worked at first, but then I brought up the other windows, the shape flickered, and it needs to be solid.
This is what I had:
#wMem=0
Global Mem.l
Mem ...
- Thu Nov 10, 2005 5:57 pm
- Forum: Coding Questions
- Topic: Disable Windows keyboard?
- Replies: 5
- Views: 2156
You could just block all unput entirely:
Code: Select all
Procedure block()
BlockInput_(1)
endprocedure
Procedure unblock()
BlockInput_(0)
endprocedure
- Thu Nov 03, 2005 3:01 am
- Forum: Coding Questions
- Topic: how to know the windows language?!!
- Replies: 15
- Views: 5875
- Wed Nov 02, 2005 3:16 am
- Forum: Tricks 'n' Tips
- Topic: Skinning the Window with Regions
- Replies: 2
- Views: 2474
Skinning the Window with Regions
Code updated For 5.20+
This is a simple set of procedures to skin the window into an ellipse, rectangle, or round rectangle. It only needs to be called once (it does not need to be under repeat). It will only work under Windows Operating Systems.
; SkinWindow with Regions
; by roachofdeath
; 11 ...
This is a simple set of procedures to skin the window into an ellipse, rectangle, or round rectangle. It only needs to be called once (it does not need to be under repeat). It will only work under Windows Operating Systems.
; SkinWindow with Regions
; by roachofdeath
; 11 ...
- Sun Oct 30, 2005 4:11 am
- Forum: Coding Questions
- Topic: Question about GetSystemDirectory
- Replies: 5
- Views: 2291
Hm, they are the same for me.. maybe not for others though...
Code: Select all
buffer.s = ""
ebuffer.s = ""
GetSystemDirectory_(buffer.s,#MAX_PATH)
GetEnvironmentVariable_("Path",ebuffer.s,#MAX_PATH)
Debug buffer.s
Debug ebuffer.s
- Mon Oct 17, 2005 2:22 am
- Forum: Tricks 'n' Tips
- Topic: Get PowerScheme Procedure
- Replies: 0
- Views: 1242
Get PowerScheme Procedure
Code updated For 5.20+
this is a very simple procedure, but works nonetheless.
It finds the power scheme name and description, even if you have a custom scheme.
Procedure.s Reg_GetValue(topKey, sKeyName.s, sValueName.s, ComputerName.s)
lpData.s ;Reg_GetValue() by NoahPhense
GetValue.s =""
If ...
this is a very simple procedure, but works nonetheless.
It finds the power scheme name and description, even if you have a custom scheme.
Procedure.s Reg_GetValue(topKey, sKeyName.s, sValueName.s, ComputerName.s)
lpData.s ;Reg_GetValue() by NoahPhense
GetValue.s =""
If ...
- Sun Oct 16, 2005 8:02 pm
- Forum: Coding Questions
- Topic: Getting file type
- Replies: 6
- Views: 2180
- Sat Oct 15, 2005 3:29 am
- Forum: Coding Questions
- Topic: Find pixel color on screen?
- Replies: 10
- Views: 3660