Search results for query: *

  • Users: Jayson
  • Content: Threads
  • Order by date
  1. J

    Tracing question

    Hi, I have configured tracing within my app so that users can define a trace level within a xml config file. When the app starts it reads the config and sets the trace level accordingly. Public TraceSwitch As New TraceSwitch("MyTraceSwitch", "Sets the trace level in this application")...
  2. J

    Resolved Zero is stripped from the begining of integer

    Hi, Am am using regex to find numbers matching certains patterns in directory names. These numbers will be either 8 or 10 chars in length. Private Function RegEx(ByVal CurrPath As String) As Integer 'Uses regex to see if the directory has a valid number. Dim mTen As Match =...
  3. J

    Threading question

    I am trying to wrap my head around threads. I have a recursive method that displays directory paths in a multiline text box. The directory structure is very large, about 20000 folders up to around 20 levels deep on some branches. I have been getting a ContextSwitchingDeadlock error from time...
  4. J

    Best practice advice

    Hi, I've been tasked with developing a migration tool that will create files and folders within a DMS. The data to be migrated is in the order of hundreds of gigs (migrated over a number of phases) with potentialy up to 15 to 16 levels of folders in the file system. Essentialy I'll be...
Back
Top