Re: [RESOLVED] ShellExecuteA
Well there really isnt too many .NET equilivalents of APIs. There are over over 7,000 new APIs for Vista alone and most of the common ones dont have equilivalents.
For example:
SendMessage, PostMessage, FindWindow, FindWindowEx, GetWindowLong, SetWindowLong etc. all are very commly used in VB 6 apps but have no equilivalents in .NET.
SendKeys is not an equilivalent as it doesnt directly send the contents to a specific window but rather whichever window has the input focus.
Unmanaged API code in .NET is definately something to learn.