calling WinApi functions from c#

  • Thread starter Thread starter Michael Maercker
  • Start date Start date
M

Michael Maercker

hi! i knew how to define api-calls in vb6... how do i do it in c#? say, for
example, "SetWindowPos"...?

thx,
mike
 
Remember a lot of the things that you would have had to use an API function
for in VB6, you can do intrinsically in C#.
 
Check whether setting Form.Position and Form.Size do what you want, and if
not, use the API
 
Back
Top