| Author |
Message |
Topic: Autohotkey for Pocket PCs / WinCE |
Hedonist
Replies: 138
Views: 13783
|
Forum: Scripts & Functions Posted: Mon Jul 21, 2008 4:35 pm Subject: Autohotkey for Pocket PCs / WinCE |
| Ok.. I narrowed it down. The extra data is coming from the edit box. Not from the GuiControlGet or even the loop, parse. Even when I do a ControlSetText to set the edit box to blank it still retains s ... |
Topic: How to insert a variable into every line of a lisbox? |
Hedonist
Replies: 25
Views: 440
|
Forum: Ask for Help Posted: Mon Jul 21, 2008 4:08 pm Subject: How to insert a variable into every line of a lisbox? |
| That was a good idea. That is what I was doing with the server=. Unfortunately the ControlSetText didn't work either. I did a msgbox after the command and it shows that the command is blanking the dat ... |
Topic: How to insert a variable into every line of a lisbox? |
Hedonist
Replies: 25
Views: 440
|
Forum: Ask for Help Posted: Mon Jul 21, 2008 2:39 pm Subject: How to insert a variable into every line of a lisbox? |
| I tried a Gui, Submit. I still get the same result. This tells me that there is nothing wrong with the way I am retrieving the data from the edit box, but something wrong with the gui, edit box. |
Topic: How to insert a variable into every line of a lisbox? |
Hedonist
Replies: 25
Views: 440
|
Forum: Ask for Help Posted: Mon Jul 21, 2008 1:23 pm Subject: How to insert a variable into every line of a lisbox? |
| You won't be able to test the code unless you have a Windows CE device. The code works fine in Windows XP, but populates the extra data in Windows CE. I can try a Gui, Submit. I'm not sure it will hel ... |
Topic: How to insert a variable into every line of a lisbox? |
Hedonist
Replies: 25
Views: 440
|
Forum: Ask for Help Posted: Sun Jul 20, 2008 2:27 pm Subject: How to insert a variable into every line of a lisbox? |
| bump |
Topic: How to insert a variable into every line of a lisbox? |
Hedonist
Replies: 25
Views: 440
|
Forum: Ask for Help Posted: Mon Jul 14, 2008 10:48 pm Subject: How to insert a variable into every line of a lisbox? |
| I am not using a server.txt file. I am entering the data with a bar code scanner. It gets populated in a Gui Edit Box. Then I retrieve it from there with GuiControlGet and parse the data to eliminate ... |
Topic: How to insert a variable into every line of a lisbox? |
Hedonist
Replies: 25
Views: 440
|
Forum: Ask for Help Posted: Mon Jul 14, 2008 3:00 pm Subject: How to insert a variable into every line of a lisbox? |
A text file would look just like the list. When I do a guicontrolget it looks like.
Server1
Server2
Server3
Server4
Then I do a loop parse and I get.
Server1,Grid1,
Server2,Grid1,
Server ... |
Topic: How to insert a variable into every line of a lisbox? |
Hedonist
Replies: 25
Views: 440
|
Forum: Ask for Help Posted: Wed Jul 09, 2008 12:45 pm Subject: How to insert a variable into every line of a lisbox? |
| I can have it create a server.txt file when the initial data is collected. But I will still need to eliminate blank lines and organize the text to have the grid location. Man that gets messy too. I wi ... |
Topic: How to insert a variable into every line of a lisbox? |
Hedonist
Replies: 25
Views: 440
|
Forum: Ask for Help Posted: Tue Jul 08, 2008 11:37 pm Subject: How to insert a variable into every line of a lisbox? |
SKAN,
That worked real well in Windows XP, but I am writing this for Windows CE. I get some real strange results when I run it in CE. Here is the link if you want to know more.
http://www.autohotk ... |
Topic: Autohotkey for Pocket PCs / WinCE |
Hedonist
Replies: 138
Views: 13783
|
Forum: Scripts & Functions Posted: Tue Jul 08, 2008 12:39 am Subject: Needs some help. |
I am trying to make a little inventory program for a hand held scanner in order to track servers in my data center. The program works fine in Windows XP, but I get some strange results in CE.
Here' ... |
Topic: How can I get a loop, parse to ignore or delete blank lines? |
Hedonist
Replies: 3
Views: 73
|
Forum: Ask for Help Posted: Mon Jul 07, 2008 10:23 pm Subject: How can I get a loop, parse to ignore or delete blank lines? |
Got it thanks to member SKAN.
GuiControlGet,servers,,Edit1,
loop, parse, servers, `n, `r
{
ifequal,a_loopfield,, continue
newservers .= (( A_Index = 1 ) ? "" : ... |
Topic: How to insert a variable into every line of a lisbox? |
Hedonist
Replies: 25
Views: 440
|
Forum: Ask for Help Posted: Mon Jul 07, 2008 10:21 pm Subject: How to insert a variable into every line of a lisbox? |
| That's it.. Thanks so much. |
Topic: How can I get a loop, parse to ignore or delete blank lines? |
Hedonist
Replies: 3
Views: 73
|
Forum: Ask for Help Posted: Mon Jul 07, 2008 9:27 pm Subject: How can I get a loop, parse to ignore or delete blank lines? |
Any help?
At this point I would settle for editing the string. I thought I could do it with StringReplace, but I can't figure it out. |
Topic: How can I get a loop, parse to ignore or delete blank lines? |
Hedonist
Replies: 3
Views: 73
|
Forum: Ask for Help Posted: Mon Jul 07, 2008 7:31 pm Subject: How can I get a loop, parse to ignore or delete blank lines? |
| I am trying to get data from a gui edit box then input a common value at the beginning of every line. The problem I have is that each entry ends with a carriage return, so I end up with a blank line a ... |
Topic: How to insert a variable into every line of a lisbox? |
Hedonist
Replies: 25
Views: 440
|
Forum: Ask for Help Posted: Mon Jul 07, 2008 2:36 pm Subject: How to insert a variable into every line of a lisbox? |
That didn't work. It isn't omitting the blank line at the end of the list. I have to leave a carriage return after every entry. That is how the scanner that I am using works.
My list looks like thi ... |
| |