G'day,
On pressing F1, my program shells to Notepad.exe
On windows 98, it appears on top, over the program, but with XP, it is minimised on the task bar. What causes this and how do I make it come to the front.
Printable View
G'day,
On pressing F1, my program shells to Notepad.exe
On windows 98, it appears on top, over the program, but with XP, it is minimised on the task bar. What causes this and how do I make it come to the front.
G'Day :D
This will make notepad maximised.
VB Code:
Shell "notepad.exe", [B]vbMaximizedFocus[/B]
and this will make it normal
VB Code:
Shell "notepad.exe", [B]vbNormalFocus[/B]
Thanks Andrew