I have made a column dialog, in which I will select the 6 columns from all the columns. As number of columns are very large, so its very painful to look for the required column. So, I want to add a filter column button the Column Dialog window. How to add it? Below is my script for column dialog. Inside this window I want to add the filter column option.
Thanks.
dlg = Column Dialog(
A = ColList( "Time", Max Col( 1 ), Min Col( 1 ) ),
B = ColList( "Step", Max Col( 1 ), Min Col( 1 ) ),
c = ColList( "Tool", Max Col( 1 ), Min Col( 1 ) ),
D = ColList( "Name", Max Col( 1 ), Min Col( 1 ) ),
E = ColList( "Lot", Max Col( 1 ), Min Col( 1 ) ),
F = ColList( "Number", Max Col( 1 ), Min Col( 1 ) ),
G = ColList( "Run", Max Col( 1 ), Min Col( 1 ))
);