VBA Attributes - RIP Tutorial

Download VBA (PDF)

VBA

  • Getting started with VBA
  • Awesome Book
  • Awesome Community
  • Awesome Course
  • Awesome Tutorial
  • Awesome YouTube
  • API Calls
  • Arrays
  • Assigning strings with repeated characters
  • Attributes
    • VB_[Var]UserMemId
    • VB_Createable
    • VB_Description
    • VB_Exposed
    • VB_GlobalNameSpace
    • VB_Name
    • VB_PredeclaredId
  • Automation or Using other applications Libraries
  • Collections
  • Comments
  • Concatenating strings
  • Conditional Compilation
  • Converting other types to strings
  • Copying, returning and passing arrays
  • CreateObject vs. GetObject
  • Creating a Custom Class
  • Creating a procedure
  • Data Structures
  • Data Types and Limits
  • Date Time Manipulation
  • Declaring and assigning strings
  • Declaring Variables
  • Error Handling
  • Events
  • Flow control structures
  • Frequently used string manipulation
  • Interfaces
  • Macro security and signing of VBA-projects/-modules
  • Measuring the length of strings
  • Naming Conventions
  • Non-Latin Characters
  • Object-Oriented VBA
  • Operators
  • Passing Arguments ByRef or ByVal
  • Procedure Calls
  • Reading 2GB+ files in binary in VBA and File Hashes
  • Recursion
  • Scripting.Dictionary object
  • Scripting.FileSystemObject
  • Searching within strings for the presence of substrings
  • Sorting
  • String Literals - Escaping, non-printable characters and line-continuations
  • Substrings
  • User Forms
  • VBA Option Keyword
  • VBA Run-Time Errors
  • Working with ADO
  • Working With Files and Directories Without Using FileSystemObject

VBA

  • Getting started with VBA
  • Awesome Book
  • Awesome Community
  • Awesome Course
  • Awesome Tutorial
  • Awesome YouTube
  • API Calls
  • Arrays
  • Assigning strings with repeated characters
  • Attributes
    • VB_[Var]UserMemId
    • VB_Createable
    • VB_Description
    • VB_Exposed
    • VB_GlobalNameSpace
    • VB_Name
    • VB_PredeclaredId
  • Automation or Using other applications Libraries
  • Collections
  • Comments
  • Concatenating strings
  • Conditional Compilation
  • Converting other types to strings
  • Copying, returning and passing arrays
  • CreateObject vs. GetObject
  • Creating a Custom Class
  • Creating a procedure
  • Data Structures
  • Data Types and Limits
  • Date Time Manipulation
  • Declaring and assigning strings
  • Declaring Variables
  • Error Handling
  • Events
  • Flow control structures
  • Frequently used string manipulation
  • Interfaces
  • Macro security and signing of VBA-projects/-modules
  • Measuring the length of strings
  • Naming Conventions
  • Non-Latin Characters
  • Object-Oriented VBA
  • Operators
  • Passing Arguments ByRef or ByVal
  • Procedure Calls
  • Reading 2GB+ files in binary in VBA and File Hashes
  • Recursion
  • Scripting.Dictionary object
  • Scripting.FileSystemObject
  • Searching within strings for the presence of substrings
  • Sorting
  • String Literals - Escaping, non-printable characters and line-continuations
  • Substrings
  • User Forms
  • VBA Option Keyword
  • VBA Run-Time Errors
  • Working with ADO
  • Working With Files and Directories Without Using FileSystemObject
VBA Attributes

Fastest Entity Framework Extensions

Bulk Insert Bulk Delete Bulk Update Bulk Merge

Syntax

  • Attribute VB_Name = "ClassOrModuleName"
  • Attribute VB_GlobalNameSpace = False ' Ignored
  • Attribute VB_Creatable = False ' Ignored
  • Attribute VB_PredeclaredId = {True | False}
  • Attribute VB_Exposed = {True | False}
  • Attribute variableName.VB_VarUserMemId = 0 ' Zero indicates that this is the default member of the class.
  • Attribute variableName.VB_VarDescription = "some string" ' Adds the text to the Object Browser information for this variable.
  • Attribute procName.VB_Description = "some string" ' Adds the text to the Object Browser information for the procedure.
  • Attribute procName.VB_UserMemId = {0 | -4}
    • ' 0: Makes the function the default member of the class.
    • ' -4: Specifies that the function returns an Enumerator.
  • VB_[Var]UserMemId
  • VB_Createable
  • VB_Description
  • VB_Exposed
  • VB_GlobalNameSpace
  • VB_Name
  • VB_PredeclaredId

Got any VBA Question?

Ask any VBA Questions and Get Instant Answers from ChatGPT AI: ChatGPT answer me! pdf PDF - Download VBA for free Previous Next This modified text is an extract of the original Stack Overflow Documentation created by following contributors and released under CC BY-SA 3.0 This website is not affiliated with Stack Overflow logo rip SUPPORT & PARTNERS
  • Advertise with us
  • Contact us
  • Cookie Policy
  • Privacy Policy
STAY CONNECTED

Get monthly updates about new articles, cheatsheets, and tricks.

Subscribe Cookie This website stores cookies on your computer. We use cookies to enhance your experience on our website and deliver personalized content. For more details on our cookie usage, please review our Cookie Policy and Privacy Policy Accept all Cookies Leave this website

Từ khóa » Visual Basic Attribute Vb_name