K Kishor Nov 24, 2003 #1 Hi all, How do I get a path of My Documents on different operating systems in Vb.Net Tia, Kishor
T Tom Shelton Nov 24, 2003 #2 ["Followup-To:" header set to microsoft.public.dotnet.languages.vb.] Hi all, How do I get a path of My Documents on different operating systems in Vb.Net Tia, Kishor Click to expand... Kishor, MessageBox.Show(Environment.GetFolderPath( _ Environment.SpecialFolder.Personal))
["Followup-To:" header set to microsoft.public.dotnet.languages.vb.] Hi all, How do I get a path of My Documents on different operating systems in Vb.Net Tia, Kishor Click to expand... Kishor, MessageBox.Show(Environment.GetFolderPath( _ Environment.SpecialFolder.Personal))
H Herfried K. Wagner [MVP] Nov 24, 2003 #3 * "Kishor said: How do I get a path of My Documents on different operating systems in Vb.Net Click to expand... \\\ Dim s As String = _ Environment.GetFolderPath(Environment.SpecialFolder.Personal) ///
* "Kishor said: How do I get a path of My Documents on different operating systems in Vb.Net Click to expand... \\\ Dim s As String = _ Environment.GetFolderPath(Environment.SpecialFolder.Personal) ///
A Armin Zingler Nov 24, 2003 #4 Kishor said: How do I get a path of My Documents on different operating systems in Vb.Net Click to expand... System.Environment.GetFolderPath
Kishor said: How do I get a path of My Documents on different operating systems in Vb.Net Click to expand... System.Environment.GetFolderPath