IonicWind Software

IWBasic => General Questions => Topic started by: King64 on February 20, 2011, 04:01:04 AM

Title: Tabs..?
Post by: King64 on February 20, 2011, 04:01:04 AM
Hi guys, i'm here again with another question for you  ;D. I'd like to add to my app a tab control as output window of EB, showed below, but i can't  :(. I searched around a bit, but I found nothing. Is there anyone of you has to show me the code about it? Thanks in advance for the answer(s)  :)
Title: Re: Tabs..?
Post by: LarryMc on February 20, 2011, 10:27:39 AM
In the toolbar example program change this line
tc = CONTROLEX(parent,"systabcontrol32","",x,y,w,ht,@BORDER|@EXCLIENTEDGE,0,num)
to this
tc = CONTROLEX(parent,"systabcontrol32","",x,y,w,ht,@BORDER|@EXCLIENTEDGE|2,0,num)
and that will put the tabs on the bottom.
You can also do it with the Control Pak library that comes with IWBasic/EB.

If you want it to look EXACTLY like the picture then you'll have to draw it yourself.

LarryMc
Title: Re: Tabs..?
Post by: King64 on February 20, 2011, 11:31:50 AM
Thank you for the explanation Larry.  :)