Search found 37 matches

by GS SAHU
04 Jan 2019, 02:10
Forum: Ask for Help (v1)
Topic: activation cut, copy,paste shurtcut keys in shell.explorer activex
Replies: 2
Views: 1015

Re: activation cut, copy,paste shurtcut keys in shell.explorer activex

i try it but it is not working in syslistview322 control. That's a good question that would interest me too. :) The following method described from jethrow seems to work only for real HTML-documents, found here: https://autohotkey.com/board/topic/74201-html-activex-copy/ html = ( <html> <body>Why I ...
by GS SAHU
02 Jan 2019, 04:13
Forum: Ask for Help (v1)
Topic: activation cut, copy,paste shurtcut keys in shell.explorer activex
Replies: 2
Views: 1015

activation cut, copy,paste shurtcut keys in shell.explorer activex

i want to make a file explorer(two penal) with working in two folder in shell.explorer context menu is working but shurtcut key are not working as ctrl+c,ctrl+a,ctrl+x,ctrl+v pls. help for shurtcut key activation and connect event with return full path. #NoEnv SendMode Input SetWorkingDir %A_ScriptD...
by GS SAHU
06 Mar 2017, 06:26
Forum: Scripts and Functions (v1)
Topic: Copy filepath to clipboard in Windows Explorer
Replies: 18
Views: 14928

Re: Copy filepath to clipboard in Windows Explorer

thanks
i did not see that.
by GS SAHU
06 Mar 2017, 05:32
Forum: Scripts and Functions (v1)
Topic: Copy filepath to clipboard in Windows Explorer
Replies: 18
Views: 14928

Re: Copy filepath to clipboard in Windows Explorer

1. Create a file CopyPath.bat 2. write this line echo %1 | %windir%\system32\clip.exe 3. save file 4. open run window and type shell:sendto and enter copy file copyPath.bat to here. when you want to CopyPath of any file. right click on it and goto send to >CopyPath.bat menu selected file path will b...
by GS SAHU
02 Mar 2017, 01:53
Forum: Scripts and Functions (v1)
Topic: Dialog box Controls value Copy Paste
Replies: 3
Views: 2357

Copy Paste DialogBox all Entry new Script with Edit Entry

;Copy dailog Entry #X:: edit() return #C:: WinGet, ControlList, ControlList, A ;ToolTip, %ControlList% FileDelete , %A_ScriptDir%\cl.txt FileDelete , %A_ScriptDir%\cl.ini FileAppend , %ControlList% , %A_ScriptDir%\cl.txt FileAppend , [SETTING] `n, %A_ScriptDir%\cl.ini Loop, parse, ControlList,`n { ...
by GS SAHU
13 Feb 2017, 12:59
Forum: Ask for Help (v1)
Topic: passing parameter with hotstring
Replies: 8
Views: 3303

Re: passing parameter with hotstring

i want to write a script.
when i type.
open notepad , open wordpad , open paint, open cmd
script like that

Code: Select all

::open::
open(nextstring)
return
open(nextstring)
{
run %nextstring%.exe
}
by GS SAHU
13 Feb 2017, 12:51
Forum: Ask for Help (v1)
Topic: Ms word
Replies: 8
Views: 2007

Re: Ms word

SetTitleMatchMode 2
WinActivate, Microsoft Word
send !fi
by GS SAHU
12 Feb 2017, 12:35
Forum: Ask for Help (v1)
Topic: passing parameter with hotstring
Replies: 8
Views: 3303

Re: passing parameter with hotstring

Thanks for your reply.
%A_ThisHotkey% pass only hotstring which is define in code not pass line parameter
by GS SAHU
12 Feb 2017, 12:25
Forum: Ask for Help (v1)
Topic: Ms word
Replies: 8
Views: 2007

Re: Ms word

alt+f+i
by GS SAHU
12 Feb 2017, 12:00
Forum: Ask for Help (v1)
Topic: passing parameter with hotstring
Replies: 8
Views: 3303

passing parameter with hotstring

i want to pass parameter with hotstring.
as : when i type hello world
call hello hot string and pass world as parameter. i can pass any word in place of world

Code: Select all

::hello::
xyz(%1%)
{
msgbox %1% //show in message world
}
return
how to use parameter for passing.
by GS SAHU
28 Jan 2017, 11:20
Forum: Ask for Help (v1)
Topic: Voice Access Computer
Replies: 0
Views: 599

Voice Access Computer

