And one more question is how to increase limit of characters to be able read the whole picture from once?
For now I only get part of the page as a result.
Search found 29 matches
- 03 Feb 2019, 07:36
- Forum: Scripts and Functions
- Topic: Vis2 - Image to Text OCR()
- Replies: 187
- Views: 19549
- 03 Feb 2019, 03:06
- Forum: Scripts and Functions
- Topic: Vis2 - Image to Text OCR()
- Replies: 187
- Views: 19549
Re: Vis2 - Image to Text OCR()
Hi,
First, Iseahound this is a beautiful tool, thank you for that.
Second, is there a way to find coordinate position of string that I am searching for.
Usually there is only one unique string, but somethimes there are few of them on same page.
First, Iseahound this is a beautiful tool, thank you for that.
Second, is there a way to find coordinate position of string that I am searching for.
Usually there is only one unique string, but somethimes there are few of them on same page.
- 01 Feb 2019, 16:28
- Forum: Ask For Help
- Topic: VBA to Ahk remove duplicates
- Replies: 5
- Views: 195
Re: VBA to Ahk remove duplicates
Wow, thank you on your help.
- 01 Feb 2019, 08:12
- Forum: Ask For Help
- Topic: VBA to Ahk remove duplicates
- Replies: 5
- Views: 195
VBA to Ahk remove duplicates
Hi,
Does anyone know how to translate this code to ahk?
ActiveSheet.Range("$A$1:$G$13").RemoveDuplicates Columns:=Array(1, 7), Header _
:=xlYes
Does anyone know how to translate this code to ahk?
ActiveSheet.Range("$A$1:$G$13").RemoveDuplicates Columns:=Array(1, 7), Header _
:=xlYes
- 21 Jan 2019, 15:24
- Forum: Ask For Help
- Topic: How to search for a string in a .pdf or .docx's contents?
- Replies: 31
- Views: 4435
Re: How to search for a string in a .pdf or .docx's contents?
Hi,
I have one excel file that constantly crashes script when it reach result := Strget section in this function.
Other excel files are read properly.
Does anyone knows how to just bypass that file and give me an error variable of that error?
I have one excel file that constantly crashes script when it reach result := Strget section in this function.
Other excel files are read properly.
Does anyone knows how to just bypass that file and give me an error variable of that error?
- 14 Jan 2019, 04:42
- Forum: Ask For Help
- Topic: .7z files
- Replies: 1
- Views: 123
.7z files
Hi,
Can anyone know how to extract .7z files?
I mean any other archive files that are not .zip (because I know how to extract them).
Thank you
Can anyone know how to extract .7z files?
I mean any other archive files that are not .zip (because I know how to extract them).
Thank you
- 14 Jan 2019, 04:27
- Forum: Ask For Help
- Topic: Find string inside outlook .msg and inside archive .zip extensions
- Replies: 5
- Views: 263
Re: Find string inside outlook .msg and inside archive .zip extensions
Wow thank you Ahk_fan.
This task is successfully solved.
This task is successfully solved.
- 12 Jan 2019, 06:13
- Forum: Ask For Help
- Topic: Find string inside outlook .msg and inside archive .zip extensions
- Replies: 5
- Views: 263
Re: Find string inside outlook .msg and inside archive .zip extensions
Thank you hymal7.
That is for body and excellent.
Do you know how to extract attachements into some folder?
That is for body and excellent.
Do you know how to extract attachements into some folder?
- 11 Jan 2019, 08:26
- Forum: Ask For Help
- Topic: Find string inside outlook .msg and inside archive .zip extensions
- Replies: 5
- Views: 263
Re: Find string inside outlook .msg and inside archive .zip extensions
Ok, I can manage with .zip, but .msg outlook is still a problem.
I have thousands of files saved in folder, but dont know how search through them and find what I want.
Can anyone help me?
I have thousands of files saved in folder, but dont know how search through them and find what I want.
Can anyone help me?
- 09 Jan 2019, 04:30
- Forum: Ask For Help
- Topic: Find string inside outlook .msg and inside archive .zip extensions
- Replies: 5
- Views: 263
Find string inside outlook .msg and inside archive .zip extensions
Hi, Can anyone help and show me a way how to find a string inside outlook .msg and inside archive .zip. My problem is that I have thousands of files with extension .msg and .zip, and is there any way to search through them fast? In outlook .msg there are attachements like excel, pdf, word,.. and som...
- 04 Jan 2019, 08:13
- Forum: Ask For Help
- Topic: Replace in excel
- Replies: 6
- Views: 324
Re: Replace in excel
Thank you to all. My biggest issue XL.DisplayAlerts := 0 is resolved.
Datapoint yes you are correct, I meant on a string.
Datapoint yes you are correct, I meant on a string.
- 21 Dec 2018, 01:46
- Forum: Ask For Help
- Topic: Replace in excel
- Replies: 6
- Views: 324
Re: Replace in excel
anyone?
- 20 Dec 2018, 04:39
- Forum: Ask For Help
- Topic: Replace in excel
- Replies: 6
- Views: 324
Replace in excel
Hi, I need help, I have found this code bellow and if there is a string (even in some sentence) in excel sheet everything works fine and code will do its work. My problem is when string is not there (alone or in sentence) excel will display error message "Can not found and replace". How can I avoid ...
- 09 Oct 2018, 01:46
- Forum: Ask For Help
- Topic: WindowsForms10.Window.8.app.0.34f5582_r41_ad1141
- Replies: 9
- Views: 488
Re: WindowsForms10.Window.8.app.0.34f5582_r41_ad1141
Thank you both of you. This should work and it does in so many times, but in this case is not working. ControlClick, WindowsForms10.Window.8.app.0.34f5582_r41_ad1141, ahk_class AxMainFrame Probably is something in app code, so I will use "FindText - Capture screen image" to resolve this situation.
- 05 Oct 2018, 03:49
- Forum: Ask For Help
- Topic: Add dots to number
- Replies: 1
- Views: 129
Re: Add dots to number
Thank you all, but I found a way
https://autohotkey.com/board/topic/9009 ... er-format/
https://autohotkey.com/board/topic/9009 ... er-format/
Code: Select all
num := 100000
msgbox % KSep(num)
KSep(x, d=2, s=".") {
return RegExReplace(round(x,0), "\G\d+?(?=(\d{3})+(?:\D|$))", "$0" s)
}
- 05 Oct 2018, 03:30
- Forum: Ask For Help
- Topic: WindowsForms10.Window.8.app.0.34f5582_r41_ad1141
- Replies: 9
- Views: 488
Re: WindowsForms10.Window.8.app.0.34f5582_r41_ad1141
Hi Frosti and jeeswg,
Thank you on you effort.
Frosti, I am getting hwnd (like one my first picture), but how to click based on hwnd?
jeeswg can you help me transfer me your code into my request, because ultimate goal is to click on a button.
Thank you
Thank you on you effort.
Frosti, I am getting hwnd (like one my first picture), but how to click based on hwnd?
jeeswg can you help me transfer me your code into my request, because ultimate goal is to click on a button.
Thank you
- 05 Oct 2018, 03:07
- Forum: Ask For Help
- Topic: Add dots to number
- Replies: 1
- Views: 129
Add dots to number
Hi,
Does anyone knows how to convert this number 123456789 into this 123.456.789
Thanks
Does anyone knows how to convert this number 123456789 into this 123.456.789
Thanks
- 04 Oct 2018, 04:43
- Forum: Tutorials
- Topic: Neural Network basics - Artificial Intelligence using AutoHotkey!
- Replies: 62
- Views: 13052
Re: Neural Network basics - Artificial Intelligence using AutoHotkey!
Hi, I have finally viewed first hour of your webinar with Joe and put your 2 sample excels into ahk code. SINGLE SAMPLE Macro1: input1 := 1 weight1 := -60 input2 := 1 weight2 := -5 Loop { calculated := input1*weight1+input2*weight2 If calculated >= 0 { SAresult := 1 } Else { SAresult := -1 } If inpu...
- 04 Oct 2018, 04:06
- Forum: Ask For Help
- Topic: WindowsForms10.Window.8.app.0.34f5582_r41_ad1141
- Replies: 9
- Views: 488
Re: WindowsForms10.Window.8.app.0.34f5582_r41_ad1141
Location of Acc is x370 y86 w127 h22
Other data can be seen from the picture.
If that is helpful?
Other data can be seen from the picture.
If that is helpful?
- 04 Oct 2018, 01:11
- Forum: Ask For Help
- Topic: WindowsForms10.Window.8.app.0.34f5582_r41_ad1141
- Replies: 9
- Views: 488
WindowsForms10.Window.8.app.0.34f5582_r41_ad1141
Hi,
Can anyone help me to click on this button in MS Dynamics AX?
Control is not working, yet Acc doesnt have path.
Ok, I can do it with "FindText - Capture screen image" and click, but I want that click to be inside of app? Something like COM in Internet Explorer.
Thnx
Can anyone help me to click on this button in MS Dynamics AX?
Control is not working, yet Acc doesnt have path.
Ok, I can do it with "FindText - Capture screen image" and click, but I want that click to be inside of app? Something like COM in Internet Explorer.
Thnx