Search found 366 matches

by Tomer
10 Dec 2019, 08:24
Forum: Ask for Help (v1)
Topic: read only the second column from CSV file Topic is solved
Replies: 11
Views: 1840

Re: read only the second column from CSV file Topic is solved

tnx guys!!! :bravo:
all methods works good but i'd perfer hoppfrosch's method since its reads ALL the rows in the column
by Tomer
10 Dec 2019, 06:00
Forum: Ask for Help (v1)
Topic: read only the second column from CSV file Topic is solved
Replies: 11
Views: 1840

Re: read only the second row from CSV file Topic is solved

AHKStudent wrote:
10 Dec 2019, 05:41

Code: Select all

FileReadLine, LineNum, yourcsvfile.csv, 2
MsgBox % LineNum
ExitApp
thanks,
but not that simple.
my bad, i meant reading only the 2nd column

thanks!
by Tomer
10 Dec 2019, 05:09
Forum: Ask for Help (v1)
Topic: read only the second column from CSV file Topic is solved
Replies: 11
Views: 1840

read only the second column from CSV file Topic is solved

hello,

i need help with a csv file which have 2 columns,
i want to read in loop only the 2nd column.

thanks in adavcne!
by Tomer
21 May 2019, 01:02
Forum: Scripts and Functions (v1)
Topic: [Game] Bulldozer
Replies: 115
Views: 44670

Re: [Game] Bulldozer

wow!
by Tomer
20 May 2019, 07:16
Forum: Ask for Help
Topic: [H] what is /MT? Topic is solved
Replies: 22
Views: 14021

Re: [H] what is /MT? Topic is solved

That never happened to me. Where did you get the dll from? Did you download it from those weird "download missing dlls" sites? Also when this happens, can you calculate the hash of both (the one you use as original and the copy you distributed)? If they are not different then there is a bug in ahk_...
by Tomer
20 May 2019, 02:03
Forum: Ask for Help
Topic: [H] what is /MT? Topic is solved
Replies: 22
Views: 14021

Re: [H] what is /MT? Topic is solved

Why can't you save the vcruntime140.dll in the same folder where AHK_H.exe is? That is all you need to use MD version. the vcruntime140.dll saved in the same folder where the AHK_H.exe is, but It does not help in all cases. In many cases its popup an error msg that "api-ms-win-crt-runtime-l1-1-0.dl...
by Tomer
19 May 2019, 09:53
Forum: Ask for Help
Topic: [H] what is /MT? Topic is solved
Replies: 22
Views: 14021

Re: [H] what is /MT? Topic is solved

well, i'd rather use the MT version in my organisation cause many computers dont have vc_redist or have problem with it,
and therefore its causes scripts (complex programs) not to work at all.

but im afraid it will cause memory leaks and crashing...

dilemma...
by Tomer
07 May 2019, 01:43
Forum: Ask for Help (v1)
Topic: How to count loop and click OK with ENTER button
Replies: 2
Views: 875

Re: How to count loop and click OK with ENTER button

untested SetTimer, Label, on loop, { n := Format("{:02}", A_Index) MsgBox,,popupmsg, %n% if (A_Index = 4) { break } SetKeyDelay, -1 sleep 500 run, cmd.exe Sleep 1000 Send, adb root Sleep 500 Send {enter} Sleep 1500 Send {enter} Send, adb remount Sleep 500 Send {enter} Sleep 1500 Send {enter} } Label...
by Tomer
05 May 2019, 06:55
Forum: Ask for Help (v1)
Topic: bold specific row of ListView
Replies: 2
Views: 959

Re: bold specific row of ListView

Good to know its unsupported by AHK so i I will not waste time for searching
No clue how to work with this code.

Thank you!
by Tomer
05 May 2019, 04:24
Forum: Ask for Help (v1)
Topic: bold specific row of ListView
Replies: 2
Views: 959

bold specific row of ListView

