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 Chriss Miller 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: *

  • Users: DavesTips
  • Content: Threads
  • Order by date
  1. DavesTips

    Debugging and Datasets

    Some questions for a change: At some point I got some error message while debugging a web forms project and had the option to switch off debugging for the current project, and made the sad mistake of doing this. After the original problem was resolved (something to do with IIS folder...
  2. DavesTips

    Reverse name lookup

    Hopefully a simple question: is there an NT tool for looking up the domain name from an IP address? :-) Hope that this helped! :-)
  3. DavesTips

    Exciting new language???

    In view of the fact that my question below is now 5 days at the top of this forum without an answer, which means also no other question or answer was posted in this time, I wonder what this says about the amount of interest in C#...
  4. DavesTips

    Share authorization

    Anyone solved this? I have my development work on a share. I have followed the instructions to authorize this, started mmc, gone through the steps to add a url to IntranetZone, I come to the instruction "add the .net sdk to the share location of your project". Whatever does this mean...
  5. DavesTips

    Template specialisation

    I've been trying out some more advanced template functions recently. As an example I wrote a simple sort routine slightly in the manner of STL: template <class type> inline void swap(type a[],int e1,int e2){ type t = a[e1]; a[e1] = a[e2]; a[e2] = t; } template <class T> struct gt { bool...

Part and Inventory Search

Back
Top