very cool -- and that is extremely close to what I am lookign to achieve
I obviously have a lot to learn and I appreciate your patience.
Here is the screen shot GUI and the code for the GUI.
Gui, Add, GroupBox, x9 y25 w500 h260 ,
Gui, Add, ListView, x14 y53 w240 h180 , Name
Gui, Add, ListView, x264 y53 w240 h180 , Age
Gui, Add, Text, x14 y243 w79 h13 , Find Person :
Gui, Add, Edit, x103 y240 w140 h21 ,
Gui, Add, Button, x253 y240 w27 h23 , OK
Gui, Add, GroupBox, x9 y291 w500 h230 ,
Gui, Add, ListView, x14 y311 w240 h200 , Sex
Gui, Add, ListView, x264 y311 w240 h200 , Phone Number
; Generated using SmartGUI Creator 4.0
Gui, Show, x343 y152 h528 w520,
I want to take the data : name age phone number sex (Mary|16|1307325277|female|) from list.txt and place it in each ListView. When I click the ListView name, I want to only see the data for that person in each other ListView.
Thanks and please tell me if this is a long and arduous task.