Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Ju5t1c3

    GUI and console application

    Answer to the second question... You can write messages to the console using the following functions: Console.Write()or Console.WriteLine(). Both functions take string as parameter. "Cowards die many times before their deaths, The valiant never taste of death but once." - Julius Caesar
  2. Ju5t1c3

    Visual Basic Program/Script to delete old files w/in a folder

    Hi dpu This may not be exactly what you are looking for but you can follow the same idea to accomplish your task. FYI this is done in VB.Net..... Dim dInfo As DirectoryInfo = New DirectoryInfo("The path to your folder") Dim NumOfDays as Integer = Some Integer 'Function that deletes files...
  3. Ju5t1c3

    Array.FindAll

    You can also try this..... Dim MyArray() As String = New String() {"apple", "banana", "cat", "apple"} 'Sub routine to get the occurances/count of the strings 'in your array Sub findOccurances() Dim appleCount, bananaCount As Integer For Each str As String In MyArray...

Part and Inventory Search

Back
Top