Search results for query: *

  • Users: nineclicks
  • Content: Threads
  • Order by date
  1. nineclicks

    Message overlay on form

    My Windows Form has lots of split containers and listviews and stuff. I would like to have non-interrupting alerts popup on my form. Like a messagebox without interrupting the user's input of text or clicking. Then have it disappear by itself, preferably a fade effect. I plan on having a status...
  2. nineclicks

    Question Getting file details

    I'm trying to get file details from pictures and videos such as width and height without having to actually open the file. I plan on indexing a lot of files at once so if I could just grab the file details like the ones in a files properties menu that would help a lot. I know they are labeled...
  3. nineclicks

    SearchOption.AllDirectories Acees to path is denied.

    For Each str As String In Directory.GetFiles(folder, "*.*", SearchOption.AllDirectories) Dim fi As FileInfo = New FileInfo(str) If fi.Extension = ".ini" Then Else fileList.Add(str) End If Next I'm...
  4. nineclicks

    How to best manage and store a simple database

    I'd like to have a database of filesnames. Basically I want to be able to add a filename to the database, add some options to it and a list of tags. Then be able to either locate a filename and get it's options (such as rotation or custom thumbnail file) and tags. OR be able to search for tags...
  5. nineclicks

    Beginner trying cross threading...

    Private Sub TreeView1_AfterSelect(sender As Object, e As TreeViewEventArgs) Handles TreeView1.AfterSelect ListView1.Items.Clear() For Each Thing As String In Directory.GetFiles(e.Node.Tag) Dim fi As FileInfo = New FileInfo(Thing) With...
Back
Top