C++ DWORD& in VB.net

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • iwdu15

    C++ DWORD& in VB.net

    hi, whats the VB.Net equivalent to DWORD&? thanks
    --
    -iwdu15
  • Steve Long

    #2
    Re: C++ DWORD& in VB.net

    An integer is 32 bites wide as is a DWORD. So, maybe you want an UInt32 for
    and unsigned integer?

    "iwdu15" <jmmgoalsteraty ahoodotcomwrote in message
    news:EAA1EE56-61DB-482F-B355-92EE2E44451C@mi crosoft.com...
    hi, whats the VB.Net equivalent to DWORD&? thanks
    --
    -iwdu15

    Comment

    • Tom Shelton

      #3
      Re: C++ DWORD&amp; in VB.net


      Steve Long wrote:
      An integer is 32 bites wide as is a DWORD. So, maybe you want an UInt32 for
      and unsigned integer?
      >
      "iwdu15" <jmmgoalsteraty ahoodotcomwrote in message
      news:EAA1EE56-61DB-482F-B355-92EE2E44451C@mi crosoft.com...
      hi, whats the VB.Net equivalent to DWORD&? thanks
      --
      -iwdu15
      I don't see the original, so I'm replying to the reply. DWORD& is a
      reference to an unsigned 32-bit integer, so strictly speaking it is
      really equivalent to :

      ByRef a As UInt32

      But, for 99% of the cases:

      ByRef a As Integer ' or Int32

      Works just as well :)

      --
      Tom Shelton

      Comment

      • iwdu15

        #4
        Re: C++ DWORD&amp; in VB.net

        awsome, thanks guys
        --
        -iwdu15

        Comment

        Working...