| Author |
Message |
Topic: GroupBox-Add/wrap around existing controls. |
Klaus
Replies: 7
Views: 522
|
Forum: Scripts & Functions Posted: Thu Feb 09, 2012 6:51 am Subject: GroupBox-Add/wrap around existing controls. |
Nice and useful, thanks for sharing,
Klaus |
Topic: show gui edit on msgobx |
Klaus
Replies: 2
Views: 41
|
Forum: Ask for Help Posted: Thu Feb 09, 2012 6:41 am Subject: show gui edit on msgobx |
Hi, the_lord,
have a look at the red insertions:
Gui, Add, Edit, x36 y20 w170 h30 vMyEdit, edit
Gui, Add, Button, x56 y100 w120 h40 vgo, GO
Gui, Show, w243 h175, Untitled GUI
return
GuiClos ... |
Topic: Using external fucntions or scripts for oft used subroutines |
Klaus
Replies: 3
Views: 93
|
Forum: Ask for Help Posted: Mon Jan 30, 2012 7:31 am Subject: Using external fucntions or scripts for oft used subroutines |
Hi, dhays,
here some short remarks to your request:
- the extension of included files doesn't matter
- #include will execute at script start only, not at runtime
- have a look at this post "E ... |
Topic: Folder Backup |
Klaus
Replies: 3
Views: 80
|
Forum: Ask for Help Posted: Thu Nov 17, 2011 1:47 pm Subject: Folder Backup |
Hi, help@ahk,
to give you an idea:
SetTimer, myBackup, 1000 ; launch the backup job each minute, play around with the time parameter!
return
myBackup:
SetTimer, myBackup, off ; disabl ... |
Topic: Folder Backup |
Klaus
Replies: 3
Views: 80
|
Forum: Ask for Help Posted: Thu Nov 17, 2011 7:12 am Subject: Folder Backup |
Hi, help@ahk,
have a look at the AHK-commands "FileCopy" and "FileCopyDir".
After that read a little about "SetTimer" and the internal variables which hold the hours an ... |
Topic: Eliminate the task bar button of a script |
Klaus
Replies: 2
Views: 78
|
Forum: Ask for Help Posted: Fri Nov 04, 2011 11:01 am Subject: Eliminate the task bar button of a script |
Hi, CodeKiller,
thanks for the quick response!
Have a nice weekend in "Tintin et Milou"-Town!
Regards,
Klaus
And yes, it's a Gui script! |
Topic: Eliminate the task bar button of a script |
Klaus
Replies: 2
Views: 78
|
Forum: Ask for Help Posted: Fri Nov 04, 2011 8:13 am Subject: Eliminate the task bar button of a script |
Hi, Community,
Using the #NoTrayIcon already, now I'd like ot eliminate the task bar button of a running script.
I didn't find even a little hint neither in the manual nor the posts.
Any ideas?
Kl ... |
Topic: Make directories for first-letters of filenames or range and |
Klaus
Replies: 1
Views: 77
|
Forum: Ask for Help Posted: Mon Sep 19, 2011 7:47 am Subject: Make directories for first-letters of filenames or range and |
Hi, caveatrob,
try something like this
Loop, *.*
{
newDir:=SubStr(A_LoopFileName, 1,1)
IfNotExist, %newDir%
{
FileCreateDir, %newDir%
}
FileCopy, %A_L ... |
Topic: floating window |
Klaus
Replies: 7
Views: 180
|
Forum: Ask for Help Posted: Wed Aug 31, 2011 11:14 am Subject: floating window |
Hi, newtopic,
you have to keep X between 0 and A_ScreenWidth and Y between 0 and A_ScreenHeight. Additionally, you have to consider the width and height of the window that should float. "WinGetP ... |
Topic: Problem in Simple Coding |
Klaus
Replies: 1
Views: 72
|
Forum: Ask for Help Posted: Mon Aug 01, 2011 6:07 am Subject: Problem in Simple Coding |
Remove the "#".
Invent better subjects to your posts! |
Topic: Help, Vertical middle Gui Edit control |
Klaus
Replies: 5
Views: 208
|
Forum: Ask for Help Posted: Wed Jun 22, 2011 6:32 am Subject: Help, Vertical middle Gui Edit control |
Hi, zeus19,
try something like this:Gui, Add, Edit, w100 Center
Gui, Show
returnThis will do the job!
Regards,
Klaus |
Topic: TreeView click to update gui |
Klaus
Replies: 4
Views: 219
|
Forum: Ask for Help Posted: Wed Jun 22, 2011 5:53 am Subject: TreeView click to update gui |
Hi, westoncampbell,
is this what your longing for?#NoEnv
#Persistent
#SingleInstance Force
SendMode Input
SetWorkingDir %A_ScriptDir%
Gui, Add, TreeView, gclick vMyTreeView AltSubmit -Lines -B ... |
Topic: TreeView click to update gui |
Klaus
Replies: 4
Views: 219
|
Forum: Ask for Help Posted: Tue Jun 21, 2011 3:15 pm Subject: TreeView click to update gui |
Hi, westoncampbell,
first of all you have to define a g-label for your treeview. Thus, you can detect each click on a treeview-item.Gui, Add, TreeView, vMyTreeView -Lines -Buttons +0x200 +0x1000 +0x2 ... |
Topic: Tab control within a tab control (Code updated) |
Klaus
Replies: 14
Views: 1945
|
Forum: Scripts & Functions Posted: Mon May 16, 2011 11:36 am Subject: Tab control within a tab control (Code updated) |
Hi, Puzzled Greatly and adabo,
I'm glad to hear that you like the result of my efforts.
@Puzzled Greatly: I don't think that spaces will be possible in the tab names. AHK only allows a set of char ... |
Topic: Help With Dropdown List and Saving |
Klaus
Replies: 2
Views: 138
|
Forum: Ask for Help Posted: Mon May 02, 2011 5:43 am Subject: Help With Dropdown List and Saving |
Hi, Rusty,
here some hints for your request.
Here it goes: Initialize your DDL (drop down list)
Gui, Add, DDL, vmyDDL, A|B|C
Now make your choice by clicking onto a value of your DDL
At programme ... |
| |