Equivalent of (IntPtr)1 in VBNET?

流过昼夜 提交于 2019-12-22 06:59:39

问题


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))

回答1:


Try this:

SendMessage(hText, WM_SETFONT, mFont.ToHfont(), New IntPtr(1))


来源:https://stackoverflow.com/questions/19283287/equivalent-of-intptr1-in-vbnet

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!