Jump to content

Recommended Posts

Posted

doesnt this display a GUI?

#include <GUIConstants.au3>

#include <GuiList.au3>

#include <GuiListView.au3>

#include <Process.au3>

#include<Array.au3>

#include<File.au3>

;#NoTrayIcon

GUICreate("Network share authentication Module TEST",320,200)

FileDelete ( "test.txt" )

DIM $folders

$file = FileOpen("~netfldr.tmp", 1)

_FileReadToArray("~netfldr.tmp",$folders)

_ArrayDisplay( $folders, "Test" )

$CountLines = _FileCountLines("~netfldr.tmp")

for $i = 1 to $countlines

;fileopen ("test.txt")

$sArrayString = _ArrayToString($folders,@TAB, $i,$i )

FileWriteLine ( "test.txt", "[" & $sArrayString & "]" )

next

Posted

add a

While 1
sleep(100)
WEnd

to the end of that, it should work

AutoIt Console written in C#. Write au3 code right at the console :D_FileWriteToLineWrite to a specific line in a file.My UDF Libraries: MySQL UDF Library version 1.6 MySQL Database UDF's for AutoItI have stopped updating the MySQL thread above, all future updates will be on my SVN. The svn location is:kan2.sytes.net/publicsvn/mysqlnote: This will still be available, but due to my new job, and school hours, am no longer developing this udf.My business: www.hirethebrain.com Hire The Brain HireTheBrain.com Computer Consulting, Design, Assembly and RepairOh no! I've commited Scriptocide!
Posted (edited)

#include <GUIConstants.au3>
#include <GuiList.au3>
#include <GuiListView.au3>
#include <Process.au3>
#include<Array.au3>
#include<File.au3>
;#NoTrayIcon

GUICreate("Network share authentication Module TEST", 320, 200)

FileDelete("test.txt")
Dim $folders
$file = FileOpen("~netfldr.tmp", 1)
_FileReadToArray("~netfldr.tmp", $folders)
_ArrayDisplay($folders, "Test")
$CountLines = _FileCountLines("~netfldr.tmp")
For $i = 1 To $CountLines
  ;fileopen ("test.txt")
   $sArrayString = _ArrayToString($folders, @TAB, $i, $i)
   FileWriteLine("test.txt", "[" & $sArrayString & "]")
Next

GUISetState()

while 1
    $msg = GUIGetMsg()
    If $msg = $GUI_EVENT_CLOSE Then Exit
    
WEnd

Edited by gafrost

SciTE for AutoItDirections for Submitting Standard UDFs

 

Don't argue with an idiot; people watching may not be able to tell the difference.

 

Posted

Oop, forgot the GuiSetState()

:o

AutoIt Console written in C#. Write au3 code right at the console :D_FileWriteToLineWrite to a specific line in a file.My UDF Libraries: MySQL UDF Library version 1.6 MySQL Database UDF's for AutoItI have stopped updating the MySQL thread above, all future updates will be on my SVN. The svn location is:kan2.sytes.net/publicsvn/mysqlnote: This will still be available, but due to my new job, and school hours, am no longer developing this udf.My business: www.hirethebrain.com Hire The Brain HireTheBrain.com Computer Consulting, Design, Assembly and RepairOh no! I've commited Scriptocide!

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
×
×
  • Create New...