C# to vb.net

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need to translate the line below to vb.net
SendMessage(this.Handle, (uint)WM_HSCROLL, (System.UIntPtr)param,
(System.IntPtr)0);
Now do I do the third parameter?

--


Arne Garvander
Certified Geek
Professional Data Dude
 
SendMessage(Me.Handle, CType(WM_HSCROLL,UInteger),
CType(param,System.UIntPtr), CType(0,System.IntPtr))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top