Click here to Skip to main content
16,004,906 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: How to make a service Pin
Murtuza Husain Miyan Patel17-Aug-04 6:16
professionalMurtuza Husain Miyan Patel17-Aug-04 6:16 
GeneralRe: How to run Vb app as a service Pin
Murtuza Husain Miyan Patel17-Aug-04 6:18
professionalMurtuza Husain Miyan Patel17-Aug-04 6:18 
GeneralRe: How to run Vb app as a service Pin
Dave Kreskowiak18-Aug-04 12:16
mveDave Kreskowiak18-Aug-04 12:16 
GeneralSearching HD for files of type Pin
Kevnar16-Aug-04 17:50
Kevnar16-Aug-04 17:50 
GeneralRe: Searching HD for files of type Pin
S Sansanwal16-Aug-04 18:19
S Sansanwal16-Aug-04 18:19 
GeneralRe: Searching HD for files of type Pin
Kevnar16-Aug-04 18:27
Kevnar16-Aug-04 18:27 
GeneralRe: Searching HD for files of type Pin
S Sansanwal16-Aug-04 18:36
S Sansanwal16-Aug-04 18:36 
GeneralRe: Searching HD for files of type Pin
Anonymous16-Aug-04 18:31
Anonymous16-Aug-04 18:31 
This might get you started.

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
' make a reference to a directory
Dim dirInfo As New IO.DirectoryInfo("c:\")
Dim dirArg As IO.FileInfo() = dirInfo.GetFiles(".whatever")
Dim dirFileInfo As IO.FileInfo

'list the names of all files in the specified directory
For Each dirFileInfo In dirArg
ListBox1.Items.Add(dirFileInfo)
Next
End Sub
GeneralRe: Searching HD for files of type Pin
Kevnar16-Aug-04 20:22
Kevnar16-Aug-04 20:22 
QuestionReloading a form? Pin
Glisson16-Aug-04 16:28
Glisson16-Aug-04 16:28 
AnswerRe: Reloading a form? Pin
S Sansanwal16-Aug-04 18:07
S Sansanwal16-Aug-04 18:07 
GeneralTrack user clicks in a menu Pin
and_vb16-Aug-04 15:36
and_vb16-Aug-04 15:36 
GeneralRe: Track user clicks in a menu Pin
Dave Kreskowiak16-Aug-04 18:22
mveDave Kreskowiak16-Aug-04 18:22 
GeneralProtection via registry .. need help Pin
AbuFahed16-Aug-04 14:34
AbuFahed16-Aug-04 14:34 
GeneralRe: Protection via registry .. need help Pin
Dave Kreskowiak16-Aug-04 18:21
mveDave Kreskowiak16-Aug-04 18:21 
GeneralCompact and repair Pin
benjj16-Aug-04 13:19
benjj16-Aug-04 13:19 
GeneralRe: Compact and repair Pin
Anonymous16-Aug-04 14:12
Anonymous16-Aug-04 14:12 
GeneralRe: Compact and repair Pin
Dave Kreskowiak16-Aug-04 18:20
mveDave Kreskowiak16-Aug-04 18:20 
GeneralRe: Compact and repair Pin
benjj17-Aug-04 3:03
benjj17-Aug-04 3:03 
GeneralHelp with Windows Media 9 in VB Pin
Kevnar16-Aug-04 10:07
Kevnar16-Aug-04 10:07 
GeneralRe: Help with Windows Media 9 in VB Pin
Jim Matthews16-Aug-04 10:17
Jim Matthews16-Aug-04 10:17 
GeneralRe: Help with Windows Media 9 in VB Pin
Kevnar16-Aug-04 11:04
Kevnar16-Aug-04 11:04 
GeneralCell range of embedded worksheet in Word document Pin
Member 119356216-Aug-04 8:19
Member 119356216-Aug-04 8:19 
GeneralQuark file Pin
XGaMeS16-Aug-04 7:33
XGaMeS16-Aug-04 7:33 
GeneralRe: Quark file Pin
progload16-Aug-04 9:35
progload16-Aug-04 9:35 

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.