Re: [Gambas-user] Property expand in Tabstrip

2010-03-06 Thread Les Hardy
craf wrote:
 Hi.

 How can I set a textbox to the width of a tastrip?.The property does not
 expand.

 Regards


   
I assume the tabstrip is arrange by the form.
With TextBox1 in TabStrip1

PUBLIC SUB Form_Arrange()
  TextBox1.Move(5, TextBox1.top, TabStrip1.width - 10, TextBox1.height)
END

Regards
Les Hardy

--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Property expand in Tabstrip

2010-03-06 Thread Les Hardy
craf wrote:
 Hi.

 How can I set a textbox to the width of a tastrip?.The property does not
 expand.

 Regards


   
You can also do it directly on the tabstrip...

PUBLIC SUB TabStrip1_Arrange()

  TextBox1.Move(5, TextBox1.top, TabStrip1.width - 10, TextBox1.height)

END

Les Hardy

--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] Property expand in Tabstrip

2010-03-04 Thread craf
Hi.

How can I set a textbox to the width of a tastrip?.The property does not
expand.

Regards


--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user