Hello,
How do I create a custom form with a shape other than rectangle. I want the shape to be something like an arrow shape
Greetings!
In Windows there are only rectangular forms, all forms are created using the win32 API, What you can do is create a form without borders and with a transparent background, then add a shape to delimit it, background or draw its outline
that’s right, there’s no way to do this without API functions
Hello,thank you both for your replies. I basically know that. I was kind of hoping for a more specific answer. I will find a way. If you could share anything more specific on the subject, I would be grateful.Merry Christmas and New Year holidays! Health, Peace and Prosperity!Greetings!
Well, apparently in VBA we don't have transparent and borderless forms, but with Win32 you were able to manipulate VBA windows. I don't have enough knowledge of VBA to provide you with code consuming Win32
see this
https://www.codeproject.com/Articles/1822/Per-Pixel-Alpha-Blend-in-C
There is also source code. May be you can convert C#-code to VBA.