Search results for query: *

  • Users: toostage
  • Content: Threads
  • Order by date
  1. T

    regex question

    Hi i've got a regex to clean a string from dirty chars (symbols): Return Regex.Replace(strIn, "[^\w\s]", "") But, it will also clean the dirty chars within the string. What i'm trying to make is a regex that only checks the beginning of a string for dirty chars, and as soon as it finds...
  2. T

    using topmost

    i've got a problem: i've got 3 forms, 1 form = mainform including a richtextbox = rtb the other 2 forms are forms which are used as toolboxxes with style control etc. now when i use the topmost property on the 2 toolboxxes, then the toolboxxes are always @ top, even over other applications...
  3. T

    how to insert an image in a richtextbox

    i would like a button in my form which gives the user an option to insert an image in the richtextbox. I've tried google without any good results. (only found some c# code) And msdn couldnt help me either. for so far i've found this: Dim img As System.Drawing.Bitmap img =...
  4. T

    Printing WITH layout (colors, style, size etc)

    Howdy, if build a print class, but what ever i try i cant print the text with the given layout from the richtextbox. it always converts te style to some basic font and size. how to fix this? greets TooST
  5. T

    richtextbox or simular with page endings

    Howdy, i want to make a richtextbox or simular which has page separations, like msword. (but i dont wanna use msoffice plugins and stuff). If tried a lot, but none is workin. So i came to the conclusion that it aint possible with the standard richtextbox. So what can i do now ? i've thought of...
  6. T

    how to change fontfamily without changing fontsize and fontstyle

    i have a combobox with the fontfamilies in it. When ya select a piece a text and then select a fontfamily from the combobox it will change de fontfamily. But to change a fontfamily (as far as i know) ya have to call a new font for the selected area, and with that a fontfamily, a fontsize and a...
Back
Top