WebToolbar in orientation Vertical

I need put WebToolbar in orientation Vertical is possible ?

It works, but since the webtoolbar will automatically size to the width of the browser, you must set it to visible No in the inspector, then in the shown event set the width to what you decided in the IDE, and make it visible.

You may also want to make it as high as the page.

Sub Shown() me.width = 61 me.height = self.height me.visible = true End Sub

Interesting. I had never tried that. Thanks, Michel.

Very useful on iPad :slight_smile:

Thank’s ,Work