Pluma1 Posted August 2, 2023 Report Posted August 2, 2023 How would I go about adding an alarm when a recipe is selected it will set that alarm off but also say which recipe was selected in the process when looking at the alarm viewer. Quote
JYG Posted August 4, 2023 Report Posted August 4, 2023 What I do is adding a button "Enable" and "Disable" beside the RecipeViewer in a dialog box. You can select the recipe in the RecipeViewer and push the button "Enable" to confirm the selection. Your "Enable" button must have a event calling subroutine like this : Sub EventEnable RecipeEnabled = True WriteRecipeToController(RecipeViewerSelector.SelectedTemplate, RecipeViewerSelector.SelectedRecipe) End Sub Sub EventDisable RecipeEnabled = False End Sub Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.