M Michael Maercker Oct 31, 2004 #1 hi! i knew how to define api-calls in vb6... how do i do it in c#? say, for example, "SetWindowPos"...? thx, mike
hi! i knew how to define api-calls in vb6... how do i do it in c#? say, for example, "SetWindowPos"...? thx, mike
A Adam Clauss Oct 31, 2004 #2 You will have to use Platform Invoke (PInvoke) - check out http://www.pinvoke.net/
B Bonj Oct 31, 2004 #4 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#.
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#.
B Bonj Oct 31, 2004 #6 Check whether setting Form.Position and Form.Size do what you want, and if not, use the API