/ ( #Start capture ( #Start Sub descript header '\*{20,} #start '------ delimiter (\n'[^\n]*?)+\n #middle of header '\*{20,}\n #end '------ delimiter )? #End Sub header (optional) (Private\s|Public\s|Friend\s)? #Scope (optional) (Static\s)? #Static (optional) (Sub\s|Function\s) #Sub or Function (mandatory) [^\n]+ #more stuff on same line (?!\sLib\s) #but not if Lib on line .* #and the rest of the file ) #End capture /sx #### File header stuf... 22 Private Const strLen = 80 23 24 Private Declare Function DeleteFile Lib "kernel32" Alias "DeleteFileA" _ 25 (ByVal lpFileName as String) as Long 26 27 '-------------------------------------------------------- 28 ' Purpose: Donuts 29 ' Author: not me 30 ' Date: yesterday 31 '-------------------------------------------------------- 32 Private Sub DrainBattery(Byval sPercentage as Single) Code stuff...