Click here to Skip to main content
15,867,488 members
Home / Discussions / Windows Forms
   

Windows Forms

 
QuestionWindows Forms-Text Mode Printing Pin
Thirugnanam Nataraj23-Jun-14 20:28
Thirugnanam Nataraj23-Jun-14 20:28 
AnswerRe: Windows Forms-Text Mode Printing Pin
Bernhard Hiller23-Jun-14 22:23
Bernhard Hiller23-Jun-14 22:23 
GeneralRe: Windows Forms-Text Mode Printing Pin
Thirugnanam Nataraj25-Jun-14 20:31
Thirugnanam Nataraj25-Jun-14 20:31 
QuestionHow make Form2 with progressBar in other thread, while downloading data in datagridview in Form1? Pin
Kroshandowski8-Jun-14 9:03
Kroshandowski8-Jun-14 9:03 
AnswerRe: How make Form2 with progressBar in other thread, while downloading data in datagridview in Form1? Pin
Richard MacCutchan8-Jun-14 22:01
mveRichard MacCutchan8-Jun-14 22:01 
QuestionMDI WinForms: Open childform2 in panel2 of Parent form using button of Childform1 Pin
Member 1074775521-May-14 5:31
Member 1074775521-May-14 5:31 
SuggestionRe: MDI WinForms: Open childform2 in panel2 of Parent form using button of Childform1 Pin
Richard MacCutchan21-May-14 22:07
mveRichard MacCutchan21-May-14 22:07 
GeneralRe: MDI WinForms: Open childform2 in panel2 of Parent form using button of Childform1 Pin
MyOwnBoss28-May-14 19:53
MyOwnBoss28-May-14 19:53 
Here are a few methods I use. Adapt as needed.

VB
'Determines if a form is already open.
    Public Function IsFormOpen(ByVal FormName As String) As Boolean
        Dim rVal As Boolean = False
        Dim frm As Form
        For Each frm In Me.MdiChildren
            If frm.Name = FormName Then
                rVal = True
                Exit For
            End If
        Next
        Return rVal
    End Function

'Function to show a MDI child form.
    Public Function ShowMdiChild(ByVal FormName As String) As Boolean
        Dim rVal As Boolean = False
        Dim frm As Form
        For Each frm In Me.MdiChildren
            If frm.Name = FormName Then
                rVal = True
                frm.Activate()
                frm.WindowState = FormWindowState.Maximized
                Exit For
            End If
        Next
        Return rVal
    End Function

'Invoke a public sub in a MDI child form.
    Public Sub InvokeMdiChildMethod(ByVal MethodName As String)
        Dim o As Object
        o = Me.ActiveMdiChild
        Try
            o.GetType().GetMethod(MethodName).Invoke(o, Nothing)
        Catch
        End Try
    End Sub

Private Sub ShowNewForm(ByVal sender As Object, ByVal e As EventArgs) Handles NewToolStripMenuItem.Click,    NewToolStripButton.Click, NewWindowToolStripMenuItem.Click
        ' Create a new instance of the child form.
        Dim ChildForm As New System.Windows.Forms.Form
        ' Make it a child of this MDI form before showing it.
        ChildForm.MdiParent = Me

        m_ChildFormNumber += 1
        ChildForm.Text = "Window " & m_ChildFormNumber

        ChildForm.Show()
    End Sub

GeneralRe: MDI WinForms: Open childform2 in panel2 of Parent form using button of Childform1 Pin
Richard MacCutchan28-May-14 21:27
mveRichard MacCutchan28-May-14 21:27 
QuestionHow to deploy encrypted app.config windows application in Client machine where Visual studio not installed? Pin
susanna.floora18-May-14 20:46
susanna.floora18-May-14 20:46 
AnswerRe: How to deploy encrypted app.config windows application in Client machine where Visual studio not installed? Pin
MyOwnBoss28-May-14 19:32
MyOwnBoss28-May-14 19:32 
QuestionHow to use an ErrorProvider with a UserControl? Pin
GroupIII20-Feb-14 17:48
GroupIII20-Feb-14 17:48 
Questionrdlc report in c# winforms programmatically Pin
Irshadkk14-Feb-14 18:59
Irshadkk14-Feb-14 18:59 
AnswerRe: rdlc report in c# winforms programmatically Pin
BELGIUMsky27-Mar-14 22:55
professionalBELGIUMsky27-Mar-14 22:55 
AnswerRe: rdlc report in c# winforms programmatically Pin
xstoneheartx25-Dec-14 15:25
xstoneheartx25-Dec-14 15:25 
QuestionHighlight text on webbrowser Pin
Sumit Rastogi SRA27-Jan-14 23:23
professionalSumit Rastogi SRA27-Jan-14 23:23 
AnswerRe: Highlight text on webbrowser Pin
Simon_Whale27-Jan-14 23:41
Simon_Whale27-Jan-14 23:41 
GeneralRe: Highlight text on webbrowser Pin
Sumit Rastogi SRA28-Jan-14 2:01
professionalSumit Rastogi SRA28-Jan-14 2:01 
AnswerCross posted question. Pin
Pete O'Hanlon28-Jan-14 0:31
subeditorPete O'Hanlon28-Jan-14 0:31 
Questionclick once setup not installing crystal report runtime pre- requisite while updating from file location Pin
Member 1041145119-Nov-13 1:58
Member 1041145119-Nov-13 1:58 
QuestionCategory Partitioning Pin
Member 449684917-Nov-13 17:36
Member 449684917-Nov-13 17:36 
QuestionLooking for C# winforms control / library to manage different map-based plain image layers Pin
vValkir6-Nov-13 1:22
vValkir6-Nov-13 1:22 
AnswerRe: Looking for C# winforms control / library to manage different map-based plain image layers Pin
BillWoodruff9-Nov-13 6:36
professionalBillWoodruff9-Nov-13 6:36 
AnswerRe: Looking for C# winforms control / library to manage different map-based plain image layers Pin
xstoneheartx25-Dec-14 16:20
xstoneheartx25-Dec-14 16:20 
QuestionNokia for Windows Phone developers, DVLUP. Pin
Anshu Kapoor26-Sep-13 1:45
Anshu Kapoor26-Sep-13 1:45 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.