Jump to content

TheDcoder

Active Members
  • Posts

    7,103
  • Joined

  • Days Won

    88

Everything posted by TheDcoder

  1. @steveeye Just to point you in the right direction: https://www.sitepoint.com/12-amazing-jquery-tables/
  2. I think you wanted to link to this page: http://markstout.blogspot.in/2017/06/why-i-use-autoit-3-for-many-of-my.html
  3. Those documents are very technical... something a 16 year old couldn't understand Only the introduction paragraphs are visible, rest of the pages starting from the contents require a paid subscription
  4. I guess my answer is "No" to all of our question, I don't even know what a "cryptographic card" is. But from what I have read until now, it looks like something the government approves and treats it equal to a handwritten (drawn?) signature. No wonder why they are still using Java applets for this technology... They are not interested in migrating this tech to newer software/hardware frameworks because in this point of time we have much simpler things which can be equally secure(?)... I am referring to PGP in particular
  5. I think it would be fair to say that JavaScript is taking the place of Java Applets... especially after the invention of asm.js (and source-to-source compilers like Emscripten). Many have converted cryptographic libraries like OpenSSL. This allows cryptographic operations (signing, verifying, decrypting and encrypting) in the browser itself. A good example would be Keybase.
  6. Ummm... isn't it AutoIt's syntax? As far as I know, SciTE only does code highlighting and wraps other excellent wrappers like Au3Check I don't get the point of this thread...
  7. A simple DuckDuckGo search of your thread's title yields many results like this: https://stackoverflow.com/questions/256370/fatal-clr-error-80004005
  8. Hello, can anyone have a look at this question that I posted at StackOverflow?: https://stackoverflow.com/questions/43841450/uiautomation-wont-work-in-a-vps-if-i-am-not-connected-via-rdp I know that it is not encouraged to link to questions on other sites but I thought it would be more suited there than here at the AutoIt Forum... I have tried many things since I asked that question but none worked, I am very desperate to get to the bottom of this hence I wrote this post . P.S I asked that at 8th of May
  9. @ISI360 Your isf file works ! But when I change the background colour of hostname to white (0xFFFFFF) it doesn't work . Probably the bug is only triggered when the background is white... Can you please test it once? I get a gray background instead of white
  10. Good Joke @JLogan3o13
  11. Also not to mention that we also have an IRC channel at freenode
  12. I think I found a bug in the Form Studio: Read only input controls are not being coloured in my GUI: Test.isf (Ignore the GUI, I am too lazy so I uploaded the GUI that I was working on...) Also here is the code which was generated by my Form Studio: ; -- Created with ISN Form Studio 2 for ISN AutoIt Studio -- ; #include <StaticConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #Include <GuiButton.au3> #include <EditConstants.au3> ;Opt("GUIOnEventMode", 1) Global $h_MainGUI = GUICreate("ProxAllium",580,350,-1,-1,$WS_OVERLAPPEDWINDOW,-1) GUISetOnEvent($GUI_EVENT_CLOSE, "GUI_WindowExit", $h_MainGUI) GUICtrlCreateGroup("Proxy Details",5,5,570,117,-1,-1) GUICtrlSetBkColor(-1,"0xF0F0F0") GUICtrlCreateLabel("Hostname:",10,27,60,15,-1,-1) GUICtrlSetBkColor(-1,"-2") GUICtrlCreateInput("localhost",73,22,396,20,$ES_READONLY,$WS_EX_CLIENTEDGE) GUICtrlCreateInput("127.0.0.1",73,47,396,20,$ES_READONLY,$WS_EX_CLIENTEDGE) GUICtrlCreateLabel("IP Address:",10,52,60,15,-1,-1) GUICtrlSetBkColor(-1,"-2") GUICtrlCreateInput("",73,72,396,20,$ES_READONLY,$WS_EX_CLIENTEDGE) GUICtrlCreateLabel("Port:",10,77,60,15,-1,-1) GUICtrlSetBkColor(-1,"-2") GUICtrlCreateInput("SOCKS5",73,97,396,20,$ES_READONLY,$WS_EX_CLIENTEDGE) GUICtrlCreateLabel("Proxy Type:",10,102,60,15,-1,-1) GUICtrlSetBkColor(-1,"-2") GUICtrlCreateGroup("Control Panel",5,192,570,42,-1,-1) GUICtrlSetBkColor(-1,"0xF0F0F0") GUICtrlCreateInput("",48,208,438,20,BitOr($ES_CENTER,$ES_READONLY),$WS_EX_CLIENTEDGE) GUICtrlCreateLabel("Status:",10,213,33,15,-1,-1) GUICtrlSetBkColor(-1,"-2") GUICtrlCreateButton("Start/Stop",489,207,82,22,-1,-1) GUICtrlCreateEdit("",5,238,570,107,BitOr($ES_AUTOVSCROLL,$ES_READONLY,$ES_MULTILINE,$WS_VSCROLL,$WS_HSCROLL),-1) GUICtrlSetBkColor(-1,"0xFFFFFF") GUICtrlSetResizing(-1,1) GUICtrlCreateIcon("E:\Projects\AutoIt\ProxAllium\icon.ico",-1,474,22,90,90,-1,-1) GUICtrlCreateGroup("Tor Details",5,125,570,64,-1,-1) GUICtrlSetBkColor(-1,"0xF0F0F0") GUICtrlCreateLabel("Tor PID:",10,144,60,15,-1,-1) GUICtrlSetBkColor(-1,"-2") GUICtrlCreateInput("1234",73,139,497,20,$ES_READONLY,$WS_EX_CLIENTEDGE) GUICtrlCreateInput("0.2.9.9",73,164,497,20,$ES_READONLY,$WS_EX_CLIENTEDGE) GUICtrlCreateLabel("Tor Version:",10,169,60,15,-1,-1) GUICtrlSetBkColor(-1,"-2") GUISetState(@SW_SHOW,$h_MainGUI) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd
  13. It is not possible to create a Dynamic Link Library since AutoIt is interpreted, not compiled to machine code
  14. @MarkStout Your are a new user here so you cannot access the chat forum (yet). There are a lot of recent topics regarding the same question. Is AutoIt's Development Active? The answer in a nutshell is yes, the UDFs and other things are indeed in development. Jon is just taking a break from updating the AutoIt Interpreter... fair enough because there isn't much on the ToDo list
  15. @czardas I was expressing my thoughts in the form of that question, sorry if I was not clear enough. I know that it will always fit because $eiCoord is multiplied to 2, but why? why does it need the "gap" 2 times? That was my question . I have tried using the $WS_POPUP style and same result... minus the window border, so I think that is not the issue... #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #include <EditConstants.au3> Opt("GUIOnEventMode", 1) Local Const $eiGuiWidth = 580, $eiGuiHeight = 280 Local Const $eiCoord = 10 Global $g_hLogGUI = GUICreate("Test", $eiGuiWidth, $eiGuiHeight, Default, Default, $WS_POPUP) GUISetOnEvent($GUI_EVENT_CLOSE, "GUI_WindowExit") ;GUICtrlCreateGroup("Test Group", $eiCoord, $eiCoord, $eiGuiWidth - ($eiCoord * 2), $eiGuiHeight - ($eiCoord * 2)) GUICtrlCreateEdit("", $eiCoord, $eiCoord, $eiGuiWidth - ($eiCoord * 2), $eiGuiHeight - ($eiCoord * 2)) GUISetState(@SW_SHOW, $g_hLogGUI) ; Make the GUI visible While True Sleep(1000) WEnd Func GUI_WindowExit() Exit EndFunc
  16. Hello, I am just getting started with making GUIs manually, by hand, without any tools/builders to assist me. I have discovered something strange: I am trying to fit a control (take an Edit control for example) with equal spacing on every side of the control... Something like this: I did something weird to make this happen, first I choose a coordinate for the X and Y for the Edit control, that is 4 in this GUI. I tried to remove 4 from the control's height and and width to make it space even at the right side and bottom of the GUI... but this happen when I tried that: As you can see, the Edit control is hugging the GUI frame at the bottom and right sides of the GUI... Very strange huh? I mean, it's a perfect 0 pixel gap! So I tried to double the coordinates and it worked. The GUI was evenly spaced on all side like in the first picture. This is my code: #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #include <EditConstants.au3> Opt("GUIOnEventMode", 1) Local Const $eiGuiWidth = 580, $eiGuiHeight = 280 Local Const $eiCoord = 4 Global $g_hLogGUI = GUICreate("Test", $eiGuiWidth, $eiGuiHeight, Default, Default, $WS_OVERLAPPEDWINDOW) GUISetOnEvent($GUI_EVENT_CLOSE, "GUI_WindowExit") ;GUICtrlCreateGroup("Test Group", $eiCoord, $eiCoord, $eiGuiWidth - ($eiCoord * 2), $eiGuiHeight - ($eiCoord * 2)) GUICtrlCreateEdit("", $eiCoord, $eiCoord, $eiGuiWidth - ($eiCoord * 2), $eiGuiHeight - ($eiCoord * 2)) GUISetState(@SW_SHOW, $g_hLogGUI) ; Make the GUI visible While True Sleep(1000) WEnd Func GUI_WindowExit() Exit EndFunc You can adjust $eiCoord and the edit control will always be spaced evenly... I wonder why? any explanations? Thanks in Advance P.S Sorry for the very descriptive title
  17. The script would not be working with a latest version of AutoIt because of changes in the scripting language over the years, maybe find a version from 2007 and it might work. You won't get more help than this because it is related to game automation and discussion about is not allowed according to the forum rules
  18. @Zar It is a AutoIt script and you need to install AutoIt in order to use it. P.S Resurrecting threads is generally frowned upon... especially really old ones this one. Also we do not support game automation anymore
  19. Thanks, I will look into the example . I only need to go 1 level deep, I don't need any grand children
  20. I tried to look at the script but everything is in Vietnamese so I gave up but I will offer you some general advice . Check what $USER_DETAILS contains, check what it should contain and then work your way in reverse direction deciphering the source of the contents of the array, then you will get an idea of what is going wrong But I think it is better to wait for someone, ideally the author of the script to respond at the Vietnamese forum. Good luck
  21. Hello, I have another noob question, I think I am being lazy here but I am really confused. Can you point me to a example which show how I can loop through the objects/elements/controls inside a parent object/element/control? I am trying to detect a piece of text inside a "pane", I was planning to match every element's title with a set of predefined title texts and if the text matches one of the titles, I will check if its off-screen or not and if it is not off-screen I need to capture the title and return it. Thank you for the answer in advance
×
×
  • Create New...