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 gkittelson 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. KostyaK

    Substrings in C#

    Oh, I forgot, that's C, so you can just use escape sequence '/n' for a new line.
  2. KostyaK

    Substrings in C#

    Well, in standart ASCII table new line is 10. So just seek for Convert.ToChar(10) char in your string. What about string functions in C#, well, they are not so good as in, for example, VB, so I prefer to use a string as an array of chars. For ex: string s = "Test"; then: s[0] = 'T'...
  3. KostyaK

    How can I open a path (not a file) using com diag?

    Plz, don't send any links. It should be easy, I just don't know how to do it ... And I know how to use OpenFileDialog, but it's still OpenFileDialog, I need to get a directory path (or a drive). ThanX.
  4. KostyaK

    Help: get current app filename & open a folder using diag. control

    chiph, for the first link - thanX, what about OpenFileDialog - I know how to use it. But it opens a file, I need to open a directory (to get just any path or even drivename, etc.) Anyway, thanX.
  5. KostyaK

    Help: get current app filename & open a folder using diag. control

    Plz, help. How can I get filename of my program? And how can I open a folder (path, not a file) using dialog controls? ThanX.

Part and Inventory Search

Back
Top