Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
1k views

Is the class NativeMethods handled specially in .NET?

http://msdn.microsoft.com/en-us/library/ms182161%28VS.80%29.aspx Are the three classes described on this paged handled specially in the .NET Framework? (NativeMethods, SafeNativeMethods and ...
1
vote
1answer
134 views

Return an IOleCommandTarget from processing WM_GETOBJECT in a NativeWindow

I am trying to retrieve an IOleCommandTarget reference from a panel control handle, so that I can call IOleCommandTarget.Exec() on it. NativeMethods.IOleCommandTarget target = null; if ...
0
votes
3answers
137 views

NullPointerExcetion Native Method Accessor… Hashing Words Issue

I am writing a project that reads a file and sorts "Words". This code compiles correctly, yet then it gives me a null pointer exception. Any Ideas? import java.io.File; import ...
0
votes
1answer
517 views

Input Values for Nativemethods.GetSystemMetrics Function in .Net

This function appears to be a way to access all sorts of system values. For example nativemethods.GetSystemMetrics(4096) returns whether a session is remote or local. All I can find on the web are ...