NA
Visual Basic
2
Posts
2
Posters
0
Views
1
Watching
-
NA
-
NA
Have you tride declaring long instead off integer.. ByVal hServer As Long, _ ByVal lObject As Long, _ ByVal nObject As Long, _ In your .Net declare you are using int's Also if the API declaration is from VB6, which used ByRef as default parameter passing. .Net is using ByVal as default..this you will have to change acordingly. Hmm...