Search results for query: *

  1. P

    Question Save dynamically created button permanently to the form.

    Public Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click 'some code Dim MyButton As New Button() With MyButton .Location = New Point(12, 12) .Size = New Size(75, 30) .TabIndex = 0 .Text = TextBox1.Text...
  2. P

    Question Cannot remove the extra spaces from textfield output !!!!

    Thanks 'John'! :peaceful: It worked..... and thanks for proactively providing that coding tip !! :agree:
  3. P

    Question Cannot remove the extra spaces from textfield output !!!!

    So, I am executing a function which returns some string value in textfields. But, when I am trying to use the textfield value somewhere else; it gets added with some extra spaces and I am not able to achieve the desired task. I have tried Trim() and it didnt help and I have also tried...
  4. P

    Question Control not working in a new child form as expected

    I am using the below code to open a new form: Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click Dim NewMDIChild As New mdgeneral 'Set the Parent Form of the Child window. NewMDIChild.MdiParent = Me 'Display the new form...
Back
Top