Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Imports System.IO
'Get all the files in Windows directory.
Dim dirs As String() = Directory.GetFiles("c:\Windows")
Dim dir As String
For Each dir In dirs
ComboBox1.Items.Add(dir)
Next