Search results for query: *

  1. waynespangler

    GDI Text Rotation

    try: g.SmoothingMode.HighQuality()
  2. waynespangler

    calculator program

    This was derived from "Lets build a compiler" by Jack Crenshaw. http://compilers.iecc.com/crenshaw/
  3. waynespangler

    calculator program

    Here is an expression evaluator I wrote some time ago and transported to vb net. If you have any problems let me know. I hope this helps.
  4. waynespangler

    Multiple Selected Texts in a textbox

    You can't with a textbox. It has only one font and if you change it all the text takes on the new font. With a richtext box you can do it by changing the background color of the words you want. I would use a color that wouldn't normally be used so you can change that color back when you need to...
  5. waynespangler

    PROBLEM: EM_HIDESELECTION, SendMessage

    why are you going to so much effort. To hide the selection just use: RichtextBox.HideSelection = True -and- Editor.Select(start, start_length)
  6. waynespangler

    using activeX control in VB.net

    Start Button and Run then "regsvr32.exe xxxxxx.ocx"
Back
Top