Search found 23 matches

by Ovg
13 Jan 2018, 14:27
Forum: About This Community
Topic: Issues with registering, Post your username here...
Replies: 846
Views: 2015971

Re: Issues with registering, Post your username here...

unpleasant, but not deadly :-)
by Ovg
13 Jan 2018, 10:35
Forum: About This Community
Topic: Issues with registering, Post your username here...
Replies: 846
Views: 2015971

Re: Issues with registering, Post your username here...

Reply from my ISP:
IP address 104.25.120.16 is blocked by government of RF. :headwall: :crazy:
Capture.PNG
Capture.PNG (139.81 KiB) Viewed 22331 times
by Ovg
12 Jan 2018, 11:58
Forum: About This Community
Topic: Issues with registering, Post your username here...
Replies: 846
Views: 2015971

Re: Issues with registering, Post your username here...

Hello!
For the last few days I can not log in to autohotkey.com. Through another provider or proxy there is no problem. My ISP told me that for some reason you could block my address. Can this somehow be checked and what the reason for this lock might be?
Regards, Ovg
by Ovg
19 Sep 2017, 10:59
Forum: SciTE4AutoHotkey
Topic: SciTE4AutoHotkey v3.0.06.01 [Updated October 12 2014]
Replies: 835
Views: 616975

Re: SciTE4AutoHotkey v3.0.06.01 [Updated October 12 2014]

While this mod is active I can't set breakpoints anymore. Any suggestions will be appreciated.
by Ovg
21 Jun 2017, 23:50
Forum: Ask for Help (v1)
Topic: Many Ping with AHK
Replies: 3
Views: 1152

Re: Many Ping with AHK

by Ovg
30 May 2017, 08:17
Forum: Ask for Help (v1)
Topic: Regex for detecting two language sets Topic is solved
Replies: 3
Views: 1301

Re: Regex for detecting two language sets Topic is solved

^+!F12:: if (RegExMatch(clipboard,"[\x{0020}-\x{007F}]") || (RegExMatch(clipboard,"[\x{00A0}-\x{00FF}]"))) && RegExMatch(clipboard,"[\x{0370}-\x{03FF}]") ToolTip, Both Latin AND Greek detected else if (RegExMatch(clipboard,"[\x{0370}-\x{03FF}]")) && (!RegExMatch(clipboars,"[\x{0020}-\x{007F}]") && ...
by Ovg
19 May 2017, 07:23
Forum: Ask for Help (v1)
Topic: Compare the total capacity of two drives
Replies: 12
Views: 3413

Re: Compare the total capacity of two drives

2jeeswg

I have tried for local share(\\My PC\Share_Dir) and for network share (\\Server\Dir)- both working fine!
by Ovg
20 Apr 2017, 09:26
Forum: Помощь
Topic: Помогите в написании скрипта.
Replies: 1
Views: 1604

Re: Помогите в написании скрипта.

Code: Select all

Send !{Numpad1}
Sleep 10000
Send ^{Numpad1}
ExitApp
by Ovg
05 Apr 2017, 11:17
Forum: Scripts and Functions (v1)
Topic: TypingAid v2.22.0 - Word AutoCompletion Utility
Replies: 235
Views: 137865

Re: TypingAid v2.22.0 - Word AutoCompletion Utility

Why not to use

Code: Select all

RegExReplace()
?
by Ovg
05 Apr 2017, 09:50
Forum: Ask for Help (v1)
Topic: I'm using arduino buttons to play videos on the pc Topic is solved
Replies: 4
Views: 1528

Re: I'm using arduino buttons to play videos on the pc Topic is solved

Hi ocneves!
Thanks for reply!

How do you read com port with AHK?
Can you write here source code?

WBR, Ovg
by Ovg
04 Apr 2017, 14:58
Forum: Ask for Help (v1)
Topic: I'm using arduino buttons to play videos on the pc Topic is solved
Replies: 4
Views: 1528

Re: I'm using arduino buttons to play videos on the pc Topic is solved

Code: Select all

a::
Process, Exist, mpc-hc64.exe 
If !ErrorLevel
{  
  Run, C:\Program Files\MPC-HC\mpc-hc64.exe "C:\VIDEOS\youtuber1.mp4"
  ........
  ........
}
return
the same for b:: and c::
by Ovg
26 Mar 2017, 07:28
Forum: Ask for Help (v1)
Topic: [AHK] Script wont work and I dont know why
Replies: 1
Views: 915

Re: [AHK] Script wont work and I dont know why

Add , (comma) after Send
eg

Code: Select all

Send, =music qp gotitbadderthanusher
by Ovg
10 Mar 2017, 09:17
Forum: Ask for Help (v1)
Topic: Compare 2 files for a match
Replies: 14
Views: 4175

Re: Compare 2 files for a match

Extra } at the end of the file
by Ovg
06 Mar 2017, 14:34
Forum: Ask for Help (v1)
Topic: I need help with File.Read() function
Replies: 4
Views: 1568

Re: I need help with File.Read() function

I tried RawRead too, no luck .... This code working like a charm for me (Many thanks to jNizM https://autohotkey.com/boards/viewtopic.php?f=5&t=28681) Type := {0 : "x86", 1: "Dos", 2: "Win16", 3: "Pif", 4: "POSIX", 5: "OS/216", 6: "x64"} SplitPath, Filename,,, Ext StringLower, Ext, Ext FileGetVersio...
by Ovg
06 Mar 2017, 14:11
Forum: Ask for Help (v1)
Topic: I need help with File.Read() function
Replies: 4
Views: 1568

Re: I need help with File.Read() function

24GForce Thank you very much for reply and example! ... the nul characters are breaking the string ... Aha, I suspected this, but wasn't sure. But why \x00 doesn't break string when call File.Read(256)? In my case I think it would be simpler to read 256 byte and then If RegExMatch(Header, "PE\x00\x...
by Ovg
06 Mar 2017, 03:54
Forum: Ask for Help (v1)
Topic: I need help with File.Read() function
Replies: 4
Views: 1568

I need help with File.Read() function

I am trying to read first six bytes of PE header ( PE\x00\x00L\x01 or PE\x00\x00d† ) Filename := "C:\windows\system32\kernel32.dll" Header := "000000" Content := "Unknown" File := FileOpen(Filename,"r") File.Seek(0x3C,0) Address := File.ReadUInt() File.Seek(Address-0x3c-4,1) Header := File.Read(6) O...
by Ovg
02 Mar 2017, 05:53
Forum: Ask for Help (v1)
Topic: is exe file x64 or x86? Howto? Topic is solved
Replies: 10
Views: 4393

Re: is exe file x64 or x86? Howto? Topic is solved

2jNizM
Thank you so much for examples, links and clarifications!
I really appreciate your help!
by Ovg
01 Mar 2017, 23:33
Forum: Ask for Help (v1)
Topic: is exe file x64 or x86? Howto? Topic is solved
Replies: 10
Views: 4393

Re: is exe file x64 or x86? Howto? Topic is solved

2RickC

MSDN wrote:
".... If the file is not executable, or if the function fails, the return value is zero.
To get extended error information, call GetLastError."

We need to check value returned by the DLLCall
MSDN - jNizM's link
by Ovg
01 Mar 2017, 15:32
Forum: Ask for Help (v1)
Topic: is exe file x64 or x86? Howto? Topic is solved
Replies: 10
Views: 4393

Re: is exe file x64 or x86? Howto? Topic is solved

2jNizM
Unicode version of AHK requires call of GetBinaryTypeW

BTW, Thank you again :D

Go to advanced search