mp said:
Error 4 'timeGetTime' is not a member of 'Win.Multimedia'.
have looked through many objects, cant find this function
is there an index for converting functions etc from vb6 to dotnet?
Well, there are some concepts in .Net that are so different that VB6
code can not be ugpraded 1:1, for example drawing. Apart from that,
everything should be available, either it's included in the language, in
native dlls, in COM dlls, in the Framework, partially in the "Microsoft
Visual Basic Compatibility" dll. So I dare to say "It should still
work". The next step is to learn, learn, learn, and you'll be able to
replace code by newer methods. For example, instead of declaring an API
function for GetUserName, you can just use Environment.Username.
You've asked for an index: (though, not up to date)
http://msdn.microsoft.com/en-us/library/aa302340.aspx
Armin