Click here to Skip to main content
15,922,419 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: drawing function (PaintEventArgs) Pin
Are Jay27-Dec-06 4:21
Are Jay27-Dec-06 4:21 
GeneralRe: drawing function (PaintEventArgs) Pin
charchabil0330-Dec-06 3:36
charchabil0330-Dec-06 3:36 
GeneralRe: drawing function (PaintEventArgs) Pin
Are Jay30-Dec-06 9:05
Are Jay30-Dec-06 9:05 
GeneralRe: drawing function (PaintEventArgs) Pin
charchabil0315-Jan-07 2:14
charchabil0315-Jan-07 2:14 
GeneralRe: drawing function (PaintEventArgs) Pin
charchabil0323-Jan-07 4:21
charchabil0323-Jan-07 4:21 
GeneralRe: drawing function (PaintEventArgs) Pin
Are Jay23-Jan-07 10:48
Are Jay23-Jan-07 10:48 
QuestionSearching Subdirectories within subdirectories Pin
portreathbeach15-Dec-06 8:02
portreathbeach15-Dec-06 8:02 
AnswerRe: Searching Subdirectories within subdirectories Pin
dhbaer15-Dec-06 8:17
dhbaer15-Dec-06 8:17 
I had to do something similiar (find every directory\file path for a server) and came up with the following code. You may be able to modify it for what you need:

Dim strpath As String = "f:\mp3" 'Your starting path
Dim BaseDir As New DirectoryInfo(strpath)
Dim DirListing() As DirectoryInfo
DirListing = BaseDir.GetDirectories()
Dim tmpFI As FileInfo
Dim tmpdir As DirectoryInfo
For Each tmpdir In DirListing
For Each tmpFI In BaseDir.GetFiles()
'Preforn your check and whatnot
Next
Next

David
AnswerRe: Searching Subdirectories within subdirectories Pin
MatrixCoder15-Dec-06 8:18
MatrixCoder15-Dec-06 8:18 
GeneralRe: Searching Subdirectories within subdirectories Pin
portreathbeach15-Dec-06 13:37
portreathbeach15-Dec-06 13:37 
Questionconverting crystal report to html format using VB.NET Pin
7prince15-Dec-06 7:44
7prince15-Dec-06 7:44 
QuestionDynamic load of DLL Pin
APerkins15-Dec-06 5:13
APerkins15-Dec-06 5:13 
Questiondoubt in parsing date Pin
ammuprabha15-Dec-06 4:58
ammuprabha15-Dec-06 4:58 
AnswerRe: doubt in parsing date Pin
APerkins15-Dec-06 5:21
APerkins15-Dec-06 5:21 
GeneralRe: doubt in parsing date Pin
Guffa15-Dec-06 7:35
Guffa15-Dec-06 7:35 
Questionproblem open exe with asp and vb Pin
Luis Corrales15-Dec-06 4:04
Luis Corrales15-Dec-06 4:04 
AnswerRe: problem open exe with asp and vb Pin
Dave Kreskowiak15-Dec-06 4:53
mveDave Kreskowiak15-Dec-06 4:53 
QuestionHow to get DirectoryInfo to use ShortPathNames? Pin
Zenly15-Dec-06 2:16
Zenly15-Dec-06 2:16 
AnswerRe: How to get DirectoryInfo to use ShortPathNames? Pin
Dave Kreskowiak15-Dec-06 4:51
mveDave Kreskowiak15-Dec-06 4:51 
GeneralRe: How to get DirectoryInfo to use ShortPathNames? Pin
Zenly15-Dec-06 7:31
Zenly15-Dec-06 7:31 
GeneralRe: How to get DirectoryInfo to use ShortPathNames? Pin
Dave Kreskowiak15-Dec-06 7:43
mveDave Kreskowiak15-Dec-06 7:43 
GeneralRe: How to get DirectoryInfo to use ShortPathNames? Pin
Zenly15-Dec-06 9:00
Zenly15-Dec-06 9:00 
QuestionTracking timing of a media player file Pin
tasnim514-Dec-06 23:54
tasnim514-Dec-06 23:54 
AnswerRe: Tracking timing of a media player file Pin
Dave Kreskowiak15-Dec-06 4:36
mveDave Kreskowiak15-Dec-06 4:36 
GeneralRe: Tracking timing of a media player file Pin
tasnim516-Dec-06 19:20
tasnim516-Dec-06 19:20 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.