+ Reply to Thread
Results 1 to 11 of 11

How does one use a VB module in an Excel sheet's code?

  1. #1
    Registered User
    Join Date
    02-27-2013
    Location
    USA, Earth
    MS-Off Ver
    Excel 2010
    Posts
    16

    Question How does one use a VB module in an Excel sheet's code?

    Hi Everyone,

    This is my first post here, so I hope I am following the proper format. I am newer to Visual Basic, but have some back ground in C++, Java script, and Python.

    Getting to the question at hand, I am wondering just how to call a 'module' via a button in an excel sheet. Creating the button and the linked title was easy enough, but I cannot seem to get the module to be called. I know the module works on its own with no variables fed in, but every time I get the error:

    Compile error:

    Expected variable or procedure, not module
    For the code:

    Private Sub Cmd_Bttn__Find_Folder_Click()

    ' Display Message to user:
    ' ========================
    MsgBox "Please choose the folder which contains the file 'Fan_Data.xlsx'"

    ' Browse for Folder:
    ' ===================
    Call BrowseForFolder

    ' Assign folder location to a variable:
    ' -------------------------------------
    ' OpenBrowseAt = BrowseForFolder

    End Sub
    Browse for Folder Function: (in module named "BrowseForFolder") (imported as a .bas file)

    Option Explicit

    Function BrowseForFolder(Optional OpenAt As Variant) As Variant
    ' NOTE_1: If the "OpenAt" path is provided, open the browser at that directory
    ' NOTE_2: If "OpenAt" path is invalid, function will open at the Desktop level

    Dim ShellApp As Object

    ' Create a file browser window at the default folder
    ' -----------------------------------------------------
    Set ShellApp = CreateObject("Shell.Application"). _
    BrowseForFolder(0, "Please choose a folder", 0, OpenAt)

    ' Set the folder to that selected. (On error in case cancelled)
    ' -----------------------------------------------------------------
    On Error Resume Next
    BrowseForFolder = ShellApp.self.path
    On Error GoTo 0

    ' Destroy the Shell Application
    ' ----------------------------------
    Set ShellApp = Nothing

    ' Check for invalid or non-entries and send to the Invalid error handler if found
    ' -------------------------------------------------------------------------------
    ' Valid selections can begin L: (where L is a letter) or
    ' \\ (as in \\servername\sharename.
    '
    ' All others are invalid
    '
    Select Case Mid(BrowseForFolder, 2, 1)

    Case Is = ":"
    If Left(BrowseForFolder, 1) = ":" Then GoTo Invalid

    Case Is = "\"
    If Not Left(BrowseForFolder, 1) = "\" Then GoTo Invalid

    Case Else
    GoTo Invalid ' (See Routine Below)

    End Select

    Exit Function

    Invalid:
    'If it was determined that the selection was invalid, set to False
    BrowseForFolder = False

    End Function

    Do I need to copy and paste my code from the module "BrowseForFolder" into the sheet itself to make it work? If so, using modules aside from a form of back up seems entirely redundant. I'm sure there has to be a way to do this, but I am just not aware of it yet. Ideally I want to take the found folder location and assign it to the variable as shown, then use it so I can open the indicated excel file to extract data.

    Thank you in advance for any assistance!
    Last edited by Sarvazad; 03-14-2013 at 02:03 PM. Reason: Post is resolved with a solution

  2. #2
    Forum Guru JosephP's Avatar
    Join Date
    03-27-2012
    Location
    Ut
    MS-Off Ver
    2003/10
    Posts
    7,328

    Re: How does one use a VB module in an Excel sheet's code?

    never give a module and a procedure the same name. you don't call a module you call a routine
    Josie

    if at first you don't succeed try doing it the way your wife told you to

  3. #3
    Valued Forum Contributor xlbiznes's Avatar
    Join Date
    02-22-2013
    Location
    Bahrain
    MS-Off Ver
    Excel 2007
    Posts
    1,223

    Re: How does one use a VB module in an Excel sheet's code?

    Hi,

    you don't have to copy the module code into the sheet. Your code looks absolutely fine. Can you post your file so that we can simulate your error.
    Happy Computing ,

    Xlbiznes.

    To show your appreciation please click *

  4. #4
    Registered User
    Join Date
    02-27-2013
    Location
    USA, Earth
    MS-Off Ver
    Excel 2010
    Posts
    16

    Re: How does one use a VB module in an Excel sheet's code?

    First off, thank you for the quick response!

    So you're saying the routine is comparable to the function inside the module, right?

    Does it call a module as if it were a class then?

    Or once it is imported, does as a module simply provide all the defined functions that were written inside of it as if there were basic library functions? Therefore you would be able to pretend they were essentially 'included' and never needed to be called specially since it was added via the GUI to the tree?

    Sorry if this all seems rather basic, I'm just trying to make sure I get my bearings and understand fully.

  5. #5
    Registered User
    Join Date
    02-27-2013
    Location
    USA, Earth
    MS-Off Ver
    Excel 2010
    Posts
    16

    Lightbulb Re: How does one use a VB module in an Excel sheet's code?

    Quote Originally Posted by xlbiznes View Post
    Hi,

    you don't have to copy the module code into the sheet. Your code looks absolutely fine. Can you post your file so that we can simulate your error.
    Hi Xlbiznes,

    Thanks for the reply as well. I actually can not post the file in its entirety to the site since it is a company document. I am essentially trying to create tools to make the data much more manageable.

    The response that JosephP gave me helped out a ton. By simply appending "__module" to the end of my module name (ie, instead of "BrowseForFolder" I now have it named as "BrowseForFolder__module") the program was able to locate function and run it as intended to have it allow the user to pick a folder via a GUI browser.

    I am still curious if my understanding I posted before is correct however, before I proceed to further this code. Is there an inherent issue to having multiple functions in a single module? Or is there an aspect of the VB theory I should keep in mind for its limitations?

  6. #6
    Forum Guru JosephP's Avatar
    Join Date
    03-27-2012
    Location
    Ut
    MS-Off Ver
    2003/10
    Posts
    7,328

    Re: How does one use a VB module in an Excel sheet's code?

    functions and subs are both routines. the module is simply a container-like a class except you do not create instances of it-so yes it works like a library. and like a class, you call the routines it contains, not the class itself.
    for your purposes you just need to change the module name to something different and then the code will work

  7. #7
    Registered User
    Join Date
    02-27-2013
    Location
    USA, Earth
    MS-Off Ver
    Excel 2010
    Posts
    16

    Re: How does one use a VB module in an Excel sheet's code?

    Joseph, that was a perfect explanation! Thank you!

    Haha I could have spent several hours more on the web and never found a direct answer like that. Most of the information out there is either too focused on a goal or for people that have never programmed before. Knowing all that, I feel like programming in VB will be so much cleaner and easier.

  8. #8
    Forum Guru JosephP's Avatar
    Join Date
    03-27-2012
    Location
    Ut
    MS-Off Ver
    2003/10
    Posts
    7,328

    Re: How does one use a VB module in an Excel sheet's code?

    you're welcome

    note that like a class you can refer to a routine as a member of its container module
    Please Login or Register  to view this content.
    for instance-necessary if you have routines of the same name in different modules

  9. #9
    Registered User
    Join Date
    02-27-2013
    Location
    USA, Earth
    MS-Off Ver
    Excel 2010
    Posts
    16

    Re: How does one use a VB module in an Excel sheet's code?

    That's useful to know as well. I could see that being especially useful in case where one might have a combined code and someone else has unknowingly used the same routine name in a different module.

    Are there any resources of particular help that you might suggest I look into if I wanted to understand VB more?

    Also thank you again for the continued help. Its much appreciated.

  10. #10
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: How does one use a VB module in an Excel sheet's code?

    Naming modules is an opportunity for organization. A module may have only a single procedure, but will commonly have several procedures, all of which should be closely related (or they should be in separate modules).

    I use the first several characters of module names to give an hint what they are, which also keeps them visually sorted in the VBA project and directories. Examples:

    appWhatever (Application code unique to the workbook)

    xlInterpolators (xl because the interpolation is relevant to the Excel object model)
    xlMergeStyles
    xlMakeDynRanges
    xlSheetMap

    mathSimpson (an integration routine)
    mathBaseConversion
    mathCubicSpline

    strSort (a whole bunch of string sorting routines, generally more relevant to string processing than sorting)
    strPadNumbers

    sortQuickSort
    sortInsertionSort

    fileListFiles (file I/O)
    Entia non sunt multiplicanda sine necessitate

  11. #11
    Registered User
    Join Date
    02-27-2013
    Location
    USA, Earth
    MS-Off Ver
    Excel 2010
    Posts
    16

    Re: How does one use a VB module in an Excel sheet's code?

    Sorry for the late reply, I thought I had responded before.

    I like that idea shg - I may need to adopt a better prefix system for my VBA codes. I started writing and using suffixes like "__module" as the module name, but a prefix would be easier for anyone who is not me. Plus it may keep them out of trouble if they're newer to VBA and don't know about the name conflict issue.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Tags for this Thread

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