
Starf0x
Active Members-
Posts
44 -
Joined
-
Last visited
Everything posted by Starf0x
-
Windows Security Interferes with Compiling
Starf0x replied to coffeeturtle's topic in AutoIt General Help and Support
Hi coffeeturtle, I've circumvented this by not using upx as compression of the executable during compilation. Cheers, Starf0x -
Problems with the Inputboxes
Starf0x replied to Misomaniac's topic in AutoIt General Help and Support
Hi, So if I look at the code, where do you want the name and age to appear? If it is in the input boxes, (eitherway) you should use different variables for the function key send. Cheers. -
Hi Flaterik, It might be a better idea to see why the program needs admin rights and open these area's for the normal user. Regards, Starf0x
-
http://bfy.tw/Dlzv
-
Don't keep us in suspense, what are you planning to do? Cheers, Starf0x
-
File Description Remove in Tray Tip Balloon?
Starf0x replied to iAmNewbe's topic in AutoIt General Help and Support
Hi, My suggestion would be to adapt the file description, rather easy. Cheers. -
How do you manage version control?
Starf0x replied to ViciousXUSMC's topic in AutoIt General Help and Support
Hi, I use ISN Studio (for AutoIT) has an builtin versioning control. Cheers. -
RunAs GUI with credential manager
Starf0x replied to colombeen's topic in AutoIt General Help and Support
Hi, I'm a big fan of portability, so all my programs contain ini files. I've written an app for my current customer which save s the password in the ini file (encrypted). Keep in mind, AutoIT can be decompiled, so the seed for encrypting the password can easily be read. Registry is not my forte, just because then the 'config' file of windows would be even bigger to read at startup. Have Fun. -
That was rude caskka.
-
Or you can do this: #AutoIt3Wrapper_Res_File_Add=Sqllite.dll, RT_RCDATA, BIN_DLL ; This file is added during compilation. #include <ResourcesEx.au3> _Resource_SaveToFile('Sqllite.dll', 'BIN_DLL') ; This must be done at startup Cheers, Starf0x
-
Write Output to a Text File for Logging
Starf0x replied to MathewThomas's topic in AutoIt General Help and Support
Who said I was perfect? -
Just show the code, and we'll help. Cheers, Starf0x
-
Write Output to a Text File for Logging
Starf0x replied to MathewThomas's topic in AutoIt General Help and Support
I use: #include <File.au3> Func _WriteErrorLog($ErrorMessage) Local $Logfile = @WorkingDir & "\" & @ScriptName & ".log" Local $errorFile = $Logfile Local $LogTime = @HOUR & ":" & @MIN & ":" & @SEC Local $hFileOpen = FileOpen($errorFile, 9) FileWriteLine($hFileOpen, $LogTime & " " & $ErrorMessage & @CRLF) FileClose($hFileOpen) EndFunc ;==>WriteErrorLog Cheers, Starf0x -
Send you a message and posted on your forum
- 995 replies
-
- isn autoit studio
- isn
-
(and 3 more)
Tagged with:
-
Integrating into a different product
Starf0x replied to Talia's topic in AutoIt General Help and Support
Of course this is possible, what would hinder you to do this? Create the AutoIT App and add it as an scheduled task. Cheers, Starf0x -
See, I was stuck, how obvious could it be. Thank You Water. Cheers, Starf0x
-
Hi, I'm a bit stuck (my brains might be hanging in a loop). Here's my dillema, what if there is no command line parameters are given? Global $aCmdLine = _WinAPI_CommandLineToArgv($CmdLineRaw) I've tried this, and more: If UBound($aCmdLine) - 1 < 1 Then ConsoleWriteError(@CRLF & "For more information use: " & @ScriptName & " /?" & @CRLF) Exit EndIf This works, the program doesn't continue, but doesn't show the ConsoleWrite, I've tried sleeps etc... Cheers, Starf0x
-
Hi, Your Forum errors: Your message contains too few characters. [phpBB Debug] PHP Warning: in file [ROOT]/includes/message_parser.php on line 86: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead So I'm posting this here: Hi, I have a problem to run USkin, have a look: #AutoIt3Wrapper_Compression=0 #AutoIt3Wrapper_UseUpx=n #include "MyIncludes\_UskinLibrary.au3" _Uskin_LoadDLL() #include "MyIncludes\Safari.au3" _USkin_Init(_Safari(True)) #include "Form\frmMain.isf" Is this because I use .isf files? Kind Regards, Alim
- 995 replies
-
- isn autoit studio
- isn
-
(and 3 more)
Tagged with:
-
You're welcome. Thanks for sharing so others also have a chance for an solution. Cheers, Starf0x
-
Think about this, you said the last digits are different the rest is the same: " erwin Data Modeler" So do a check to see if that piece of text exists, and then you have the filename.
-
Use: StringInStr ( "string", "substring" [, casesense = 0 [, occurrence = 1 [, start = 1 [, count]]]] ) Kind Regards, Starf0x
-
Running a command via command prompt in AutoIt
Starf0x replied to Hyflex's topic in AutoIt General Help and Support
Or: Run($sServer & $sParms, $sWorkingDir) No need to run any DOS Command. -
I don't know which editor you use, but if it is scite, press Ctrl+t in the code window. It cleans it a bit. Cheers, Starf0x