How make a toolbar this style in fwh ?
is possible ?

Thanks

Lailton,
Well it looks like a regular FW buttonbar. Is there something about it that you don't know how to do, like separators, drop-down menus, icons, color?
Regards,
James
James,
No, i wanna a toolbar the same of picture, ( Style )
I try using ToolBar sample more style not is good
Item, icone, separator i know make, more i wanna use buttonbar with style futuristic, beautiful more withuot use
ocx, skin etc..
thanks.

// Purpose: Sample buttonbar with gradient background
// Author : James Bott, <!-- e --><a href="mailto:jbott@compuserve.com">jbott@compuserve.com</a><!-- e -->
// Date : 2/17/2010
#include "fivewin.ch"
function main()
local oWnd, oBar, oBmp
define bitmap oBmp file "bar.bmp"
define window oWnd title "Test Buttonbar"
define buttonbar oBar size 26,26 of oWnd 2007
oBar:bClrGrad:={| lInvert | if(! lInvert,;
{ { 0.75, nRGB( 255, 255, 255 ), nRGB( 230, 230, 230 ) },;
{ 0.25, nRGB( 230, 230, 230 ), nRGB( 238, 238, 238 ) } },;
{ { 0.25, nRGB( 255, 253, 222 ), nRGB( 255, 231, 151 ) },;
{ 0.75, nRGB( 255, 215, 84 ), nRGB( 255, 233, 162 ) } } ) }
define button of oBar file "search.bmp" noborder
define button of oBar file "sort.bmp" noborder
define button of oBar file "searchb.bmp" noborder group
define button of oBar file "searchf.bmp" noborder
define button of oBar file "srchfldr.bmp" noborder group
define button of oBar file "around.bmp" noborder group menu newmenu()
activate window oWnd
return nil
//---------------------------------------------------------------------------//
function NewMenu()
local oMenu
menu oMenu popup
menuItem "Mail Message" resource "newmail" //action ::add()
menuItem "Event..."
menuItem "Contact..." //action ::add()
menuItem "Charge..." //resource "dollar" action ::add()
menuItem "Matter..." //action ::add()
menuItem "Document..."
menuItem "Task..." //resource "task" action ::add()
menuItem "Note..."
menuItem "Reminder..."
endmenu
return oMenu
//---------------------------------------------------------------------------//yeah
thanks




Not
, it´s default of fivewin.
I already knew how add menu, item etc..
I wanna the same result of picture, ( CHANGE STYLE OF TOOLBAR )
And yes, i want can move too.
later i wanna use four toolbar side by side.
i do it today using ocx. more i want try remove ocx of my app and use only fwh native,
more to this i need this feature.
Thanks

Yes, i wanna this, more native in fwh,
is it possible ?
![]()
I don't think these things are possible without changes to the FW source. These changes would be welcome.
Regards,
James
Waiting for Antonio see this post.
think that he can make this.

Hello lailton,
have you thought to change to FIVEWIN RibbonBar. I think this is the way to go for navigation.
Best regards,
Otto