google launch a voice access beta version app for android which is like a copy of Skrommel labelcontrol.ahk labelcontrol.ahk script work with LControl key. i connect android voice keyboard with help of wifi mouse app to computer.this app send hot string to computer by mobile phone. i want to help. w...
by GS SAHU
10 Aug 2016, 07:47
Forum: Other Utilities & Resources
Topic: libxlsxwriter.dll - A C library for creating Excel XLSX files
Replies: 5
Views: 8115

Re: libxlsxwriter.dll - A C library for creating Excel XLSX files

HOW TO CONTROL PAGE SETUP , PRINTING AND CELL BORDER ?
by GS SAHU
15 Jan 2016, 02:15
Forum: Scripts and Functions (v1)
Topic: Dialog box Controls value Copy Paste
Replies: 3
Views: 2357

Re: Dialog box Controls value Copy Paste

nutsogood wrote:What would I use this for? How is it initiated?
Many time i want to fill a form with same value. If i can use Ctrl c so copy only one control value. This script copy all control value on a form and fill by window key v.
Sorry for my english.
by GS SAHU
13 Dec 2015, 13:33
Forum: Scripts and Functions (v1)
Topic: Visual FoxPro prg code in ahk by com object
Replies: 0
Views: 2044

Visual FoxPro prg code in ahk by com object

I am also working in visual foxpro (database ,prg code and reporting) now i found visual foxpro com object show i want to share it. global fox fox := ComObjCreate("VisualFoxPro.Application") fox.docmd("fox_var = 10") ahk_var := 20 ;total by ahk ahk_total := ahk_var + fox.eval("fox_var") MsgBox % ahk...
by GS SAHU
05 Nov 2015, 11:04
Forum: Gaming Help (v1)
Topic: Auto Strafe Script?
Replies: 8
Views: 23354

Re: Auto Strafe Script?

I would like a script like this, i know this is possible i just don't know how to do it I move my mouse to the right and it presses D I move my mouse to the left and it presses A this code work as you wish. while 1 { MouseGetPos, x,y diff := y - oldy if (diff > 0) { send, D oldy := y } else if (dif...
by GS SAHU
05 Nov 2015, 10:31
Forum: Gaming Help (v1)
Topic: Auto Strafe Script?
Replies: 8
Views: 23354

Re: Auto Strafe Script?

I would like a script like this, i know this is possible i just don't know how to do it I move my mouse to the right and it presses D I move my mouse to the left and it presses A this code work as you wish. while 1 { MouseGetPos, x,y diff := x - oldx if (diff > 0) { send, D oldx := x } else if (dif...
by GS SAHU
05 Nov 2015, 10:09
Forum: Ask for Help (v1)
Topic: Menu status check vs hilight reflection problem
Replies: 0
Views: 860

Menu status check vs hilight reflection problem

i am trying to hook menu by hilight value of a menu but when a menu have check status its reflect check status in place of hilight value. check status value = 8 hilight value = 128 #SingleInstance,Force SetBatchLInes,-1 AutoTrim,Off DllCall("AllocConsole") global stdout global current_id Run, Notepa...
by GS SAHU
04 Nov 2015, 14:54
Forum: Scripts and Functions (v1)
Topic: Hook : Menu without dll pure ahk code
Replies: 11
Views: 5148

Hook : Menu with/without dll

Menu hook without dll pure AHK code #SingleInstance,Force SetBatchLInes,-1 AutoTrim,Off DllCall("AllocConsole") global stdout global current_id Run, Notepad.exe,,, pid WinWait, Untitled - Notepad hWnd := WinExist("ahk_pid" . pid) hModule := DllCall("LoadLibrary", "Str", "user32.dll", "Ptr") hMenu:=D...
by GS SAHU
02 Nov 2015, 13:10
Forum: Scripts and Functions (v1)
Topic: Hook : Menu without dll pure ahk code
Replies: 11
Views: 5148

Re: Hook : Menu and Button with AHK

i have AutoIt script part that hook menu without dll. but i can not success use of two function. _GUICtrlMenu_GetMenuBarInfo() _GUICtrlMenu_GetItemHighlighted() if you have know use of above function pls tell me. i want to both function in ahk. following code successfully hook menu of other applicat...
by GS SAHU
02 Nov 2015, 12:35
Forum: Scripts and Functions (v1)
Topic: Hook : Menu without dll pure ahk code
Replies: 11
Views: 5148

Re: Hook : Menu and Button with AHK

guest3456 wrote:how about a link to where you found the hook.dll?

it looks like it links to AutoIT but i cant find it
yes it links from AutoIt. and Autoit Script also attached in zip file.

Go to advanced search