How would the following to lines of C++ code be translated to VB? Particularly the -> and &~ symbols?


BitBlt(ps.hdc, prect->left, prect->top,
(prect->right - prect->left),
(prect->bottom - prect->top), hdcScreenCompat,
prect->left + xCurrentScroll,
prect->top + yCurrentScroll,
SRCCOPY);



bmp.bmWidthBytes = ((bmp.bmWidth + 15) &~15)/8;





Thanks a mil.