I've taken a piece of code from a @Hans Passant code from here: Bold text in MessageBox
this is the C# code:
SendMessage(hText, WM_SETFONT, mFont.ToHfont(), (IntPtr)1)
Which would be the translation into vb.net?
This will not work (cant be compiled):
SendMessage(hText, WM_SETFONT, mFont.ToHfont(), DirectCast(1, IntPtr))
Try this:
SendMessage(hText, WM_SETFONT, mFont.ToHfont(), New IntPtr(1))
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With