Jump to content

0x90

Members
  • Posts

    3
  • Joined

  • Last visited

Reputation Activity

  1. Like
    0x90 reacted to ptrex in .NET Common Language Runtime (CLR) Framework   
    WHAT : is .NET Common Language Runtime (CLR) Framework
    The Common Language Runtime (CLR) is a an Execution Environment . Common Language Runtime (CLR)'s main tasks are to convert the .NET Managed Code to native code, manage running code like a Virtual Machine, and also controls the interaction with the Operating System.
    As part of Microsoft's .NET Framework, the Common Language Runtime (CLR) is managing the execution of programs written in any of several supported languages. Allowing them to share common object-oriented classes written in any of the languages.
    HOW : To access the CLR environment you need to create an Appdomain Object - _CLR_GetDefaultDomain()
    An AppDomain provides an isolated region in which code runs inside of an existing process.
    Application domains provide an isolation boundary for security, reliability, and versioning, and for unloading assemblies. Application domains are typically created by runtime hosts, which are responsible for bootstrapping the common language runtime before an application is run.
    WHEN : Would you use CLR Runtime Hosts
      1. To access  .NET Class Libraries :
    System System.Collections System.Data System.Drawing System.IO System.Text System.Threading System.Timers System.Web System.Web.Services System.Windows.Forms System.Xml   2. Accessing custom build .Net Assemblies :
      Some Examples (but there are a ton out there)
    AutoItX3 - The .NET Assembly for using AutoItX JSonToXML libr. XMLRPC Libr. .NETPDF libr. .NETOCR Libr WInSCP Libr.  ...   3. To Compile .Net Code into an Assembly
      4. To Run C# or VB.net Code
      5. To Mix AU3 and .Net functionality in your Application
     
    WHERE :  To find documentation about CLR
    First of all you can find a lot on MSDN and here  : Post 4 & Post 6
     
    EXAMPLES : Multiple examples included in Zip !!
    Example : “System.Text.UTF8Encoding”

    Example : “System.IO.FileInfo”

    Example : “System.Windows.Forms”

    Example : AutoItX3 Custom .NET Assembly AutoItX

    Example : Compile Code C# and Code VB

    Example : Compile Code C# at Runtime

     
    WHO : Created the CLR.au3 UDF
    All credits go to : Danyfirex / Larsj / Trancexx  / Junkew
     
    TO DO : The library is still Work in Process …
    (Some of the GUI Controls are not yet working as expected...)
    Anyone is free to participate in contributing to get the bugs resolved and to expand the CLR.au3 functionality ...
    Enjoy !!
    DOWNLOADS :  (Last updated) 
    - added CLR Constants.au3 - Danyfirex
        - Global Constants added (Magic numbers)
    - added .NET CLR CreateObject vs ObjCreate Example.au3 - Junkew
             • 2 approaches give the same result (only valid for COM Visible Assembly)
             • Includes a function that shows you which Assembly Classes are COM Visible
    - added .Net Conventional COM Objects Examples - ptrex
    - added .NET CLR CreateComInstanceFrom Example - Danyfirex
        - You can use it for Regfree COM Assembly Access
        - System.Activator has 4 methods :
            • CreateComInstanceFrom : Used to create instances of COM objects.
            • CreateInstanceFrom : Used to create a reference to an object from a particular assembly and type name.
            • GetObject : Used when marshaling objects.
            • CreateInstance : Used to create local or remote instances of an object.
    - added .NET Access SafeArrays Using AccVarsUtilities Example - LarsJ
    - added SafeArray Utilities functions in Includes - LarsJ 
    - added .NET Access Native MSCorLib Classes - System - ptrex
        Multiple System Class Examples :
             • System.Random
             •  System.DateTime
             •  System.Diagnostics.PerformanceCounter
             •  System.IO.FileInfo
             •  System.Int32
             •  System.Double
             •  System.Speech
             • System.Web
    - added Third Party Assembly Access - ptrex
             • WinSCP : https://winscp.net/eng/download.php
             • IonicZip : http://dotnetzip.codeplex.com/
    - added more Examples using PowerShell GUI Assembly Access - ptrex 
             •  GUI Ribbon .NET Assembly using  CLR Library 
             •  GUI Report Designer .NET Assembly using  CLR Library
             •  GUI SSRS Reporting .NET Assembly using  CLR Library
     
    CLRv3a.zip
    .NET CLR Framework for AutoIT.pdf
  2. Like
    0x90 reacted to jaberwacky in Looping through a string?   
    If you're sring contains too many characters to fit neatly into an array then you could do this...

    A string can contain around 2 billion characters and an array can contain around 16 million elements.

    Of course you'll wanna spend some time making it more robust and customized to your needs.


    Global Const $string = "HELLO AUTOIT!" Global Const $length = StringLen($string) Global $char For $i = 1 To $length $char = StringMid($string, $i, 1) ConsoleWrite($char & @TAB & $i & @LF) Next
  3. Like
    0x90 reacted to JohnOne in Creating a Finder Tool Widget?   
×
×
  • Create New...