Search found 2688 matches

by wolf_II
12 Feb 2015, 07:42
Forum: Ask for Help (v1)
Topic: Command line parameters: %0% (number of parameters passed)
Replies: 5
Views: 2344

Re: Command line parameters: %0% (number of parameters passe

Try the first line without colon

Code: Select all

sParams = %0%
by wolf_II
12 Feb 2015, 06:37
Forum: Ask for Help (v1)
Topic: Stealthily get cmd output without temp files or clipboard Topic is solved
Replies: 26
Views: 18169

Re: Stealthily get cmd output without temp files or clipboar Topic is solved

I could apply terminal font to the msgbox No, you can't, That's the point here. Unless I still miss something... Try the example from coco without MsgBox: DetectHiddenWindows On Run %ComSpec%,, Hide, pid WinWait ahk_pid %pid% DllCall("AttachConsole", "UInt", pid) WshShell := ComObjCreate("Wscript.S...
by wolf_II
12 Feb 2015, 06:23
Forum: Ask for Help (v1)
Topic: Stealthily get cmd output without temp files or clipboard Topic is solved
Replies: 26
Views: 18169

Re: Stealthily get cmd output without temp files or clipboar Topic is solved

Sorry if I am missing the point. But that gibberish output is still from MsgBox, right?
My Suggestion is: Don't use MsgBox, use Gui with font "Terminal"

Does that still not work?
Sorry if I am missing the point. :oops:
by wolf_II
12 Feb 2015, 05:38
Forum: Ask for Help (v1)
Topic: Windows Display - tile horizontally; migrate from VBS
Replies: 6
Views: 2576

Re: Windows Display - tile horizontally; migrate from VBS

Code: Select all

ComObjCreate("Shell.Application").TileHorizontally
by wolf_II
12 Feb 2015, 05:30
Forum: Ask for Help (v1)
Topic: Stealthily get cmd output without temp files or clipboard Topic is solved
Replies: 26
Views: 18169

Re: Stealthily get cmd output without temp files or clipboar Topic is solved

AmazinglyDumb wrote:So the only problem I have now is the output in wrong charset.
Could anyone, please, help me with that?
Please, give an example.
by wolf_II
12 Feb 2015, 05:00
Forum: Ask for Help (v1)
Topic: Send double click on tray icon on mouse over?
Replies: 6
Views: 2294

Re: Send double click on tray icon on mouse over?

This is slightly better: #Include TrayIcon.ahk Loop { Loop If MouseIsOver_TrayClock() { TrayIcon_Button("networx.exe",, True) Break } Loop If !MouseIsOver_TrayClock() Break } MouseIsOver_TrayClock() { MouseGetPos,,,, control Return, control = "TrayClockWClass1" }
by wolf_II
11 Feb 2015, 09:21
Forum: Ask for Help (v1)
Topic: Send double click on tray icon on mouse over?
Replies: 6
Views: 2294

Re: Send double click on tray icon on mouse over?

I don't have Comodo Firewall to test, I have a Network Monitor in the tray, that I can test with. When that Tray icon gets a double click, it will show a graph, when it gets double-clicked again, that graph gets hidden. Unfortunately, i could not make it to work on mousing over the icon, but when i ...
by wolf_II
10 Feb 2015, 14:43
Forum: Ask for Help (v1)
Topic: Stealthily get cmd output without temp files or clipboard Topic is solved
Replies: 26
Views: 18169

Re: Stealthily get cmd output without temp files or clipboar Topic is solved

AmazinglyDumb wrote:but in CMD I see non-latin chars normally
I have got german Win7. Ping outputs some "Umlaute". This works for me instead of MsgBox:

Code: Select all

Gui, Font, s14, Terminal
Gui, Add, Text, w800 h300, %result%
Gui, Show
Return

GuiClose:
ExitApp
I hope that helps you a bit,

Greetings

Go to advanced search