Tuesday, March 5, 2013

Contorlling Forms


हम जानते हैं multiform application forms मे एक से अधिक form होते है। इस कारण एक form का दूसरे form से intraction आवश्यक होता है। इसके लिए एक form के दूसरे form से control करने की आवश्यकता पड़ती है। सभी forms independently operate होते हैं। उनके बीच communication के लिए public variables की आवश्यकता पड़ती है। other form को control करने के लिए उस form के controls और settings को access और set करना पड़ता है।

       For ex- notepad application मे notepad और find& replace को मिलाकर दो forms होते हैं जहा find और replace करते समय second form से first form के textbox control को access कर text को find और replace किया जाता है। इसी प्रकार एक form से एक form से other form को control किया जाता है।

       Multiple forms के बीच communication बनाने के लिए public vairables का use किया जाता है। इसके अलावा other form के controls और settings को access और set करने के लिए form के name का use किया जाता है। form के name का प्रयोग कर उसमें available सभी controls, उनकी properties, form की properties, public methods और subroutines को access किया जा सकता है।



 

Ex- Form2.Label1.Text = “Second Form”

Program:


Public Class Form1

 

    Private Sub Button1_Click (ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

        Form2.Label1.Text = Me.TextBox1.Text

        Form2.Show ()

    End Sub

End Class

No comments:

Post a Comment

Contact us

Name

Email *

Message *