Valuater Posted September 21, 2005 Posted September 21, 2005 exactly what this does.... can read from seond ini also expandcollapse popupGlobal $macrolist[10], $macrolistdata[50] #include <GUIConstants.au3> #Include <Constants.au3> #include <array.au3> ; need this for my testing..... ok??? Dim $Location = "C:\Temp\sections.ini" Dim $Location2 = "C:\Temp\pagedetails.ini" ;===================================> GUI <======================================= GUICreate("Macro v1.0", 400, 460) $filemenu = GUICtrlCreateMenu("File") $optionsmenu = GUICtrlCreateMenu("Options") $helpmenu = GUICtrlCreateMenu("?") $fileitem = GUICtrlCreateMenuItem("Exit", $filemenu) $button = GUICtrlCreateButton("New", 335, 15, 60) $btnsave = GUICtrlCreateButton("Save", 335, 145, 60) $treeview = GUICtrlCreateTreeView(6, 6, 200, 250, BitOR($tvs_hasbuttons, $tvs_haslines, $tvs_linesatroot, $tvs_disabledragdrop, $tvs_showselalways), $ws_ex_clientedge) $sections = IniReadSectionNames($Location) If @error Then MsgBox(4096, "", "Error occured, probably no INI file.") Else For $i = 1 To $sections[0] $keys = IniReadSection($Location, $sections[$i]) $item = GUICtrlCreateTreeViewItem($sections[$i], $treeview) For $x = 1 To $keys[0][0] GUICtrlCreateTreeViewItem($keys[$x][0], $item) Next Next EndIf GUISetState() ;================================> End GUI <====================================== While 1 $msg = GUIGetMsg() Select ;Case $msg = -3 Or $msg = -1 Or $msg = $cancelbutton Case $msg = $gui_event_close ExitLoop Case $msg = $button Call("Set_PageDetails") EndSelect Sleep(10) WEnd ; ------------------------------- Functions -------------------------------- Func Set_PageDetails() ; read the selection $item1 = GUICtrlRead($treeview) $item2 = GUICtrlRead($item1, 1) ; read the ini portion rerquested $name = IniRead($Location2, $item2[0], "Name", "NotFound") $page = IniRead($Location2, $item2[0], "Page", "NotFound") $topic = IniRead($Location2, $item2[0], "Topic", "NotFound") $status = IniRead($Location2, $item2[0], "UserStatus", "NotFound") $editstatus = IniRead($Location2, $item2[0], "EditStatus", "NotFound") $duedate = IniRead($Location2, $item2[0], "Due", "NotFound") ; display the info just read GUICtrlCreateLabel("Assigned To: ", 10, 280, 100, 20, 0x1000) GUICtrlCreateInput($name, 10, 300, 100, 20) GUICtrlCreateLabel("Page #: ", 120, 280, 100, 20, 0x1000) GUICtrlCreateInput($page, 120, 300, 100, 20) GUICtrlCreateLabel("Topic: ", 10, 330, 100, 20, 0x1000) GUICtrlCreateInput($topic, 10, 350, 100, 20) GUICtrlCreateLabel("Status: ", 120, 330, 100, 20, 0x1000) GUICtrlCreateInput($status, 120, 350, 100, 20) GUICtrlCreateLabel("EditStatus: ", 10, 380, 100, 20, 0x1000) GUICtrlCreateInput($editstatus, 10, 400, 100, 20) GUICtrlCreateLabel("DUE: ", 120, 380, 100, 20, 0x1000) GUICtrlCreateInput($duedate, 120, 400, 100, 20) EndFunc ;==>Set_PageDetails 8)
Idea Posted September 21, 2005 Author Posted September 21, 2005 exactly what this does.... can read from seond ini also<snip>8)
GaryFrost Posted September 21, 2005 Posted September 21, 2005 GUICtrlRead($item1, 1) gives an error, incorrect number of parameters.GUICtrlRead ( controlID ) ;<-- From help file. GuiCtrlRead($item1, 1)is in the beta versions SciTE for AutoItDirections for Submitting Standard UDFs Don't argue with an idiot; people watching may not be able to tell the difference.
seandisanti Posted September 21, 2005 Posted September 21, 2005 data.ini contains:[student1]1=52422=20233=3984[student2]1=22422=34933=3894I'd like the list view to look like this:-student1---1---2---3-student2---1---2---3Then when one of the sub items is clicked for the value to be populated in a label. So if I clicked 1 under student1 the label would read 5242.Doing this is easy enough with static data as the example in the autoit helpfile outlines for GUICtrlCreateListViewItem. Would someone mind providing the code to do this little example? I know it's a bit of work so thank you in advance.Here's the GUI code:#include <GUIConstants.au3> GUICreate("Form1", 312, 191, 302, 218, $WS_OVERLAPPEDWINDOW) $TreeView1 = GUICtrlCreateTreeView(8, 16, 153, 169, -1) $Label1 = GUICtrlCreateLabel("Label1", 176, 16, 32, 13) GUISetState(@SW_SHOW) While 1 $msg = GuiGetMsg() Select Case $msg = $GUI_EVENT_CLOSE ExitLoop Case Else EndSelect WEnd Exiti've seen a few topics along the same lines, populating trees and combo boxes from ini's in the last few days, you may want to check them out; i believe full code solutions were provided in both cases.
Valuater Posted September 21, 2005 Posted September 21, 2005 (edited) my script utilized the ini (s) in this posthttp://www.autoitscript.com/forum/index.ph...opic=15965&hl=#check the last post8)and it worked Edited September 21, 2005 by Valuater
Idea Posted September 21, 2005 Author Posted September 21, 2005 Thanks for all the information. I'll be able to create what I need now.
Valuater Posted September 21, 2005 Posted September 21, 2005 Thanks for all the information. I'll be able to create what I need now.Glad i could help8)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now