Jump to content

PumpkinJuice

Members
  • Posts

    13
  • Joined

  • Last visited

Profile Information

  • Location
    USA
  • Interests
    Computer/Sports/Boys

PumpkinJuice's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Ugh, never mind. 1 is an error return, not success.
  2. I'm having trouble with StringInStr() right now, and I'm not sure really what the problem is: Does with work for you? _FillListView() Func _FillListView() $GetItems = _FileListToArray(@DesktopDir) For $I = 1 To $GetItems[0] If StringInStr($GetItems[$I], ".") = 1 Then Beep(8000, 100) Next EndFunc Func _FileListToArray($Path, $Filter = "*") Local $Search, $File, $FileList[1] $Search = FileFindFirstFile($Path & "\" & $Filter) While 1 $File = FileFindNextFile($Search) If @error Then ExitLoop ReDim $FileList[UBound($FileList) + 1] $FileList[0] += 1 $FileList[UBound($FileList) - 1] = $File WEnd FileClose($Search) Return $FileList EndFunc ;==>_FileListToArray
  3. Not nessessarily, look up TreeView!
  4. Its right here: Msgbox(1, "Hello", "Hello") Look in the helpfile for the correct Msgbox flags!
  5. Why not just make Register.exe universal?
  6. Instead of \ try _
×
×
  • Create New...