Click here to Skip to main content
15,885,876 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Copy memory function in vb.net Pin
Christian Graus22-Feb-07 22:34
protectorChristian Graus22-Feb-07 22:34 
GeneralRe: Copy memory function in vb.net Pin
sundar_mca23-Feb-07 0:48
sundar_mca23-Feb-07 0:48 
GeneralRe: Copy memory function in vb.net Pin
Dave Kreskowiak23-Feb-07 5:42
mveDave Kreskowiak23-Feb-07 5:42 
QuestionAssigning value to a variable in Return Statement Pin
tonymathewt22-Feb-07 16:37
professionaltonymathewt22-Feb-07 16:37 
AnswerRe: Assigning value to a variable in Return Statement Pin
mr_lasseter22-Feb-07 16:53
mr_lasseter22-Feb-07 16:53 
GeneralRe: Assigning value to a variable in Return Statement Pin
tonymathewt22-Feb-07 17:12
professionaltonymathewt22-Feb-07 17:12 
QuestionSearch Harddrive For Certain Filetypes Pin
siryn22-Feb-07 11:25
siryn22-Feb-07 11:25 
AnswerRe: Search Harddrive For Certain Filetypes Pin
TwoFaced22-Feb-07 16:38
TwoFaced22-Feb-07 16:38 
You'll need a recursive function to traverse through all the directories. Actually getting mp3 files in the directory is easy.
IO.Directory.GetFiles("c:\songs", "*.mp3")
This will return a string array of each mp3 file located DIRECTLY under the directory c:\songs. In other words it won't find files in any subdirectories. To do that you would create a method that takes a path as a paramater. The method would get all the .mp3 files under the path and then loop through all the subdirectories. For each directory it finds it will call itself passing in the directory to search. io.Directory.GetDirectories(path) will return all the directories under the given path. I'm sure you can find examples using google to traverse a directory tree.
GeneralRe: Search Harddrive For Certain Filetypes Pin
siryn22-Feb-07 20:38
siryn22-Feb-07 20:38 
QuestionListView Filter Pin
siryn22-Feb-07 9:33
siryn22-Feb-07 9:33 
AnswerRe: ListView Filter Pin
Dave Kreskowiak22-Feb-07 10:09
mveDave Kreskowiak22-Feb-07 10:09 
QuestionFrames withVB.net Pin
dasumohan22-Feb-07 9:06
dasumohan22-Feb-07 9:06 
AnswerRe: Frames withVB.net Pin
Dave Kreskowiak22-Feb-07 9:23
mveDave Kreskowiak22-Feb-07 9:23 
Questionformat date Pin
jds120722-Feb-07 7:52
jds120722-Feb-07 7:52 
AnswerRe: format date Pin
alexfromto22-Feb-07 7:58
alexfromto22-Feb-07 7:58 
AnswerRe: format date Pin
alexfromto22-Feb-07 8:14
alexfromto22-Feb-07 8:14 
GeneralRe: format date Pin
Marcus J. Smith22-Feb-07 8:19
professionalMarcus J. Smith22-Feb-07 8:19 
GeneralRe: format date Pin
alexfromto22-Feb-07 8:22
alexfromto22-Feb-07 8:22 
GeneralRe: format date Pin
Marcus J. Smith22-Feb-07 9:04
professionalMarcus J. Smith22-Feb-07 9:04 
GeneralRe: format date Pin
jds120722-Feb-07 8:43
jds120722-Feb-07 8:43 
GeneralRe: format date Pin
alexfromto22-Feb-07 8:53
alexfromto22-Feb-07 8:53 
AnswerRe: format date Pin
Dave Kreskowiak22-Feb-07 8:45
mveDave Kreskowiak22-Feb-07 8:45 
GeneralRe: format date Pin
alexfromto22-Feb-07 8:58
alexfromto22-Feb-07 8:58 
GeneralRe: format date Pin
jds120722-Feb-07 9:22
jds120722-Feb-07 9:22 
GeneralRe: format date Pin
Dave Kreskowiak22-Feb-07 9:27
mveDave Kreskowiak22-Feb-07 9:27 

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.