Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 10/24/2015 in all areas

  1. shaqan, If all you want is one column then try _SQLite_GetTable. For 2 or more columns use _SQLite_GetTable2d. Your SQL stmt looks good. See the Help file for syntax. kylomas edit: The two functions I mentioned use _SQLite_FetchData and build an array for you. You could do the same by using your SQL stmt with fetchdata and doing whatever you want with the row. Way easier to use the GetTable wrapper.
    1 point
  2. I'm not sure that's even possible in SciTE. It would have to have a complete list of all possible include files, or read from a folder to get a list of them. You could try and program that yourself, but it's not something SciTE does natively. What's in scite isn't intellisense as much as it is keeping track of calltips and variable/function names. You could always look for anyone that's already done the work for you by Googling it.
    1 point
  3. @kcvinu I think is not possible , I am not sure but I think the events when "the little keyword selector appears" and "when a hotkey is pressed" differ, SciTE natively handles the first event (keyword elector) whereas the hotkey can trigger various command I am not that advanced yet , You might want to do huge amount of research or consult Jos personally to help. That is all I can say, TD
    1 point
  4. @kcvinu From (SciTE ->) Help -> SciTE Help -> SciTE4AutoIt3-Gettingstarted: As @Jos suggested, read the SciTE Help file
    1 point
  5. Maybe you should try to live with a compromise in stead of striving for "your ideal world". I honestly think the way things work now makes coding so much easier and do not see the need for all your ideas really. One thing we could look at for your #include idea is updating au3.api with something like this: example to demonstrate what i mean by adding lines 2&3 #include?2 #include<array.au3>?2 #include<date.au3>?2 #include-once?2 Jos
    1 point
  6. Look at the provided helpfile for the SciTE documentation. Should be pretty easy to figure out what the options are. Jos
    1 point
  7. @kcvinu Glad you that you like my tutorials , unfortunately I don't know the syntax of a properties file
    1 point
  8. TheDcoder, How many times do we have to tell people to make changes to SciTE properties in the "User Options File" so that their changes are not lost on upgrade when the main properties files are replaced? M23
    1 point
  9. @kcvinu Open SciTE, Options -> Open au3.properties This will open au3.properties, look around line 50, you can add your own program's option there
    1 point
  10. JanZoudlik, Indeed I do! But it is extremely rainy here today and so I have time to look at the code - no golf or flying possible. Delighted I could solve the problem so quickly - I will look to releasing a new version of the UDF soon. M23
    1 point
  11. There has never been an autocomplete available as yet in SciTE when it comes to the calltips displayed, and this is a calltip dropdown, not an AutoComplete. Jos
    1 point
  12. How have you done item 2? Was that with autoit3 using the scite director interface? As to a tutorial for SciTE and Lua: The linked site is quite nice to start and learn some of the options available. Jos
    1 point
  13. You are using it wrong you get @error = 7 == $XML_ERR_ISNOTVALIDNODES Try this: Local $oXMLDoc = _XML_CreateDOMDocument() _XML_Load($oXMLDoc, "settings.xml") MsgBox(64, "", _XML_NodeExists($oXMLDoc, "Settings/node0")) ; Return 1 ok Local $oNode = _XML_SelectSingleNode($oXMLDoc, "Settings/node0") MsgBox(64, "", _XML_GetNodeAttributeValue($oNode, "type") & @CRLF & "@Error Code :" & @error) ; return 0 | @error code = 7As you can see this should work. Focus on function name: _XML_GetNodeAttributeValue this Function expect SingleNode not Nodes so you should use _XML_SelectSingleNode I'm thinking about : about such a change $XML_ERR_ISNOTVALIDNODES >> $XML_ERR_ISNOTVALIDNODETYPE
    1 point
  14. @Jos Thanks for the reply. So the ball is in my cort now, isn;t it ?. I have already made a tool to accomplish the task in number 2. And number 4 is under construction. None of them are in Lua. Because i never saw a tutorial on that. I can easily learn basics of lua. But i think i need proper turorials to work with Lua + SciTE
    1 point
  15. It does already. There are up/down arrows shown at the beginning of the line which allows you the scroll through them.Could be a nice one to do in LUA maybe? It should show all *.au3 files located in the script directory and defined in openpath.$(au3). Example how to build a custom AutoComplete.. That could conflict when an UDF name is similar to a variable name. So can;t see that working.Abbrevs can do that and also could imagine a LUA script could do this. Looks like you have a couple of nice challenges to work on for the coming period (2 & 4) Jos
    1 point
  16. 1 point
  17. The best way is always: Discuss here on the fourm. If we "community" come to any conclusion then if it is needed any body involved in discusion can open a ticket.
    1 point
  18. Just Add this Theread (URL) to that ones TrackTicket as a reference to discussion. EDIT: As I see it a little wider REQUEST in relation to my request.
    1 point
  19. mLipok

    Use Example

    oops As I see this place : C:\Program Files (x86)\AutoIt3\Examples\GUI\Advanced\ it was very long ago, when the latter was visited by my person (although this directory is very important for me ) First try to make it works beetwen two computers in the same network. Next try to use it with external network but check your ALL FIREWALLs (Software and Hardware ie. in your router).
    1 point
  20. mLipok

    Use Example

    Not exactly. Named Pipes: https://msdn.microsoft.com/en-us/library/windows/desktop/aa365590(v=vs.85).aspx Named Pipes vs. TCP/IP Sockets: https://technet.microsoft.com/en-us/library/aa178138(v=sql.80).aspx http://stackoverflow.com/questions/175579/what-are-named-pipes
    1 point
  21. Jos

    Use Example

    These Namd pipes are used for interprocess communication, not to communicate over a Layer 2 network (TCPIP) as far as I know. You will have to use the TCPIP functions in case you want to establish a message transfer between computers. Jos
    1 point
  22. Great sorrow Is there something you know that this functionality was previously requested here: http://sourceforge.net/p/scintilla/feature-requests/ ?? @TheDcoder As @Jos say he is using standard SciTE distribution (as I know with small modyfication). So AutoIt Track is not good place to post Feature Request. It should be requested as I ask @Jos above. Of course if you or @kcvinu wants then, you can make your own Feature Request to the scintilla project. mLipok
    1 point
  23. mLipok

    Use Example

    Where you found this files ?
    1 point
  24. Jos

    Use Example

    It could help if you give the needed info first. what are those scripts you talk about? Jos
    1 point
  25. here is some new update description (not yet published) : So just use _XML_CreateChildWAttr() btw. Working on update and new examples.
    1 point
  26. Jos

    Scintilla Editor experiment

    Pretty sure somebody else has create an editor in AutoIt using Scintilla and posted about it in the forum. Maybe look for that. Also ISN AutoIt Studio is based on Scintilla. Jos
    1 point
  27. Melba23

    Signatures

    Hi, The latest forum upgrade seems to have completely messed up some complex signatures - please check yours to make sure it is still as you want it to appear. And can I take this opportunity to remind you all that sigs should not be too large (think of using a spoiler to hide text walls) nor advertise external products. Be prepared to find them edited if we think they do not meet these requirements. M23
    1 point
×
×
  • Create New...