Radio Button Group Problem


Author
Message
Terry Bottorff
Terry Bottorff
StrataFrame VIP (1.1K reputation)StrataFrame VIP (1.1K reputation)StrataFrame VIP (1.1K reputation)StrataFrame VIP (1.1K reputation)StrataFrame VIP (1.1K reputation)StrataFrame VIP (1.1K reputation)StrataFrame VIP (1.1K reputation)StrataFrame VIP (1.1K reputation)StrataFrame VIP (1.1K reputation)
Group: Forum Members
Posts: 448, Visits: 12K
I am using a radio button group and I set it to have 5 radio button count. I set the BO to none since I am supplying the text for the radio buttons. I run it load the form and it looks good. I run it the second time and go back to edit it and all of a sudden I have 7, 9, 13 buttons filled in automatically and showing up on top of each other as the picture shows? I have even uninstalled, downloaded latest version are reinstalled and I get the same thing. 
What could it possibly be? 
TIA.
Replies
Terry Bottorff
Terry Bottorff
StrataFrame VIP (1.1K reputation)StrataFrame VIP (1.1K reputation)StrataFrame VIP (1.1K reputation)StrataFrame VIP (1.1K reputation)StrataFrame VIP (1.1K reputation)StrataFrame VIP (1.1K reputation)StrataFrame VIP (1.1K reputation)StrataFrame VIP (1.1K reputation)StrataFrame VIP (1.1K reputation)
Group: Forum Members
Posts: 448, Visits: 12K
Wow. Greg helped me develop one also(exit button) that required a form name as an input and now it is doing the same thing.
Imports System.Drawing
Imports System.ComponentModel
'Imports MicroFour.StrataFrame.Business
Imports MicroFour.StrataFrame.UI.Collections
Imports System.Windows.Forms.Button

''' <summary>
''' My Button class.  I will use this class to exit a form.
''' </summary>
''' <remarks></remarks>
<ToolboxBitmap(GetType(System.Windows.Forms.Button))>
Public Class myExitButton2
    Inherits MicroFour.StrataFrame.UI.Windows.Forms.Button

    Private _parentForm As System.Windows.Forms.Form

    Public Property ParentForm() As System.Windows.Forms.Form
        Get
            Return _parentForm
        End Get
        Set(ByVal value As System.Windows.Forms.Form)
            _parentForm = value
        End Set
    End Property

    Protected Overrides Sub OnCreateControl()
        MyBase.OnCreateControl()
        Me.Text = "Close"
        Me.Width = 75
        Me.Height = 23
    End Sub

    Protected Overrides Sub OnClick(ByVal e As EventArgs)
        MyBase.OnClick(e)

        '-- Close the form if its set.
        If Me.ParentForm IsNot Nothing Then
            Me.ParentForm.Close()
        End If
    End Sub


Imports MicroFour.StrataFrame.UI.Collections
The above line is also not correct now?

Ivan George Borges
Ivan George Borges
Strategic Support Team Member (4.9K reputation)Strategic Support Team Member (4.9K reputation)Strategic Support Team Member (4.9K reputation)Strategic Support Team Member (4.9K reputation)Strategic Support Team Member (4.9K reputation)Strategic Support Team Member (4.9K reputation)Strategic Support Team Member (4.9K reputation)Strategic Support Team Member (4.9K reputation)Strategic Support Team Member (4.9K reputation)
Group: StrataFrame MVPs
Posts: 1.9K, Visits: 21K
Could you reproduce this same thing on a simple sample?

About the Imports line, if this was what you were asking last, I can't see anything wrong with it.
GO

Merge Selected

Merge into selected topic...



Merge into merge target...



Merge into a specific topic ID...




Threaded View
Threaded View
Terry Bottorff - 15 Years Ago
Terry Bottorff - 15 Years Ago
Ivan George Borges - 15 Years Ago
Terry Bottorff - 15 Years Ago
Ivan George Borges - 15 Years Ago
                         Well I found out what it is I think. I created a subclass of a button...
Terry Bottorff - 15 Years Ago
                             Wow. Greg helped me develop one also(exit button) that required a form...
Terry Bottorff - 15 Years Ago
                                 Could you reproduce this same thing on a simple sample? About the...
Ivan George Borges - 15 Years Ago
Terry Bottorff - 15 Years Ago
Ivan George Borges - 15 Years Ago
Terry Bottorff - 15 Years Ago
Ivan George Borges - 15 Years Ago
Terry Bottorff - 15 Years Ago
Greg McGuffey - 15 Years Ago
Terry Bottorff - 15 Years Ago
Terry Bottorff - 15 Years Ago
Ivan George Borges - 15 Years Ago
Terry Bottorff - 15 Years Ago
Terry Bottorff - 15 Years Ago
Ivan George Borges - 15 Years Ago
Terry Bottorff - 15 Years Ago
Ivan George Borges - 15 Years Ago
Terry Bottorff - 15 Years Ago
Ivan George Borges - 15 Years Ago
Terry Bottorff - 15 Years Ago
Ivan George Borges - 15 Years Ago
Edhy Rijo - 15 Years Ago

Similar Topics

Reading This Topic

Login

Explore
Messages
Mentions
Search