
hezi
Active Members-
Posts
33 -
Joined
-
Last visited
Content Type
Forums
Downloads
Forum Articles
Events
Everything posted by hezi
-
thanks! i will give it a try.
-
Hello all, i need some help creating simple grid in GUI. something very simple that can show me data from Array, (table 4X5) editable cells (when clicking the cell you can edit the data) then read the data to new array. im sure that someone already did this before, i found some examples in forum but not editable cells. thanks!
-
Installer Template (Updated 2-18-12)
hezi replied to LiquidNitrogen's topic in AutoIt Example Scripts
very nice thanks for sharing -
wow thats great!!! probably it will save me work... Thanks
-
both methods return me the autoit version ( 3.3.X.X) however after playing with compilation advance options i succeed to push product number to file properties. (it also can be seen from windows file properties ) now when i use FileGetVerion(@ScriptFullPath) i get the right number i pushed, and can compare it. Thanks!
-
i will try that!! thanks!
-
Hi all, i need your advice or idea how can i create auto update to my script. my big problem is how to create and read version number from compiled script. i tried use get version function but it always return the autoit version (which always the same...) using the version in script name can work (i.e my_script_1.0.1.exe) but im looking for more elegant way. can I push version or number to compilation description or something like that? (then use get version from auto it) thanks.
-
thanks guinness!
-
Cool ! thanks for quick reply! Thanks Melba23
-
is there fast and nice way to clear array? (clear all elements and probably free some memory....) i can loop to delete element until end but i look for more elegant way maybe delete and recreate array (if possible didnt find this option) thanks!
-
GUICtrlSetData not update the control
hezi replied to hezi's topic in AutoIt General Help and Support
got it! Thanks... -
GUICtrlSetData not update the control
hezi replied to hezi's topic in AutoIt General Help and Support
Thanks! it works for me. still dont understand why create and get commands are working with time only. and update require date. -
Hello All, Im trying to update the date control using "GUICtrlSetData (-1,"19:00:00")" (line 10) but somehow it ignore and not updating the control data. what im doing wrong? Thanks in advance. #include <GUIConstantsEx.au3> #include <DateTimeConstants.au3> Opt('MustDeclareVars', 1) Example4() Func Example4() Local $n, $msg ,$gui , $y $gui= GUICreate("My GUI get time", 200, 200, 800, 200) $n = GUICtrlCreateDate("20:20:21", 20, 20, 100, 20, $DTS_TIMEFORMAT) $y = GUICtrlSetData (-1,"19:00:00") MsgBox(0,@error,$y) ; Debug GUISetState() ; Run the GUI until the dialog is closed Do $msg = GUIGetMsg() Until $msg = $GUI_EVENT_CLOSE MsgBox(0, "Time", GUICtrlRead($n)) GUIDelete() EndFunc ;==>Example4
-
thanks UEZ in you example, i cant change the clock from GUI, it created by Labal.
-
Melba23, thanks for quick reply. i need simple digital clock. in a meanwhile i found: GUICtrlCreateDate("", 20, 20, 100, 20, $DTS_TIMEFORMAT) i think it does the work for me. i will try your suggestion also. thanks.
-
hello, i want to create simple GUI that presents few clocks. every one of them should be editable (after editing one of them, the rest will update accordingly) my question is: what is the best way to create control on GUI that present time format. thanks in advance.
-
thanks, actually i started learning it and it not that complicate. it very easy, I thought it require installation and extra configuration but i see it very simple and easy (for basic tasks ..open DB,read/write etc) im sure it has more complicate abilities but for now it will do i got a good answer! thanks!
-
thank you all, i need only 4-5 tables contains 10 rows each (max) . i don't think it worth using SQLite (base on the fact it will take me some time to learn how to use it) in additional there is no need to manipulate those rows only save them, and no connections between the tables.
-
thanks for reply! i meant external database like SQL\mySQL, sorry for the mix up. my goal is to load array from file edit it somehow (with gui) and save them back for future use. can i use multiple ini files? or just one per script? because maybe this can be solution for me. (use iniread/iniwrite)
-
can you please give me your suggestions, based on your experience, for keeping/loading data to script. already tried: using excel files - working good but very slow using txt files - very complicate to convert it to 2D array (but working fast ...) and save them again from 2D array. i cant use external database because it should run on different computers. those tables are small so every fast solution will do. thanks!
-
I must say it looks great, very clear and easy. im looking for this functions a long time. trying them right now... Thanks!
-
Cool, running the example looks like what i looked for.. now im trying to merge it to my code. my mistake was looking for button and ignore the checkbox.. thanks!
-
Sorry I didn't. I will give it a try. Thanks again
-
thanks for the fast reply ! i preferred not to use checkbox (for now its working with checkbox...) im looking for something more "user friendly"..
-
Hey All, i need you help with creating static button which acts like a toggle. tried to search the help file and here in the forum but no luck for me. once you push the button it stay pushed (and do some background actions....of course ) until you pushed it again. maybe im just miss the right button style.... i will be glad for some ideas. thanks in advance.