Hey all,
Every time a new user is created, I would like to make a folder on the user's deshtop. I am having the hardest time finding how to do this. Any help would be appreciated.
Thanks,
bebandit
Printable View
Hey all,
Every time a new user is created, I would like to make a folder on the user's deshtop. I am having the hardest time finding how to do this. Any help would be appreciated.
Thanks,
bebandit
VB Code:
Dim dt As String = Environment.GetFolderPath(Environment.SpecialFolder.Desktop) MessageBox.Show(dt)
Thanks!!