Search results for query: *

  1. A

    Project Properties, Application Page, Icon Setting

    jmcilhinney wrote: >Setting the icon for an application sets the icon for the application, as in >what icon is displayed for executable file that is created when you compile >your project. Ah! Thanks! David
  2. A

    Change text color to bold

    If you really must use the label color visual indication, then you could try something like: PublicClass Form1 Dim digits AsChar() = {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"} PrivateSub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles...
  3. A

    Change text color to bold

    I would use the ErrorProvider. 1) Create a new VB.NET 2005 Windows Application project 2) Drop 3 or 4 pairs of labels and textboxes on the form 3) drop a button on the form 4) drop an ErrorProvider onto the form 5) double click on the button and enter ForEach textbox As Control In...
  4. A

    Project Properties, Application Page, Icon Setting

    What is this for? For a VB.NET Windows Forms app with a startup form (like, most of them), it seems to have no effect (other than causing me to waste a lot of time searching for answers.) I eventually figured out that setting the Icon property for my main startup form is the declarative way to...
Back
Top