Search results for query: *

  1. A

    How do you "Find" a substring in StringBuilder?

    StringBuilder I am surprised and shocked. Couldn't they have made the StringBuilder class more flat and provide all the functions thru the same level , e.g. StringBuilder.Find(----) ? I have to give a presentation and I have to show how OOP makes things easier. String vs. StringBuilder is...
  2. A

    How do you align text in textboxes (left, center, right)

    There does not appear a TextAlign property in the Properties pane. I wish there was. I have also checked if there is a code field by typing the textbox name, then teh period, and seeing what appears. OK, I've found the problem. I was using RichTextBoxes. Thanks ... -avi
  3. A

    How do you align text in textboxes (left, center, right)

    Hi all, I am using Visual Basic 2008 Express Edition. I have completed a small Windows app. On the way I noticed that I couldn't find a way of aligning the text in my text boxes (in Office VBA, which I know quite well, this would be the TextAlign property, with values TextAlignLeft...
  4. A

    How do you "Find" a substring in StringBuilder?

    Hi all, How do you Find a substring in StringBuilder? E.g., I want it to tell me if there is substring in a string, and if so, what's its position is. I can see a Replace member but not a Find member. Maybe there is some way of using the Replace op also as a Find op? TIA - avi
  5. A

    Question What is the latest and greatest way of doing strings in .Net VB / C++ / C# ?

    Actually, since the Seminar should represent the up-to-date way of doing things, I should present StringBuilder. Actully, if I present both ways (also VB6 strings) it will be a good way of presenting the difference between OOP and procedural prog. Tnx again, - avi
  6. A

    Question What is the latest and greatest way of doing strings in .Net VB / C++ / C# ?

    Thanks, Solitaire. I am glad I know that now. But I will use the simpler class for the basic seminar I have to give. Thanks! - avi
  7. A

    Question What is the latest and greatest way of doing strings in .Net VB / C++ / C# ?

    Hi all, RE: What is the latest and greatest way of doing strings in .Net VB / C++ / C# ? Using Visual Express 2008. I am designing an "Intro to Programming" course for tech writers. I am writing sample code in a number of languages. Pray tell me what is the latest and greatest way of...
Back
Top