medicenpringles
Programmer
I have an application with a running total featured on all of the forms. when certain controls are interacted with on any of the forms, i need the total to be updated. this i can do. but showing the user that the total has been changed is the problem. he's the code i'm having trouble with:
Code:
' This is in frmSecond
Sub Button1_Click(parameters, blah blah..)
Dim f as New frmSecond
Dim m as New frmMain
Globals.number += 1
f.lblTotal = Globals.number.ToString
m.lblTotal = Globals.number.ToString ' This does not happen
End Sub