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 SkipVought 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. bfair123

    how do i convert ascii to char

    Beyond what's already been mentioned, any character conversion needs would be available in the System.Text namespace; refer to System.Text.ASCIIEncoding. --------------------------------------- A picture is worth 2,000 bytes. ---------------------------------------
  2. bfair123

    How to ensure thread is still ok? (Alive Event?) .Net 2.0 C#

    Perhaps you could store the DateTime.Now when the worker thread is started and just report the difference between DateTime.Now and the stored DateTime in your event as a way to track the processing time. This way you wouldn't need any kind of a timer object...
  3. bfair123

    Graphics for selected treenodes

    Is the test machine using a different version of the .NET runtime than the dev machine? --------------------------------------- A picture is worth 2,000 bytes. ---------------------------------------
  4. bfair123

    Copying macro in c#

    You should be able to do this by utilizing the Excel COM object model. You'll need to add a reference to Microsoft Office Excel in your project (on the COM tab, mine is "Microsoft Excel 11.0 Object Library"). The code below should be close to what you need: using Microsoft.Vbe.Interop; using...

Part and Inventory Search

Back
Top