Results 1 to 2 of 2

Thread: Build Custom File System or Dialog Boxes

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Jul 2016
    Location
    Sabattus, ME
    Posts
    87

    Build Custom File System or Dialog Boxes

    I remember in the old VB6 days, there was these tacky FileSyetem controls that you could use for file systems and creating your own dialog boxes.
    However, I know in .NET those were done away with a while back.

    I would like to create my own File System (including the modern icons) that shows the Desktop and all drives etc.
    And then just use a List View for displaying the folder/file names....

    Where am I looking to begin code-wise?

  2. #2
    Super Moderator jmcilhinney's Avatar
    Join Date
    May 2005
    Location
    Sydney, Australia
    Posts
    110,344

    Re: Build Custom File System or Dialog Boxes

    Quote Originally Posted by technipixel View Post
    I remember in the old VB6 days, there was these tacky FileSyetem controls that you could use for file systems and creating your own dialog boxes.
    However, I know in .NET those were done away with a while back.
    It's not that they were done away with but rather that they never existed. VB6 wasn't a starting point for VB.NET. Things that exist in VB.NET that existed in VB6 were built specifically for VB.NET. Anything that existed in VB6 but doesn't in VB.NET was never built.
    Quote Originally Posted by technipixel View Post
    I would like to create my own File System (including the modern icons) that shows the Desktop and all drives etc.
    And then just use a List View for displaying the folder/file names....
    That sounds like you're talking about simply a visual representation of the existing file system, not your own file system.
    Quote Originally Posted by technipixel View Post
    Where am I looking to begin code-wise?
    The System.IO namespace has types for working with drives, folders and files. If you want to perform some more exotic operations then you may need to fall back to Windows API calls.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width