Salut Benoit

Benoit consultation.

If I want to get the size of a file with FileProperties the code is:
FileProperties1.Path=User.Home &/ "test.png"

But I need to get the size of several Selected Files in a FileView.
Is this possible.?


I tried with the following code:
But it is not possible.


Public Sub Form_Open()

  FileViewDesktop.Dir = Desktop.GetDirectory("DESKTOP") '
  FileViewDesktop.Mode = 2

End

Public Sub FileViewDesktop_Select()

  Dim strFiles As String[]
  Dim strData As String
  Dim strFile As String
  Dim sDir As String

  strFiles = FileViewDesktop.Selection
  If strFiles.Count > 0 Then
    For Each strFile In strFiles
      strFile = FileViewDesktop.Dir &/ strFile
      strData = strData & strFile ' & "\n"
      Print sDir &/ strData
     FileProperties1.Path = sDir & strData
     ' FileProperties1.Path=User.Home &/ "test.png"
    Next
     strFiles.Clear()
     strFiles = Null

  Endif

End


I need help please.

Herberth Guzmán
------------------------------------------------------------------------------
Site24x7 APM Insight: Get Deep Visibility into Application Performance
APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month
Monitor end-to-end web transactions and take corrective actions now
Troubleshoot faster and improve end-user experience. Signup Now!
http://pubads.g.doubleclick.net/gampad/clk?id=272487151&iu=/4140
_______________________________________________
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user

Reply via email to