Okay a question which has been asked a million time before, but what is the correct way to access items ect between forms previously I've done this?


VB Code:
  1. Public Class frmcall
  2.     Inherits System.Windows.Forms.Form
  3.     Dim form1 As Form1
  4.  
  5.     Private Sub frmcall_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
  6.  
  7.         form1 = DirectCast(Me.Owner, Form1)
  8.     End Sub
  9.  
  10.     Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
  11.         MsgBox(form1.BindingContext(form1.ds, "employees.SMS").Current())
  12.  
  13.         MsgBox(Form1.cbocompany.Text)
  14.     End Sub
  15. End Class
Which allows me to access all the components of Form1, just really want to check this is the correct way of doing it, as may as well get things right from the start.