Search results for query: *

  • Users: HWT
  • Order by date
  1. H

    RichTextBox Change Font Color

    Hi, Can any one help with this… I have to Richtextbox and I want to change the color of selected strings within the Richtextbox. I am able to do this with the code below. The trouble is if I call the function more than once then all the text in the text box changes to the color blue...
  2. H

    Labels not showing till processing complete

    Used Threads to fix problem. Hi I worked it out... I used a thread to show the form and it appears to work. Dim myform As New Form Dim thr as Thread Private Sub Run() Dim count As Integer Try thr = New Thread(New ThreadStart(AddressOf formshow))...
  3. H

    Labels not showing till processing complete

    overview Hi, This is a very basic overview of what I am trying to do. Dim count As Integer Dim myform as new form Dim Maxcount as interger Maxcount = 100000 myform.show()...
  4. H

    Labels not showing till processing complete

    I am currently having problems with a windows form not displaying correctly. I have created a form that shows the progress of the current operation (includes a progress bar). This form is called from a class the performs a lot of work. The problem is the labels on this form do not appear...
Back
Top