Search results for query: *

  1. J

    Tracing question

    Tracing problems continue Hi John, Thanks for you help with the tracing. Works great! I'm having one small problem that I was hoping you may be able to shed some light on. The message that is returned is something like, If possible I would like to display, Thanks
  2. 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")...
  3. J

    Resolved Zero is stripped from the begining of integer

    Look mate, I don't want to get into an on-line argument. I'm still learning this stuff and am just doing my best. I'm sorry if I asked a dumb question but I will tell you something for free. No matter how good or bad I am at this stuff, I will "allways" be helpfull when ever I get the chance...
  4. J

    Resolved Zero is stripped from the begining of integer

    Well you'll have to forgive me for asking a "dumb question". Please try to keep in mind when you are next berating a newbie that we're not all as clever as you.
  5. J

    Resolved Zero is stripped from the begining of integer

    Thanks for the info. I figured there was something fundamental that I was missing. Much appreciated!
  6. 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 =...
  7. J

    Threading question

    Thanks for the info. I've also only seen this while running in VS and I had turned it off (on another machine) via a switch inside an exception configuration setting. Can't seem to find the darn thing again :-(
  8. 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...
  9. J

    Question How do import .NET libraries at runtime?

    why not just do your imports up front as you would for any other namespace?
  10. 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