CS Tutor,
In addition to the others comments:
The .NET Framework SDK can be found on-line at:
http://msdn.microsoft.com/library/de...etfxanchor.asp
The Class Library itself can be found at:
http://msdn.microsoft.com/library/de...pref_start.asp
The VB.NET Language & Runtime can be found at:
http://msdn.microsoft.com/library/de...mingWithVB.asp
"Application" is an object out of the Class Library.
"Dir" is a function out of the VB.NET Runtime.
Hope this helps
Jay
"CS Tutor" <(E-Mail Removed)> wrote in message
news:BJ5gb.118020$(E-Mail Removed)...
> Hello,
>
> I am a Java programmer and I am used to finding out what functions are
> written out for me in the Java API provided by Sun on their website.
>
> Now for VB.NET is there a similar online resource? That tells me which
> function is in what library, and what its purpose is?
>
> For instance, I have been trying to figure out what this statement does:
>
> ValidateMDBExistence = Dir(Application.StartupPath & "xyz.mdb")
>
> I have an idea, it is trying to find out the startup path of the
application
> and looking for xyz.mdb in that folder. But for some reason I'm not
getting
> what I want. So, can you please point me to the API/library resource
online
> for VB.Net?
>
> Thanks.
>
>