For anyone looking for a native macOS toolbar, I made one available on the Xojo store recently. You can find more information and a demo link on my website.
5 Likes
This looks great! Any chance of extending this or creating a similar project for Windows?
Youâll need to put the dylib into the copy files step again.
1 Like
Iâll do this to test, but App crash in Window1.Opening doing âRebuildToolbarâ when AddItem : nstoolbar1.AddItem(MakeItem(âTrashâ, âtrashâ))
Interesting. Youâre the second person to report that and I have no idea why yet.
Could you separate that line into two like this?
Dim item as SOSToolbar.NSToolbarItem = MakeItem(âTrashâ, âtrashâ)
nstoolbar1.AddItem(item)
And tell me it item is Nil?
Well the good news is that I can reproduce it now⊠working on a solution.
âŠand Fixed.
2 Likes