mr-es335 Posted November 20 Posted November 20 (edited) Good day, To being with, I do hope that this "section" is the correct one to provide this information? I designed this MS Excel Workbook for myself and then thought about making such available to others. Disclaimer Two important "things" to note, 1) I will NOT be providing a great deal of explanation as to how all of this "works" - being hopeful that those that ARE interested in this information will have the wherewithal to "figure thing out for themselves", and 2) I will NOT be providing any support beyond what is written in the included ReadMe! text. The Zip file All of the various Information pertinent to the Button Calculator will be provided in a single Zip file. Following is the provided sample script, as-well-as some "other" relevant information... expandcollapse popup; ----------------------------------------------- #include <FontConstants.au3> #include <GUIConstantsEx.au3> ; ----------------------------------------------- Global $hGUI = GUICreate("Title", 435, 135) GUISetFont(14, $FW_BOLD, $GUI_FONTNORMAL, "Calibri") ; ----------------- ; Column 1 ;Global $_sCol1Row1a = GUICtrlCreateButton("Item 1", 10, 10, 100, 25) ;Global $_sCol1Row1b = GUICtrlCreateButton("Item 2", 10, 40, 100, 25) ;Global $_sCol1Row1c = GUICtrlCreateButton("Item 3", 10, 70, 100, 25) ;Global $_sCol1Row1d = GUICtrlCreateButton("Item 4", 10, 100, 100, 25) ; ----------------- ; Column 2 ;Global $_sCol1Row1a = GUICtrlCreateButton("Item 1", 115, 10, 100, 25) ;Global $_sCol1Row1b = GUICtrlCreateButton("Item 2", 115, 40, 100, 25) ;Global $_sCol1Row1c = GUICtrlCreateButton("Item 3", 115, 70, 100, 25) ;Global $_sCol1Row1d = GUICtrlCreateButton("Item 4", 115, 100, 100, 25) ; ----------------- ; Column 3 ;Global $_sCol1Row1a = GUICtrlCreateButton("Item 1", 220, 10, 100, 25) ;Global $_sCol1Row1b = GUICtrlCreateButton("Item 2", 220, 40, 100, 25) ;Global $_sCol1Row1c = GUICtrlCreateButton("Item 3", 220, 70, 100, 25) ;Global $_sCol1Row1d = GUICtrlCreateButton("Item 4", 220, 100, 100, 25) ; ----------------- ; Column 4 ;Global $_sCol1Row1a = GUICtrlCreateButton("Item 1", 325, 10, 100, 25) ;Global $_sCol1Row1b = GUICtrlCreateButton("Item 2", 325, 40, 100, 25) ;Global $_sCol1Row1c = GUICtrlCreateButton("Item 3", 325, 70, 100, 25) ;Global $_sCol1Row1d = GUICtrlCreateButton("Item 4", 325, 100, 100, 25) ; ----------------------------------------------- GUISetState(@SW_SHOW, $hGUI) ; ----------------------------------------------- While 1 Switch GUIGetMsg() Case $GUI_EVENT_CLOSE ExitLoop EndSwitch WEnd ; ----------------------------------------------- In closing... I hope that some will find this information to be of some practicable use? Zip.zip Edited November 20 by mr-es335 mr-es335 Sentinel Music Studios
mr-es335 Posted November 20 Author Posted November 20 (edited) Good day, Following is a simplified update to the above. • Note; The Worksheet is NOW protected!! ButtonCalcProtected.zip Edited November 20 by mr-es335 mr-es335 Sentinel Music Studios
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now