Chinese German Japanese Korean French Italian Portuguese Spanish
A Site for .NET Smart Device Software Developers
 Feel free to browse the available .NET Smart Device controls & components for the .NET Compact Framework
 All controls have design time support for Visual Studio .NET, 2005 & 2008.
 All controls are written in fully managed code, are royalty free and support is all part of the purchase!
 Why create your own controls when it has been done for you here at a fraction of the cost?
Explorer
Example Code C#:


// After creating a form (frmOpenSave) and placing the Explorer control onto the form canvas

frmOpenSave os = new frmOpenSave();
os.Text = "Select";
os.explorer.Filter = "*.zip";
os.explorer.MultiSelect = false;
os.explorer.InitializeDirectoryTree();

if (os.ShowDialog() == DialogResult.OK)
{
string[os.explorer.FileName.Count()] fileNames = os.explorer.FileName[]
}

os.Dispose();




Example Code VB:


' After creating a form (frmOpenSave) and placing the Explorer control onto the form canvas

Dim os As new frmOpenSave()
os.Text = "Select"
os.explorer.Filter = "*.zip"
os.explorer.MultiSelect = false
os.explorer.InitializeDirectoryTree()

If os.ShowDialog() == DialogResult.OK
string[os.explorer.FileName.Count()] fileNames = os.explorer.FileName[]
End If

os.Dispose()




TOP
Contact Us
©2004-2007 PocketPC Controls.com