| Author |
Message |
Topic: v1.0.45 released: Regular Expressions (RegEx) |
Atomhrt
Replies: 19
Views: 3432
|
Forum: Announcements Posted: Mon Nov 13, 2006 10:18 pm Subject: v1.0.45 released: Regular Expressions (RegEx) |
Here are the changes for
Thanks all for these fixes... Now to regex on! |
Topic: Autohotkey Icon |
Atomhrt
Replies: 5
Views: 426
|
Forum: General Chat Posted: Wed Sep 27, 2006 4:54 pm Subject: Autohotkey Icon |
I see. Well, there is not much ways to put a capital H in a 16x16 icon with gradient background.
Classical gradients simulating natural lighting put light on (above) top left corner, so they are the ... |
Topic: Blat DLL Usage |
Atomhrt
Replies: 27
Views: 7751
|
Forum: Scripts & Functions Posted: Wed Sep 27, 2006 2:48 am Subject: Blat DLL Usage |
What is the benefit of using the dll over the command line tool?
I used the CLI in one of my scripts and it works ok.
Because you are not involving the command shell (cmd.exe) for one thing. An ex ... |
Topic: Autohotkey Icon |
Atomhrt
Replies: 5
Views: 426
|
Forum: General Chat Posted: Wed Sep 27, 2006 1:25 am Subject: Autohotkey Icon |
Bobo, I have no idea what you are talking about. Requires an image? Shared desktop?
Are you trying to say that you can't access the URL that I posted?
If you get a page that says something about ... |
Topic: Autohotkey Icon |
Atomhrt
Replies: 5
Views: 426
|
Forum: General Chat Posted: Tue Sep 26, 2006 7:38 pm Subject: Autohotkey Icon |
I was sharing a desktop with someone today, and I saw the Autohotkey icon in the system tray. I asked about it and found out that it was the icon for Bellsouth DSL Help Center.
Check out this page. ... |
Topic: VisualINI v2 |
Atomhrt
Replies: 21
Views: 3941
|
Forum: Scripts & Functions Posted: Sat Jul 15, 2006 7:06 pm Subject: VisualINI v2 |
Thanks Titan! I've been thinking of writing my own for a long time.
Found a bug - Take a ini file like this:
[section1]
0=0
1=1
2=2
Save it. The 0=0 row goes away.
Also, if you re ... |
Topic: RC4 encryption to hex stream |
Atomhrt
Replies: 14
Views: 3457
|
Forum: Scripts & Functions Posted: Fri Jul 14, 2006 4:48 pm Subject: RC4 encryption to hex stream |
This is nice, thanks! A thought...
It would be nice to hide the length of the input string by generating a output hex string that is actually longer than the input string. One way to do this is hav ... |
Topic: Blat DLL Usage |
Atomhrt
Replies: 27
Views: 7751
|
Forum: Scripts & Functions Posted: Sun Jul 02, 2006 3:33 pm Subject: Blat DLL Usage |
| I guess its function is to send a given file to a given email address. Right? Could you add a little explanation of the options or a link, where we can find them? An example application would be also ... |
Topic: Blat DLL Usage |
Atomhrt
Replies: 27
Views: 7751
|
Forum: Scripts & Functions Posted: Fri Jun 30, 2006 10:23 pm Subject: Blat DLL Usage |
| Blat is a small, efficient SMTP command line mailer for Windows. It is the SMTP *sending* part of an eMail User Agent (MUA) or eMail client. As such, Blat sends eMail via SMTP (or internet eMail) from ... |
Topic: Replace Active File |
Atomhrt
Replies: 8
Views: 513
|
Forum: Ask for Help Posted: Fri May 05, 2006 8:53 pm Subject: Replace Active File |
One way to do it is to use the API MoveFileEX call.
Win32-based applications running on Windows NT should use MoveFileEx() with the MOVEFILE_DELAY_UNTIL_REBOOT flag to move, replace, or delete file ... |
Topic: Simple Change to IniRead |
Atomhrt
Replies: 33
Views: 1872
|
Forum: Wish List Posted: Thu Apr 06, 2006 5:59 pm Subject: Simple Change to IniRead |
You can use the CharChange function below, which is slower, but can replace a char with an arbitrary string.
Cool. Thanks! |
Topic: Simple Change to IniRead |
Atomhrt
Replies: 33
Views: 1872
|
Forum: Wish List Posted: Thu Apr 06, 2006 3:37 pm Subject: Simple Change to IniRead |
This is what I was using: msgbox,% "Key Names: " . buff
...which does not work...
msgbox,Key Names: %buff%
... works fine...
Do we have a bug here? |
Topic: Simple Change to IniRead |
Atomhrt
Replies: 33
Views: 1872
|
Forum: Wish List Posted: Thu Apr 06, 2006 1:01 am Subject: Simple Change to IniRead |
| I tried it with CharReplace(buff,0,13,numchars) and it seemed to choke when it got to the first nul character in the string. In other words, it returned the first key name and then a garbage char, the ... |
Topic: Simple Change to IniRead |
Atomhrt
Replies: 33
Views: 1872
|
Forum: Wish List Posted: Wed Apr 05, 2006 10:25 pm Subject: Simple Change to IniRead |
| Ok, got it working. I had to convert the binary string to hex, change the nuls to newlines and convert the hex string back to binary. I utilized the Bin2Hex and Hex2Bin functions written by Laszlo (th ... |
Topic: Simple Change to IniRead |
Atomhrt
Replies: 33
Views: 1872
|
Forum: Wish List Posted: Wed Apr 05, 2006 8:30 pm Subject: Simple Change to IniRead |
I have the basic DllCall created and it works:
VarSetCapacity( buff, 10000 )
i:=10000
numchar:=DllCall("kernel32.dll\GetPrivateProfileString",Str,"Section",Str,"Key",S ... |
| |