show file address Topic is solved

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
User avatar
aydinAGF
Posts: 18
Joined: 08 Feb 2022, 04:39

show file address

Post by aydinAGF » 01 Dec 2022, 13:37

hi
i want to do
when we select file from ... button show them in the edit

Code: Select all

Gui, Add, Tab2,, Sound|Brightness
gui, add, text, x22 y140, Set sound volume:
gui, add, slider , x22 y160  w245  tooltip range0-100, 50 
Gui, Add, Edit , h21 w210 x22 y75, 
Gui, Add, Button, y74 x240 , &...
gui, Show
return

Button...:
FileSelectFile, file,,,
if not file
    return

GuiEscape:
GuiClose:
exitApp

User avatar
mikeyww
Posts: 26972
Joined: 09 Sep 2014, 18:38

Re: show file address  Topic is solved

Post by mikeyww » 01 Dec 2022, 15:09

Code: Select all

Gui, Font, s10
Gui, Add, Button, Default gFile, File:
Gui, Add, Edit  , x+m w430 vfile
Gui, Show,, File
Return

File:
FileSelectFile, file
GuiControl,, file, %file%
Return

User avatar
aydinAGF
Posts: 18
Joined: 08 Feb 2022, 04:39

Re: show file address

Post by aydinAGF » 01 Dec 2022, 15:50

thank you man its work right

Post Reply

Return to “Ask for Help (v1)”