// This updates UI variables such as textboxes etc. void UpdateUI() { // update text boxes totalAcceptedNumText.Text = NV11.NotesAccepted.ToString(); totalNumNotesDispensedText.Text = NV11.NotesDispensed.ToString(); notesInStorageText.Text = NV11.GetStorageInfo(); }
// This updates UI variables such as textboxes etc. void UpdateUI() { // Get stored notes info from NV11 tbNotesStored.Text = NV11.GetStorageInfo(); // Get channel info from hopper tbCoinLevels.Text = Hopper.GetChannelLevelInfo(); }