Changing Logical Coordinates/Viewport

Diesel

Well-known member
Joined
Aug 18, 2003
Messages
662
Few Questions: Is the windows API available in .net? (If so, in what form?)

And if it is not, does anyone know how to change the logical coordinate system of a window and the viewport area?
 
It sure is available. Although it is not directly known to .net. You must write a "template" for the function you want to use.

Look it up on the net, you will find plenty of info on api and .net.
 
Found it

It anyone was wondering about API calls inside C#, heres an example:

<DllImport("kernel32.dll")> _
Private Shared Function GetWindowText (ByVal hwnd As Long, ByVal lpString As String, ByVal cch As Long) As Long
End Function


Hey, how about a thread devoted to the API?
 
Back
Top