Jump to content

SelfX - (Moved)


 Share

Recommended Posts

  • Developers

Moved to the appropriate AutoIt General Help and Support forum, as the AutoIt Example Scripts forum very clearly states:

Quote

Share your cool AutoIt scripts, UDFs and applications with others.


Do not post general support questions here, instead use the AutoIt Help and Support forums.

Moderation Team

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

Yes, this is possible with AutoIt.

Creating the GUI can be done with Koda or GuiBuilder or ISN. 

To search while you type, you can read this topic.

Search While You Type

Then sorting the information: (Taken from the help file)

; using a 1D array
#include <Array.au3>
Local $avArray[10] = [9, 8, 7, 6, 5, 4, 3, 2, 1, 0]
_ArrayDisplay($avArray, "BEFORE _ArraySort()")
_ArraySort($avArray)
_ArrayDisplay($avArray, "AFTER QuickSort ascending")
_ArraySort($avArray, 1)
_ArrayDisplay($avArray, "AFTER QuickSort descending")
_ArraySort($avArray, 0, 3, 6)
_ArrayDisplay($avArray, "AFTER QuickSort from index 3 to 6")
_ArraySort($avArray, 0, 0, 0, 0, 1)
_ArrayDisplay($avArray, "AFTER DualPivotSort ascending")

You can use @UEZ Base64 string to embed the pictures or icons into the GUI.

File to Base64 String Code Generator

And using PowerShell inside AutoIt would really be very easy to do.
You can create the file:

FileWrite(C:/Location/of/File.PS1, 'Some Powershell Commands Here' & @CRLF)

Then run the file :

RunWait(@ComSpec & " /c " & 'PowerShell.exe -ExecutionPolicy Bypass -File "FixMe.PS1"', "", @SW_HIDE)

and the XML stuff? Well, you can start here.

Kind Regards
Skeletor

"Coffee: my defense against going postal."

Microsoft Office Splash Screen | Basic Notepad Program (Beginner) | Transparent Splash Screen | Full Screen UI

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...