Results 1 to 16 of 16

Prudent way of 'declaring' and 'setting' variables in a Userform?

Threaded View

  1. #1
    Registered User
    Join Date
    05-08-2013
    Location
    Acht, NL
    MS-Off Ver
    Excel 2016
    Posts
    30

    Cool Prudent way of 'declaring' and 'setting' variables in a Userform?

    Hi fellow forum members,

    Introduction
    I have a file in which I register all the people to whom I send a (birthday)card.
    Also I register to whom, when and which text and/or poem I have sent.
    To do all of that, the Excel file has 4 sheets, of which 1 is hidden (not really important now), and these are:
    - Card Text (columns: year, name, country, card text, poem text)
    - Poem Text (columns: poem number, poem text, country code)
    - Personal credentials (columns: name, country, deceased, columns with years and poem numbers)

    The Userform is my main input conduit, I can:
    - select a surname
    - select a first name
    - select a country
    - select a poem number, which gives the corresponding poem text
    - add/change/delete personal credentials

    Userform summary
    -------------------------------------------------------------------------------------------------
    ► At the very start, below "Option Explicit" (total of: 31x Module-variables)
    -------------------------------------------------------------------------------------------------
    6x Module STRING-variables -------> (e.g. "Private m_sSurname As String")
    5x Module INTEGER-variables ------> (e.g. "Private m_iFirstSurnameRow As Integer")
    10x Module BOOLEAN-variables ----> (e.g. "Private m_bStartDate As Boolean")
    1x Module NEW CLASS-variables ---> (e.g. "Private m_oColor As New clsColoring")
    5x Module LISTOBJECT-variables ---> (e.g. "Private m_oTbl1 As ListObject")
    4x Module WORKSHEET-variables --> (e.g. "Private m_WS1 as Worksheet")

    -------------------------------------------------------------------------------------------------
    ► In the Sub "Userform_Initialize" (total of: 9x "settings")
    -------------------------------------------------------------------------------------------------
    4x WORKSHEET settings ------------> (e.g. "Set WS1 = cnCardsNL")
    5x TABLE NAME settings ------------> (e.g. "Set m_oTbl0 = WS1.ListObjects(1)")

    -------------------------------------------------------------------------------------------------
    ► Other (meaningless?) totals in the Userform
    -------------------------------------------------------------------------------------------------
    36x Private Subs
    98x variables within the 36x SUBs

    Question
    "Is this way of programming prudent or just bad programming ?" (see: attachments)
    In other words: do I 'declare' and 'set' as many variables as possible as Module variables or is it more prudent to 'declare' and 'set' them in the appropriate Subs?

    Note: it seems the Userform loads (reacts) quicker when as many variables as possible are 'declared' and 'set' as Module variables....!

    It would be much appreciated if someone could shed some light on programming protocols / rules / etiquette.
    Thanks in advance and.... I do apologies for this rather elaborate post, sorry.
    Attached Images Attached Images
    Last edited by Irmaxx; 08-07-2023 at 11:51 AM.
    Win10Pro 22H2 | Excel2016

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Setting up variables for the userForm on Workbook_Open() - ERROR 91
    By kropeck in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 09-16-2014, 07:39 AM
  2. Declaring Public Variables to create a userform
    By samz93 in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 04-02-2013, 08:47 AM
  3. [SOLVED] declaring variables help
    By jakeembx in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 03-14-2013, 04:03 PM
  4. Setting Global Variables from UserForm
    By vikasnitk85 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 12-13-2012, 11:04 AM
  5. Declaring Variables
    By Weston33 in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 02-06-2012, 05:39 AM
  6. Declaring of variables
    By pspyve in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 02-08-2011, 08:44 PM
  7. Declaring specific userform variables/checkbox
    By HOT97ECLIPSEGSX in forum Excel - New Users/Basics
    Replies: 15
    Last Post: 06-21-2010, 03:09 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1