rzr
Member
how do I modify the width of column of a dynamic browser?
this will take a the default width of customer.name field {x(20) in my db}.
How do I increase the width of this column to X(40) ?
Code:
CREATE BROWSE hBrowse
ASSIGN WIDTH = 80
DOWN = 10
QUERY = hQuery
FRAME = FRAME X:HANDLE
READ-ONLY = FALSE
SENSITIVE = TRUE
FONT = 2.
hBrowse:ADD-LIKE-COLUMN("Customer.Name").
this will take a the default width of customer.name field {x(20) in my db}.
How do I increase the width of this column to X(40) ?