Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 11/28/2019 in all areas

  1. 27 November 2019: Uploaded a new SciTe4AutoIt3.exe v19.1127.1402.0 installer. This version contains the new SciTE 4.2.0 version. Check below for all other updates to the included utilities. ==> SciTE4AutoIt3 v19.1127.1402.0 Enjoy, Jos Addition/Changes/Fixes in the current installer: -------------------------------------------------------------------------------------------------- 27-11-2019 *** Merged the SciTE v 4.2.0 by Neil Hodgson with our own version of SciTE. (Jos) *** Updated AutoIt3Wrapper v19.1127.1402.0 (Jos)     - 19.102.1901.1 added encoding retrieval for UTF8/ANSI files so they are properly written back     - 19.102.1901.2 Exit script with 999 when update resource copy failed .     - 19.102.1901.3 Fix incrementing version number now before running au3stripper to ensure it contains the new version when increment before is requested.     - 19.102.1901.4 increment version before au3stripper when increment before is Y     - 19.102.1901.5 also update fileversion info in case of a3x compile when requested.     - 19.102.1901.7 change au3check and tidy  stop on error logic to allow for other editor programs.     - 19.102.1901.8-11 Changes to allow the program to be run by other editors.     - 19.102.1901.12 Updates Stop and Restartconsole message to indicate in case the HotKeys aren't set in case of second instance                      HotKeys are ony set when the Editor program has the focus to allow for multiple instances.     - 19.102.1901.13 Updated _RefreshSystemTray, which wasn't working anymore since a long time     - 19.102.1901.14 Added WinClose for the Shelled Script to nicely close that process before ultimately killing it when still needed. *** Updated Au3Stripper v19.1127.1402.0 (Jos)     - 19.102.1901.2 Fixed not removing #pragma lines from Included files.     - 19.102.1901.5 Fixed ternary stripping issue *** Updated SciTEConfig v19.1127.1402.0 (Jos)     - 19.524.1057.1 Fixed creation of includes.txt in userdir and  added some extra logging for adding includes to includes.txt - Some small updates to standard themes. *** Updated Tidy v19.1127.1402.0 (Jos)     - 19.524.1057.1: Fix tidy issue adding space after closing > on #include statement. -------------------------------------------------------------------------------------------------- ==> ScitillaHistory page containing all SciTE-Scintilla updates. ==> Visit the SciTE4AutoIt3 Download page for the latest versions ==> Check the online documentation for an overview of all extra's you get with this installer.
    1 point
  2. jchd

    array 2D compare

    Then I would use SQLite to store and retrieve the data, without one second of hesitation. That will also make later processing the data (statistics or detailed analysis) much easier.
    1 point
  3. @IAMK How can we help you with your code when you don't post any?
    1 point
  4. There are several issues in the code you posted -- You would never pass $tags from the first line into the second line The element you want is a button, not a div The element's class isn't "Most Advanced" Try something like this -- $oButtons = _IETagNameGetCollection($oIE, "button") For $oButton in $oButtons If String($oButton.innertext) = "Most Advanced" Then _IEAction($oButton, "click") ExitLoop EndIf Next
    1 point
  5. Caveat, I've not read the instructions! But I do see that double clicking on some of the examples, in the same way that I have with your code to edit, produces "Event error: 3" and no editing happens, perhaps there is a small bug depending on how data is added to the list? It seems when you are adding an entry it is not getting added to $aGLVEx_SrcArray so when you later try to edit it you get the problem. I'm afraid I am out of time on this and have not been much help, sorry!
    1 point
  6. Put pic controls in a separate group ... GUICreate('Example 3', 250, 150, @DesktopWidth/2 - 250) GUICtrlCreateButton('Button', 50, 0, 200, 30) GUICtrlCreateButton('Button', 50, 30, 200, 30) GUICtrlCreateButton('Button', 50, 60, 200, 30) GUICtrlCreateButton('Button', 50, 90, 200, 30) GUICtrlCreateButton('Button', 50, 120, 200, 30) GUIStartGroup() ; <== add GUICtrlCreatePic($sPic, 0, 0, 50, 30) GUICtrlCreatePic($sPic, 0, 30, 50, 30) GUICtrlCreatePic($sPic, 0, 60, 50, 30) GUICtrlCreatePic($sPic, 0, 90, 50, 30) GUICtrlCreatePic($sPic, 0, 120, 50, 30) GUISetState() ...
    1 point
  7. Version 1.5.0.0 released Changelog can be found on the download page and the history in the ZIP file. For download please see my signature below. Please play with this version and tell me what doesn't work or is missing!
    1 point
  8. are you certain there should be two l's in there?
    1 point
  9. Hi Deye. Not sure I follow. I take it you are including MCF.au3 in your script(?), as well as MCFinclude? And then you wish to encrypt the encryptor itself?! That may turn into a circular argument. In any case, MCF requires reference to MCFinclude for the encryption calls and environment set-up to work. So basically, the MCF package allows you to implement either: structure- and content-altering functionality of MCF on its own (e.g., for translation, automated code editing, etc), OR use these for encryption and/or obfuscation purposes using MCFinclude, but not both at the same time. Of course, if you're not relying on encryption functionality, you could edit MCF.au3 to remove the parts that reference content in MCFinclude, i.e., in _PhraseMCF, comment out the first loop scanning for the definition of $section2_lastline, and remove funcs _EncryptEntry and _EncryptArrays (plus the call to the latter in_RebuildScript). That would allow you to remove #include MCFinclude.au3 within MCF.
    1 point
  10. You're comparing invoicenum and invoicelinenum that is oranges and shoes.
    1 point
  11. trancexx

    TYPELIB Viewer

    So, what's this? It's a tool-script you would use when you want to know details about specific type libraries. There are some tools available on the net for the job. None written in AutoIt (take this conditionally and search for posts made by doudou). That made me wonder how hard it would be to write one from the scratch. Turned to be very demanding. TypeLib format is not officially or publicly available, at least not to my knowledge. Doing the research I found what's called The Unofficial TypeLib Data Format Specification. Sort of a must read when it comes to understanding the organization of typelib format. Script I'm posting here is written solely upon that document. I must also say that I had to do few modifications of some fields because of found inconsistencies in order to get correct readings. Also I'm doing few deliberate shortcuts mostly because of incomplete description within theircorp's document. What's covered is MSFT type of TypeLib. This obviously means there are more types. Actually one more, called SLTG TypeLib, but this one is very rare (probably less than 1/100 of all TypeLibs). GUI will certainly look familiar if you have run some of the scripts I posted recently. This time it's a wrapper for edit control. Main function is called _TLB_TypelibMSFT(). Everything else inside script serves it. What to learn from it? DllStruct manipulation maybe. But who wants that? Script: TLBViewer.au3 Try AutoItX3.dll or wscript.exe or winhttp.dll or shell32.dll or thousand more to see what this really is. Object(s) some more.
    1 point
×
×
  • Create New...