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
  1. Home
  2. General Programming
  3. Visual Basic
  4. How to display the file name. size date etc in text boxes in Vb.net

How to display the file name. size date etc in text boxes in Vb.net

Scheduled Pinned Locked Moved Visual Basic
csharptutorial
2 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • R Offline
    R Offline
    ruthvik
    wrote on last edited by
    #1

    when i click the open the button standard dialogbox opend but how to find the size,filename,dateof the selected file in the textboxes which i created in form

    S 1 Reply Last reply
    0
    • R ruthvik

      when i click the open the button standard dialogbox opend but how to find the size,filename,dateof the selected file in the textboxes which i created in form

      S Offline
      S Offline
      Smithers Jones
      wrote on last edited by
      #2

      use fileinfo and have a look at its properties:

      If OpenFileDialog1.ShowDialog = Windows.Forms.DialogResult.OK Then
      Dim myfile As New System.IO.FileInfo(OpenFileDialog1.FileName)
      textbox1.text = myfile.Name
      textbox2.text = myfile.Length
      textbox3.text = myfile.CreationTime
      'and so on
      End If

      "I love deadlines. I like the whooshing sound they make as they fly by." (DNA)

      1 Reply Last reply
      0
      Reply
      • Reply as topic
      Log in to reply
      • Oldest to Newest
      • Newest to Oldest
      • Most Votes


      • Login

      • Don't have an account? Register

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