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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by troelssmit

  1. troelssmit

    SMTP Usage in C#

    More info about the compiler error is necessary, if we don't have to ask the fortune teller lady :-)
  2. troelssmit

    Search text in closed regions, Visual Studio

    Hi all, hope you are having a nice day :-) I have been using the "region" functionality of Visual Studio .Net which work very nicely. When I then want to search for a text string, the program does not search closed regions. Can this be resolved ? Thanks, Troels
  3. troelssmit

    Add Reference requires Visual Studio program restart

    Hi, when I add a reference for a class I have to reload the program before the references can be used. Is there a way to do this without the restart ?
  4. troelssmit

    After building comment web pagges, the documentation is not browseable

    I use the "built in" program in .NET 2003. I simply choose "tools", "build web documentation". Is NDoc a better choice ?
  5. troelssmit

    Printing files through .NET

    It is possible to load a bitmap and then print it. No problems in doing that at all. To print a "given file" depends on what is in that file - it will have to be loaded into the program... If it is the correct way of producing a pdf - well, that is a totally different question, I heard that much...
  6. troelssmit

    After building comment web pagges, the documentation is not browseable

    After building comment web pagges, the documentation is not browseable. The html code tries to setup a frame, but nothing is displayed inside the frame. Have anyone solved or experienced this ? I can see that all the documentation is generated by loading the files manually, but it would be...
  7. troelssmit

    Variable Length Array

    The data is fairly static, but I need to be able to access it very fast. Running through each object and asking it a couple of simple questions.
  8. troelssmit

    Variable Length Array

    That is a very good idea! I still have the problem that I don't know the implementation of ArrayList, so I don't know what kind of overhead I am creating, using it instead of a normal array.
  9. troelssmit

    'mono' - .NET on UNIX?

    It works fine on Debian linux.
  10. troelssmit

    Variable Length Array

    I am already using an ArrayList, so I was simply wondering if there is a better way to do it, Since I know which datatype Ill be using.
  11. troelssmit

    Variable Length Array

    Hi, How can I declare an array of a datatype, whose size might have to change during program execution ? - int[8] myint; // can't cange size - int[] myint = new {8,7,6,5,4,3,2,1} //can't change size - ArrayList myint = new ArrayList(); //can hold various kind of object...
  12. troelssmit

    How to: use argument or variable as object type

    Hi, If I have a variable: string aString = "Point"; how can I then do something like this object declaration: aString myObject; Thanks a lot in advance :-)

Part and Inventory Search

Back
Top