| Author |
Message |
Topic: Colored Controls (no bitmaps needed) |
Klaus
Replies: 12
Views: 735
|
Forum: Scripts & Functions Posted: Tue Aug 05, 2008 2:00 pm Subject: Colored Controls (no bitmaps needed) |
Hi, SKAN,
thanks for your rapid reply, now my code looks like thisGui 2: Margin, 10, 10
Gui 2: Font, s12
Gui 2: Add, Text, vTXT1 HwndTX1ID w300 y10 x10 CENTER , gefundene Zeile!
Con ... |
Topic: Colored Controls (no bitmaps needed) |
Klaus
Replies: 12
Views: 735
|
Forum: Scripts & Functions Posted: Tue Aug 05, 2008 1:15 pm Subject: Colored Controls (no bitmaps needed) |
Hi, Community,
I was very pleased to find this function to colour a control's background and text color, but I think it does not work in gui's higher than 1. Here is what I tried, it's just a slightl ... |
Topic: Newbie problem with variables/GUI |
Klaus
Replies: 7
Views: 199
|
Forum: Ask for Help Posted: Tue Jun 24, 2008 2:07 pm Subject: Newbie problem with variables/GUI |
Hi, Makinus,
just two corrections:
file1 := "nothing"
Gui, Add, Button,,File1
Gui, Add, Text, w180 vMyText, %file1% ; ===> assign a variable to the control and give a little widt ... |
Topic: Simple Key Sequence help |
Klaus
Replies: 2
Views: 91
|
Forum: Ask for Help Posted: Fri Jun 13, 2008 9:52 am Subject: Simple Key Sequence help |
Hi, Sabin0,
have a look at "Hotkey" and "Send" in the manual, they will lead you to
something likeHotkey, 1, labelHotkey1
return
labelHotkey1:
Hotkey, 1, labelHotkey1, off ... |
Topic: Newbie question Getting the list of a combo box from a file. |
Klaus
Replies: 5
Views: 128
|
Forum: Ask for Help Posted: Thu Jun 12, 2008 6:47 am Subject: Newbie question Getting the list of a combo box from a file. |
Hi, specter333,
if you want to read the content of a combo box from a file, you could
create an .INI-file with keys for each box:valueBox1=a||b|c
valueBox2=d||e|f
In the initialising phase of yo ... |
Topic: Why does KeyWait not Wait? |
Klaus
Replies: 2
Views: 110
|
Forum: Ask for Help Posted: Mon Jun 09, 2008 1:53 pm Subject: Why does KeyWait not Wait? |
Hi, pantagruel,
You should use the D-option for KeyWait (like HugoV proposed),
KeyWait, x, D
because "KeyWait,x" (means: wait until the x-key is released) is always true except x is hold ... |
Topic: Converting month (number) to month (text)? |
Klaus
Replies: 3
Views: 122
|
Forum: Ask for Help Posted: Fri May 30, 2008 9:14 am Subject: Converting month (number) to month (text)? |
Hi, 1itsolution,
try something like this
month05=May
; and so on ...
number=05
msgbox, % month%number%
return
Hope I could help,
Klaus |
Topic: ControlGetText doesn't work after hotkey pressed |
Klaus
Replies: 6
Views: 142
|
Forum: Ask for Help Posted: Mon May 26, 2008 10:12 am Subject: ControlGetText doesn't work after hotkey pressed |
Thank you, Guest,
that's the solution , although I do not understand the technical background.
Pressing the button, ControlTextGet works without coding the window's name,
but using the hotkey, the ... |
Topic: ControlGetText doesn't work after hotkey pressed |
Klaus
Replies: 6
Views: 142
|
Forum: Ask for Help Posted: Mon May 26, 2008 9:16 am Subject: ControlGetText doesn't work after hotkey pressed |
Hi, Community,
have a look please at my little code snippet that I isolated from a bigger application:
HotKey, !a, myLabel
Gui, Add, Edit, w100 h20 vmyEdit,10
Gui, Add, Button, gmyLabel, Add
... |
Topic: Changing Color of edit's text on the fly |
Klaus
Replies: 2
Views: 135
|
Forum: Ask for Help Posted: Wed May 14, 2008 3:57 pm Subject: Changing Color of edit's text on the fly |
Hi, Community,
this is a trivial one, for sure, but I can't solve it.
I want to change the foreground color/text color of an edit control depending on its content.
I searched the forum but couldn't ... |
Topic: Listview rows getting blue after being updated |
Klaus
Replies: 7
Views: 164
|
Forum: Ask for Help Posted: Thu May 08, 2008 7:50 am Subject: Listview rows getting blue after being updated |
Hi, Garry,
because my script which (it's a cash journal application, do you say so?) is too huge to post, here's an excerpt which shows my problem. Just let it run and all rows are blue when they are ... |
Topic: Listview rows getting blue after being updated |
Klaus
Replies: 7
Views: 164
|
Forum: Ask for Help Posted: Wed May 07, 2008 1:15 pm Subject: Listview rows getting blue after being updated |
Hi, Community,
I've got (again) a question about list views.
In a listview I have got a lot of columns which all hold numeric values.
After having added these lines to the list view, I want to read ... |
Topic: An application with several tabs with several listviews |
Klaus
Replies: 2
Views: 125
|
Forum: Ask for Help Posted: Tue Apr 29, 2008 4:49 pm Subject: An application with several tabs with several listviews |
Thank you, tic,
that's exactly the hint I needed!
Klaus |
Topic: An application with several tabs with several listviews |
Klaus
Replies: 2
Views: 125
|
Forum: Ask for Help Posted: Tue Apr 29, 2008 2:09 pm Subject: An application with several tabs with several listviews |
Hi, Community,
I stumbled into a problem wih tabs and found no solution in the manual or in the forum.
I can't show you my code, because it's a too big programme and it would be hard to isolate my p ... |
Topic: Setting variables with a GUI |
Klaus
Replies: 4
Views: 167
|
Forum: Ask for Help Posted: Mon Mar 31, 2008 6:00 am Subject: Setting variables with a GUI |
Hi, Tsincaat,
have a look at my corrections:Variable1= 10000
Variable2= 30000
Gui, Font, S10 CDefault, Verdana
Gui, Add, Button, x376 y112 w100 h30 , Exit
Gui, Add, Button, x266 y112 w100 h30 , ... |
| |