Search results for query: *

  1. N

    How can I know where Am i in a RichTextBox?

    I tried this code but I recieve the following error in the underlined expression Expression is not an array or a method, and cannot have an argument list. If text(ix1) = " " Then Exit For If text(ix2) = " " Then Exit For
  2. N

    How to save as image containing the text of a richTextBox

    Thanks Don but it didnt work. Below is my code I use for print preview etc. Private Sub mnuPrint_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles mnuPrint.Click If PrintDialog1.ShowDialog() = DialogResult.OK Then PrintDocument1.Print() End If End Sub ' Menu Print...
  3. N

    How to save as image containing the text of a richTextBox

    Friends, I copied this code from MSNDN library site to extend richtextbox class but it dont show unicodes which I am using in my project. Please help. Option Explicit On Imports System Imports System.Windows.Forms Imports System.Drawing Imports System.Runtime.InteropServices Imports...
Back
Top