ok I found this on declaresub.com but I don't know what to do to make it hide?

Sub ToolbarVisible(Extends w as Window, theValue as Boolean)
Soft Declare Function ShowHideWindowToolbar Lib "Carbon.framework" (wRef as WindowPtr, inShow as Boolean, inAnimate as Boolean) as Integer

  dim OSError as Integer = ShowHideWindowToolbar(w, theValue, true)
  If OSError <> 0 then
    //handle error
  End if
End Sub
Function ToolbarVisible(Extends w as Window) as Boolean
Soft Declare Function IsWindowToolbarVisible Lib "Carbon.framework" (wPtr as WindowPtr) as Boolean

  Return IsWindowToolbarVisible(w)
End Function


On Feb 15, 2006, at 6:30 PM, Brian Heibert wrote:

I tried that and couldn't find it still
On Feb 15, 2006, at 6:08 PM, Charles Yeomans wrote:


Try "toolbar hide show declare".

--------------
Charles Yeomans


On Feb 15, 2006, at 5:56 PM, Brian Heibert wrote:



yeah but what do I search for? What keyword(s)?
On Feb 15, 2006, at 5:37 PM, Charles Yeomans wrote:




On Feb 15, 2006, at 5:31 PM, Brian Heibert wrote:




I forgot the declare to hide the toolbar hide show widget
I want to force my toolbar to be visible all the time
What is it?







_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>

Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>



_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>

Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>


_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>

Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>

Reply via email to