How could I call a module or something else to return data to me after its ran. I don't want to make my form1 code all messy.
Thanks!
Example by what I mean return:
Public Function Test() As String
Return "Tes34t"
End Function
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
MessageBox.Show(Test)
End Sub