Search results for query: *

  1. D

    Question How do you change initial Text displayed from inherited Button when created on Form

    This is how to fix the issue for any control where you want to change the text at design time: Imports System.ComponentModel <Designer(GetType(EditBoxDesigner))> Public Class EditBox Inherits TextBox End Class Public Class EditBoxDesigner Inherits...
  2. D

    Question How do you change initial Text displayed from inherited Button when created on Form

    Not quite what I want. When you drag a normal TextBox to a form, for a split second you see "TextBox1", before it disappears and the Text property is then "". I am guessing I still need to implement a Design feature as you did with that example, mainly because I am having the same basic...
  3. D

    Question How do you change initial Text displayed from inherited Button when created on Form

    If you create a control by inheriting from Button and the control is named "CustomButton", when you add the control to the form, the button text is initially "CustomButton1". How can you make the initial text different than the name of the control? For example, say I want the text to just...
  4. D

    Question Process.BeginOutputReadLine() causing VSHOST.EXE to fail

    Even if I strip out the whole listbox reference it bombs on me; even if I do nothing with the data. I am going to try as you have suggested and see if that helps.
  5. D

    Question Process.BeginOutputReadLine() causing VSHOST.EXE to fail

    This code seems to be accurate when comparing to the many examples that are similar on different forums and I would think it should work: Dim pC As New Process pC.StartInfo.CreateNoWindow = True pC.StartInfo.RedirectStandardOutput = True...
Back
Top