Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
A

aneye

@aneye
About
Posts
1
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Folder Browser Dialog
    A aneye

    try this one, it have some limited. Add System.Design into References. Use method ShowDialog() to show using System; using System.Windows.Forms; using System.Windows.Forms.Design; namespace WindowsApplication1 { /// /// this provides the BrowseFolderDialog for browse folders. /// public class BrowseFolderDialog : FolderNameEditor { FolderNameEditor.FolderBrowser fBrowser; public BrowseFolderDialog() { fBrowser = new FolderNameEditor.FolderBrowser(); } public string DirectoryPath { get {return fBrowser.DirectoryPath;} } public DialogResult ShowDialog(string txtDescription) { // set the Description label fBrowser.Description = txtDescription; fBrowser.StartLocation = FolderBrowserFolder.MyDocuments; return fBrowser.ShowDialog(); } ~BrowseFolderDialog() { // destructor fBrowser.Dispose(); } } }

    C# csharp json question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups