-
Posts
332 -
Joined
-
Last visited
About Tlem
- Birthday 07/31/1967
Profile Information
-
Location
Bordeaux (France)
-
WWW
https://www.autoitscript.fr
Recent Profile Visitors
Tlem's Achievements
Universalist (7/7)
9
Reputation
-
abberration reacted to a post in a topic: Make a DLL that contains icons or other pictures
-
Help File/Documentation Issues. (Discussion Only)
Tlem replied to guinness's topic in AutoIt Technical Discussion
I take this answer as it is. Thank you for this clarification -
Help File/Documentation Issues. (Discussion Only)
Tlem replied to guinness's topic in AutoIt Technical Discussion
I know all of that. I just want to know if it's wanted or if it's a bug of the file that compile the html file. -
Help File/Documentation Issues. (Discussion Only)
Tlem replied to guinness's topic in AutoIt Technical Discussion
Hi, You can find it in the sources files of the documentation here : https://www.autoitscript.com/autoit3/files/archive/autoit/ The last one is : https://www.autoitscript.com/autoit3/files/archive/autoit/autoit-docs-v3.3.14.5-src.zip And the file is in \docs\autoit\english -
Help File/Documentation Issues. (Discussion Only)
Tlem replied to guinness's topic in AutoIt Technical Discussion
Hi, In Helpfile, history.htm stop at version 3.2.0.1. In autoit_changelog.txt we can see history until 3.0.32. Is this wanted or is it related to the format of the version number that Gen_Changelog.au3 can not handle? -
Digital Signatures and Timestamp with SSL Certificates
Tlem replied to usabrad86's topic in Developer General Discussion
Extract from my tutorial : Download : .NET Framework 2.0 Software Development Kit (SDK) (x86) or .NET Framework 2.0 Software Development Kit (SDK) (x64) With SevenZip, open the Setup.exe and open again the netfxsd1.cab. From there you can extract where you want : With the first 2 tools you can use signgui. With the other, you can create your selfcert (read my tuto). And for exporting your certificate : pvkimprt.exe -
Digital Signatures and Timestamp with SSL Certificates
Tlem replied to usabrad86's topic in Developer General Discussion
Well, I have no time to make debugging for that, but to make what you want, I think you probably should use this : http://www.briggsoft.com/signgui.htm If you can understand French, you can read this tuto that I have wrote in 2011. ^^ -
Digital Signatures and Timestamp with SSL Certificates
Tlem replied to usabrad86's topic in Developer General Discussion
I confirm that this script is very old. It was intented tu ran on AutoIt v3.3.8.x. And I'm not sure that Timestamp link is still ok. Maybe it must be updated tu run on new version of AutoIt (COM handling and script breaking). ^^ -
Digital Signatures and Timestamp with SSL Certificates
Tlem replied to usabrad86's topic in Developer General Discussion
Have you this requirement? -
Digital Signatures and Timestamp with SSL Certificates
Tlem replied to usabrad86's topic in Developer General Discussion
Hi Tadis. It seems that there is a notation error. Move the double quote after </a> I have edited my previous example code. $oSignerCode.Timestamp("<a href='http://timestamp.verisign.com/scripts/timestamp.dll' class='bbc_url' title='External link' rel='nofollow external'>http://timestamp.verisign.com/scripts/timestamp.dll"</a>) should be $oSignerCode.Timestamp("<a href='http://timestamp.verisign.com/scripts/timestamp.dll' class='bbc_url' title='External link' rel='nofollow external'>http://timestamp.verisign.com/scripts/timestamp.dll</a>") -
Run as Elevated Admin from Standard User Account
Tlem replied to AmbientMike's topic in AutoIt General Help and Support
On the second case, if you put the Admin username / password on the box, the script run exactly like on a admin session? -
Run as Elevated Admin from Standard User Account
Tlem replied to AmbientMike's topic in AutoIt General Help and Support
@AmbientMike For my knowledge, when you launch the script with a right clic on it an you chose launch with admin right what's going on? Did he run correctly? -
How to save every version of a script in SciTE
Tlem replied to Docfxit's topic in AutoIt General Help and Support
On the same idea of Bowmore, you can use this : #AutoIt3Wrapper_Run_Before=MKDIR "%scriptdir%\Archive" #AutoIt3Wrapper_Run_After=copy "%in%" "%scriptdir%\Archive\%scriptfile%.%date:~6,4%%date:~3,2%%date:~0,2%-%Time:~0,2%%Time:~3,2%%Time:~6,2%.au3" No need to use automatic revision incrementation and with this, you can play with date and time variables to create your hown "serial number" or revision system. -
perfaram reacted to a post in a topic: Using resource DLLs
-
Can you share your solution ... And close the french topic.
-
I had perfectly understood, but guinness have plan to rewrite original function, not to change its functioning. So if you do like that, it will be a script breaking and I doubt that guinness will be agree.
-
Hem, hem, DXRW4E sorry to disturb this topic again, but I would like to add some informations about the code you put in post #98. You show testing between 3 functions, but one of them does not work in the same way ! _FileWriteToLineEx() does not write directly in file. So testing like it is showing is not impartial! This function is incredibly faster for multiple treatments in a single pass (if you have to change/add/delete multiple lines in a file) because you read data in memory and do treatments directly before writing file. So it's a good thing to keep it, but be careful of the amount of data stored in $Data ... ^^ On the other hand, the syntax of the first two functions is still not identical to the current one : FonctionName($sFile, $iLine, $sText)