Search found 21 matches

by slovakia
10 Jun 2019, 22:41
Forum: Scripts and Functions (v1)
Topic: Vis2 - Image to Text OCR()
Replies: 329
Views: 163514

Re: Vis2 - Image to Text OCR()

Some computer when run error with this code : --------------------------- demo.ahk --------------------------- Error at line 42 in #include file "C:\Users\admin\Desktop\Vis2-master\Lib\JSON.ahk". Line Text: JSON.Functor Error: Unknown class. The program will exit. --------------------------- OK ----...
by slovakia
28 Mar 2019, 23:03
Forum: Ask for Help (v1)
Topic: How to change Check box Bookmark in word document Topic is solved
Replies: 2
Views: 674

Re: How to change Check box Bookmark in word document Topic is solved

jeeswg wrote:
28 Mar 2019, 22:42
In the last line, try := instead of =.
OK it work . Thank you :D :D :D :D
by slovakia
28 Mar 2019, 22:33
Forum: Ask for Help (v1)
Topic: How to change Check box Bookmark in word document Topic is solved
Replies: 2
Views: 674

How to change Check box Bookmark in word document Topic is solved

Im try this code to check a bookmark checkbox in this word document but not work. Please Help me to fix. http i.imgur.com /NTYqzs9.jpg FilePath := A_ScriptDir "\word.docx" wdApp := ComObjCreate("Word.Application") ; Create an instance of Word wdApp.Visible := true MyDocNew:=wdApp.documents.Open(File...
by slovakia
21 Jan 2019, 03:57
Forum: Ask for Help (v1)
Topic: Please help me to fix this code
Replies: 2
Views: 586

Re: Please help me to fix this code

Hellbent wrote:
20 Jan 2019, 23:30
Try this

Code: Select all

StringTrimLeft,Number,A_GuiControl,6
msgbox,  Your click is : %number%
Thank you :bravo: :bravo: :bravo:
by slovakia
20 Jan 2019, 23:01
Forum: Ask for Help (v1)
Topic: Please help me to fix this code
Replies: 2
Views: 586

Please help me to fix this code

Please help me to fix this code I want show msgbox when click number Gui, -Caption +ToolWindow +0x400000 loop 5 { Gui, Add, Text,gok vnumber%a_index%, Number %a_index% } Gui, Show, Hide ; Auto-size without showing. Gui +LastFound WinGetPos,,, GuiWidth Xpos := A_ScreenWidth - GuiWidth -30 Gui, Show, ...
by slovakia
25 Dec 2018, 19:38
Forum: Ask for Help (v1)
Topic: How to get data from CSV file
Replies: 4
Views: 996

Re: How to get data from CSV file

Thank you !. swagfag, just me and Garry. :dance: :dance: :dance:
by slovakia
25 Dec 2018, 05:12
Forum: Ask for Help (v1)
Topic: How to get data from CSV file
Replies: 4
Views: 996

How to get data from CSV file

Hi everyone. I have csv file and i want to get data from row 2, colum 3. How to do that with my file in this file value is."15/08/2016 4:51:00 PM ". Please help. Thank you
by slovakia
18 Dec 2018, 23:15
Forum: Ask for Help (v1)
Topic: Help me to catch "Text string" From text send of another app
Replies: 1
Views: 457

Help me to catch "Text string" From text send of another app

I want to catch and save text was send by another app like type from keyboard . This text is random text about length and word. (reader from Qr-code reader) Please help me. you can check to catch word make from this code and save to another text file loop 5 { sleep 1000 random,x,10,20 Length = %x% C...
by slovakia
15 Jul 2018, 21:41
Forum: Ask for Help (v1)
Topic: How to get a thousand separator directly ?
Replies: 3
Views: 778

Re: How to get a thousand separator directly ?

Try this: #SingleInstance Force RegRead Decimal, HKCU\Control Panel\International, sDecimal RegRead Thousand, HKCU\Control Panel\International, sThousand Gui Font, S30 Gui Add, Edit, vsotien gTest hWndhEdit1 h60 BackGroundTrans +Center, Gui Show,, Window Return Test: Gui Submit, NoHide If (Pos := I...
by slovakia
14 Jul 2018, 08:53
Forum: Ask for Help (v1)
Topic: How to get a thousand separator directly ?
Replies: 3
Views: 778

How to get a thousand separator directly ?

How to get a thousand separator directly ? I want thousand separator directly using only one Edit Box. Please help me https://i.imgur.com/afevLVT.jpg Gui Font, S30 Gui Add, Edit, vsotien gtest hWndhEdit1 h60 BackGroundTrans +Center, Gui Add, Edit, h60 hWndhEdit2 BackGroundTrans +Center Gui Show, , W...
by slovakia
24 Jun 2018, 22:19
Forum: Ask for Help (v1)
Topic: Full screen transform from gui 1 to gui 2 smooth
Replies: 3
Views: 1018

Re: Full screen transform from gui 1 to gui 2 smooth

build your 2nd gui ahead of time, and just dont show it until its needed... gosub, build_gui2 Gui,1: Default Gui,1: +AlwaysOnTop Gui,1: Add,Picture, w%A_ScreenWidth% h%A_ScreenHeight% vPicture, bg0.png Gui,1: -Caption Gui, 1: Show,w%A_ScreenWidth% h%A_ScreenHeight% return F2:: Gui,2: Show, w%A_Scre...
by slovakia
24 Jun 2018, 21:12
Forum: Ask for Help (v1)
Topic: Full screen transform from gui 1 to gui 2 smooth
Replies: 3
Views: 1018

Full screen transform from gui 1 to gui 2 smooth

Please help me I want to transform from gui 1 to gui 2 by press F2. But i don't know how to do it directly. I don't want 1 second show my desktop before gui 2 show. Gui 1:Default Gui,+AlwaysOnTop Gui, Add,Picture, w%A_ScreenWidth% h%A_ScreenHeight% vPicture, bg0.png Gui, Show,w%A_ScreenWidth% h%A_Sc...
by slovakia
22 Jun 2018, 01:51
Forum: Ask for Help (v1)
Topic: How to set Hotkey for button
Replies: 2
Views: 543

Re: How to set Hotkey for button

Try this: Gui, Add, Button, w134 h38 gf1 , Click or Press F1 Gui, Add, Button, w134 h38 gf2, Click or Press F2 Gui, Add, Button, w134 h38 gf3 , Click or Press F3 ; Generated using SmartGUI Creator for SciTE Gui, Show, , Untitled GUI return f1:: msgbox F1 return f2:: msgbox F2 return f3:: msgbox F3 ...
by slovakia
21 Jun 2018, 22:01
Forum: Ask for Help (v1)
Topic: How to set Hotkey for button
Replies: 2
Views: 543

How to set Hotkey for button

Hi. Please help me ! I want to set hotkey for button F1,F2,F3 for gui submit. This is my code. Gui, Add, Button, w134 h38 gf1 , Click or Press F1 Gui, Add, Button, w134 h38 gf2, Click or Press F2 Gui, Add, Button, w134 h38 gf3 , Click or Press F3 ; Generated using SmartGUI Creator for SciTE Gui, Sho...
by slovakia
08 Feb 2018, 20:41
Forum: Ask for Help (v1)
Topic: Help me fix this Smart Search
Replies: 5
Views: 1238

Re: Help me fix this Smart Search

foundPos := RegExMatch( "str" , "\w+" ) ; founds a word Thank. But not working :( what do you mean by "not working". it's really important that you give me an error message;) right? sorry it works but. I want to search in the same way as Magic search here: Thanks Bro https://upanhtocdo.com/images/2...
by slovakia
07 Feb 2018, 21:03
Forum: Ask for Help (v1)
Topic: Help me fix this Smart Search
Replies: 5
Views: 1238

Re: Help me fix this Smart Search

SL5 wrote:foundPos := RegExMatch( "str" , "\w+" ) ; founds a word
Thank. But not working :(
by slovakia
06 Feb 2018, 22:02
Forum: Ask for Help (v1)
Topic: Help me fix this Smart Search
Replies: 5
Views: 1238

Help me fix this Smart Search

I'm Using this code for seach text in Textbox in Listbox. But not work for a Letter or word with short lenght. Please help me to fix this. How to make search same to Magic Search same to this http://lintalist.github.io/ http://sv1.upsieutoc.com/2018/02/07/000397.jpg #Include Sift.ahk Data = ( Hell P...
by slovakia
12 Apr 2017, 23:28
Forum: Ask for Help (v1)
Topic: How to export the correct data in txt file
Replies: 9
Views: 1766

Re: How to export the correct data in txt file

It working thank you so much
by slovakia
12 Apr 2017, 23:06
Forum: Ask for Help (v1)
Topic: How to export the correct data in txt file
Replies: 9
Views: 1766

Re: How to export the correct data in txt file

evilC wrote:Are you trying to match "og:vi:tag" with the regex """"og"":""vi"":""tag""""?
There are no quotes between og and vi, so why are there quotes in your regex?

You could just write ""og:vi:tag""
It not work .
Please check your Inbox.
by slovakia
12 Apr 2017, 10:06
Forum: Ask for Help (v1)
Topic: How to export the correct data in txt file
Replies: 9
Views: 1766

Re: How to export the correct data in txt file

In my text file have alot of

Code: Select all

 cont"=
then i changed your code to

Code: Select all

matches := GlobalMatches(text, "U)""""og"":""vi"":""tag"""" cont""=""(.+)""")
but it not run.

Go to advanced search