Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Grid use one column of ICSV in grid, hide other columns
#1
Is it possible to fill a one column grid in a dialog with the first column of a multi column ICSV.
Al this without putting the contents of column 1 of a ICSV in a seperate variable and then filling the grid with that seperate variable.

Example, I have the below ICSV called list_csv:

Code:
Copy      Help
col 1 (name)            col 2 (path)
test_1.txt         |   c:\abc\test_1.txt
test_2.txt         |   c:\abc\subfolder\test_2.txt

And I want to put list_csv into a grid in a dialog and showing only the first column while using list_csv only.
Another option would be to hide the second column in the grid, but I do not know how to do that (If even possible).

On click events, I could just pull the contents out of the grid and then refer the column 2 (path)
I am often in a situation where have a ICSV with multiple columns and I then put the first column in a string or array then fill a grid.
#2
To hide a column, set its width to 0. But users can resize headers and unhide, unless you add style LVS_NOCOLUMNHEADER.
Function Grid1CsvColumn
Code:
Copy      Help
str dd=
;BEGIN DIALOG
;0 "" 0x90C80AC8 0x0 0 0 224 136 "Dialog"
;3 QM_Grid 0x56031041 0x200 0 0 132 110 "0x0,0,0,0x0,0x0[]A,100%,,[]B,0,7,"
;1 Button 0x54030001 0x4 116 116 48 14 "OK"
;2 Button 0x54030000 0x4 168 116 48 14 "Cancel"
;END DIALOG
;DIALOG EDITOR: "" 0x2040308 "*" "" "" ""

str controls = "3"
str qmg3x
qmg3x=
;test_1.txt         ,   c:\abc\test_1.txt
;test_2.txt         ,   c:\abc\subfolder\test_2.txt
if(!ShowDialog(dd &sub.DlgProc &controls)) ret


#sub DlgProc
function# hDlg message wParam lParam

sel message
,case WM_INITDIALOG
,case WM_DESTROY
,case WM_COMMAND goto messages2
ret
;messages2
sel wParam
,case IDOK
,case IDCANCEL
ret 1
#3
How Simple!!!
THANK YOU!!!!


Forum Jump:


Users browsing this thread: 1 Guest(s)