hello,
i use the following code to control browse window.
but the window can still be resized.
is there a property that can control resizing?
thank you.
i use the following code to control browse window.
Code:
BROWSE NAME obrowin NOWAIT NODELETE NOMENU NORMAL FONT 'Arial', 10 ;
FIELDS aa :7 ,descr :50 , p_price :7
obrowin.width = 440
obrowin.height = 400
obrowin.top = 50
obrowin.left = 50
obrowin.allowheadersizing = .f.
obrowin.allowrowsizing = .f.
obrowin.allowrowsizing = .f.
obrowin.scrollbars = 0
FOR ii=1 TO obrowin.columncount
thewobj = 'obrowin.column'+ALLTRIM(STR(ii))+'.resizable'
thewobj1 = 'obrowin.column'+ALLTRIM(STR(ii))+'.movable'
&thewobj = .f.
&thewobj1 = .f.
NEXT
but the window can still be resized.
is there a property that can control resizing?
thank you.