Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 12/09/2013 in all areas

  1. Online Autoit Editor / Compiler v1.0 I have been lurking around these forums for years. Building everything from personal to commercial products with the help of autoit. Now im not the type to post at all. In fact i have stage fright right now as i always feel like i will say the wrong things. But when i took the time to make this for my personal use on my Windows RT table, i figured it may be nice enough to share with you guys? Its a Advanced Online Autoit editor made with ACE editor. The syntax highlighting among everything else besides the text area ACE supplied was hand made by myself. I do hope you enjoy it and im always open to any tips. And if i ever have used someone else's source along the way that i didn't give credit for, please PM me and i will make sure to do so! Now for the screen shots and site. Taste of the site: Ability to save scripts for later use, and compile to download: AU3CHECK before compiling to make sure your script works first: On the fly Auto-complete / suggestion of every autoit function: Ability to import other syntax for use (C#,Java, Etc.) and a complete customizable editor. Make it your own And these are just a few screenshots of what it can do. Any feedback is welcome! SOURCE: Online AUTOIT Editor and Compiler
    2 points
  2. JLogan3o13

    GDI Problem

    Your parameters for GraphicsDrawLine are incorrect. Try this: #include <ButtonConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #include <GuiConstantsEx.au3> #include <GDIPlus.au3> $Form1 = GUICreate("Form1", 404, 350, 192, 124) $Button1 = GUICtrlCreateButton("Go", 8,8,75,25) GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE ExitLoop Case $Button1 _GDIPlus_Startup() $hGraphics = _GDIPlus_GraphicsCreateFromHWND($Form1) _GDIPlus_GraphicsDrawLine($hGraphics,10,150,390,150) EndSwitch WEnd
    1 point
  3. iamtheky

    AutoIT or Sikuli

    Holy Shit you invented the 404? *sure edit your post and ruin my joke.
    1 point
  4. JLogan3o13

    AutoIT or Sikuli

    Without providing more information on the software, we can only suggest that you install AutoIt, read through the help file, and try something on your own. Then if you get stuck, post what you have here and we can attempt to assist.
    1 point
  5. Everyone reading the part of this thread about Goto and/or posting about it would gain considerable benefit reading Structured Programming with go to statements --a 1974 paper by Donald Knuth (again)-- if they haven't yet. Interestingly enough, this opinion fits nicely with the current news in that it's an early transpose of Mandela's "let's learn to live together in peace".
    1 point
  6. 2013-Dec-08, Changelog 1.6 > 2.0 Fixed - Hotkeys lost assignment on Win7 after a while Fixed - On Win8 systems tray icons were not extracted correctly Updated - Minor design tweaks Updated - Added WM_SYSCOMMAND handling for GUI minimize event Updated - Made "Undo last hiding" timeout optional / HMW icon now displayed in tray by default Source and Executable are available at http://www.funk.eu Best Regards
    1 point
  7. darzanmihai

    Paradox data base

    The code I used is: #include <_sql_mod.au3> #include <array.au3> $FilePath = "P:\Atto\GestPro\ARELCO.g32\" $db_adodb = _SQL_Startup() $ret = _SQL_ParadoxConnect($db_adodb, $FilePath,$FilePath) ;$ret = _SQL_ParadoxJetConnect($db_adodb, $FilePath,$FilePath) If $ret = $SQL_OK Then Local $aResult, $iRows, $iColumns $vQuery = "SELECT * FROM MRF2009" _SQL_GetTable2D($db_adodb, $vQuery, $aResult, $iRows, $iColumns) _ArrayDisplay($aResult) _SQL_Close($db_adodb) Else MsgBox(48,"Eroare","Nu merge!") EndIf where _SQL_ParadoxConnect is: Func _SQL_ParadoxConnect($ADODBHandle = -1, $sFilePath1 = "",$Dir="") $SQLErr = "" If $ADODBHandle = -1 Then $ADODBHandle = $SQL_LastConnection If Not IsObj($ADODBHandle) Then $SQLErr = "Invalid ADODB.Connection object, use _SQL_Startup()" Return SetError($SQL_ERROR, 0, $SQL_ERROR) EndIf $ADODBHandle.Open("Driver={Microsoft Paradox Driver (*.db )};DriverID=538;Fil=Paradox 5.X;DefaultDir="&$Dir&";Dbq=" & $sFilePath1 & ";CollatingSequence=ASCII;") If @error Then $SQLErr = "Connection Error" Return SetError($SQL_ERROR, 0, $SQL_ERROR) EndIf Return SetError($SQL_OK, 0, $SQL_OK) EndFunc and _SQL_ParadoxJetConnect is: Func _SQL_ParadoxJetConnect($ADODBHandle = -1, $sFilePath1 = "",$Dir="") $SQLErr = "" If $ADODBHandle = -1 Then $ADODBHandle = $SQL_LastConnection If Not IsObj($ADODBHandle) Then $SQLErr = "Invalid ADODB.Connection object, use _SQL_Startup()" Return SetError($SQL_ERROR, 0, $SQL_ERROR) EndIf ; $ADODBHandle.Open("Provider=Microsoft.Jet.OLEDB.4.0;Data Source="&$sFilePath1&";Extended Properties=Paradox 5.x;") If @error Then $SQLErr = "Connection Error" Return SetError($SQL_ERROR, 0, $SQL_ERROR) EndIf Return SetError($SQL_OK, 0, $SQL_OK) EndFunc
    1 point
×
×
  • Create New...