Hello, is it possible to bold only a specific row of ListView and not the entire ListView ? Thanks in advance Gui Font, Bold Gui Add, ListView,, ListView LV_Add("","line1") LV_Add("","line2") LV_Add("","line3") ; make its text bold ONLY LV_Add("","line4") Gui Show, , Return GuiEscape: GuiClose: Exit...
by Tomer
05 May 2019, 02:14
Forum: Ask for Help (v1)
Topic: showing a ToolTip when Mouse cursor over on items of ListView Topic is solved
Replies: 15
Views: 4174

Re: showing a ToolTip when Mouse cursor over on items of ListView Topic is solved

Even though my method works, I will use yours.
Thanks alot once again @just me
by Tomer
01 May 2019, 03:34
Forum: Ask for Help (v1)
Topic: showing a ToolTip when Mouse cursor over on items of ListView Topic is solved
Replies: 15
Views: 4174

Re: showing a ToolTip when Mouse cursor over on items of ListView Topic is solved

Bravo i changed the unshow tooltip to mouse left click instead settimer but im not sure if i've done it in the best way... :wtf: : EDIT2: I think now its good! thank you ! #NoEnv SetBatchLines, -1 ItemTips := [] ; GUI: added control variables Gui, Add, Button, vBtn1, Over your mouse here 1 - works! ...
by Tomer
01 May 2019, 02:33
Forum: Ask for Help (v1)
Topic: showing a ToolTip when Mouse cursor over on items of ListView Topic is solved
Replies: 15
Views: 4174

Re: showing a ToolTip when Mouse cursor over on items of ListView Topic is solved

thanks @just me and @Osprey i like both methods!

may last wish please:
i want to show the tooltip with mouse right click instead overing the mouse.
i guess its something to do with OnMessage(0x0200, "WM_MOUSEMOVE") but i faild to make it work proprly.

thanks in advance
by Tomer
30 Apr 2019, 08:56
Forum: Ask for Help (v1)
Topic: showing a ToolTip when Mouse cursor over on items of ListView Topic is solved
Replies: 15
Views: 4174

Re: showing a ToolTip when Mouse cursor over on items of ListView Topic is solved

charm! :clap: thank you just me ! p.s: 1. in the Listview, how i can add extra different text in the tooltip for each lv_add instead just show the name of each lv_add ? Edit: think i solved this: #NoEnv SetBatchLines, -1 ; GUI: added control variables Gui, Add, ListView, vLV1, Test LV_Add("", "tomer...
by Tomer
07 Apr 2019, 05:51
Forum: Ask for Help (v1)
Topic: showing a ToolTip when Mouse cursor over on items of ListView Topic is solved
Replies: 15
Views: 4174

Re: showing a ToolTip when Mouse cursor over on items of ListView Topic is solved

Thanks for your help.
I see, in fact, thats my problem i cant control of each "LV_Add",
only for the entrie ListView..

if someone could resolve this somehow,
ill be thankful.

thanks
by Tomer
07 Apr 2019, 04:54
Forum: Ask for Help (v1)
Topic: showing a ToolTip when Mouse cursor over on items of ListView Topic is solved
Replies: 15
Views: 4174

Re: showing a ToolTip when Mouse cursor over on items of ListView Topic is solved

if "select" is a must so i add a "checked" to the listview, but tooltip won't disappear when you unslect the item: Gui, Add, Button,, Over your mouse here 1 - works! :) Gui, Add, Button,, Over your mouse here 2 - works@ :) Gui, Add, Button,, Over your mouse here 3 - works# :) Gui Add, ListView, Chec...
by Tomer
07 Apr 2019, 03:51
Forum: Ask for Help (v1)
Topic: showing a ToolTip when Mouse cursor over on items of ListView Topic is solved
Replies: 15
Views: 4174

showing a ToolTip when Mouse cursor over on items of ListView Topic is solved

Hello, i have a script with: 1. Buttons (3) 2. ListView (1) the script using a function that gives you a ToolTip (msg) when your Mouse cursor over only on the Buttons (each button returns its name). However my question is if i can get the SAME for the items of the ListView ? so i'll get for each ite...

Go to advanced search