+ Reply to Thread
Results 1 to 5 of 5

Unknown VBA Code

Hybrid View

  1. #1
    Registered User
    Join Date
    01-10-2020
    Location
    USA
    MS-Off Ver
    Georgia
    Posts
    2

    Unknown VBA Code

    Hi,
    I developed a spreadsheet for a friend that has a simple VBA code that highlights three sheets and prints them to a PDF (names the file based on a concatenated field). This week, I began updating it with a new 2020 price list and found the following code in the "RibbonX Code" module. I don't think I put it there, can anyone tell me what it's doing and more importantly if it's malicious?

    Option Explicit
    Const sResourcePrefix As String = "RES_"

    'Get Culture
    Private Function GetATPUICultureTag() As String
    Dim shTemp As Worksheet
    Dim sCulture As String
    Dim sSheetName As String

    sCulture = Application.International(xlUICultureTag)
    sSheetName = sResourcePrefix + sCulture

    On Error Resume Next
    Set shTemp = ThisWorkbook.Worksheets(sSheetName)
    On Error GoTo 0
    If shTemp Is Nothing Then sCulture = GetFallbackTag(sCulture)

    GetATPUICultureTag = sCulture
    End Function

    'Entry point for RibbonX button click
    Sub ShowATPDialog(control As IRibbonControl)
    Application.Run ("fDialog")
    End Sub

    'Callback for RibbonX button label
    Sub GetATPLabel(control As IRibbonControl, ByRef label)
    label = ThisWorkbook.Sheets(sResourcePrefix + GetATPUICultureTag()).Range("RibbonCommand").Value
    End Sub

    'Callback for screentip
    Public Sub GetATPScreenTip(control As IRibbonControl, ByRef label)
    label = ThisWorkbook.Sheets(sResourcePrefix + GetATPUICultureTag()).Range("ScreenTip").Value
    End Sub

    'Callback for Super Tip
    Public Sub GetATPSuperTip(control As IRibbonControl, ByRef label)
    label = ThisWorkbook.Sheets(sResourcePrefix + GetATPUICultureTag()).Range("SuperTip").Value
    End Sub

    Public Sub GetGroupName(control As IRibbonControl, ByRef label)
    label = ThisWorkbook.Sheets(sResourcePrefix + GetATPUICultureTag()).Range("GroupName").Value
    End Sub

    'Check for Fallback Languages
    Private Function GetFallbackTag(szCulture As String) As String
    'Sorted alphabetically by returned culture tag, then input culture tag
    Select Case (szCulture)
    Case "rm-CH"
    GetFallbackTag = "de-DE"
    Case "ca-ES", "ca-ES-valencia", "eu-ES", "gl-ES"
    GetFallbackTag = "es-ES"
    Case "lb-LU"
    GetFallbackTag = "fr-FR"
    Case "nn-NO"
    GetFallbackTag = "nb-NO"
    Case "be-BY", "ky-KG", "tg-Cyrl-TJ", "tt-RU", "uz-Latn-UZ"
    GetFallbackTag = "ru-RU"
    Case Else
    GetFallbackTag = "en-US"
    End Select
    End Function

    Thanks! I appreciate the help.
    Ophiacus

  2. #2
    Forum Expert romperstomper's Avatar
    Join Date
    08-13-2008
    Location
    England
    MS-Off Ver
    365, varying versions/builds
    Posts
    21,980

    Re: Unknown VBA Code

    Are you sure that code is in your workbook? It looks like code from the Analysis Toolpak add-in.
    Everyone who confuses correlation and causation ends up dead.

  3. #3
    Registered User
    Join Date
    01-10-2020
    Location
    USA
    MS-Off Ver
    Georgia
    Posts
    2

    Re: Unknown VBA Code

    I think you're right. It's in the "Funcres.xlam". Maybe it's not in this file and probably not something to worry about?

  4. #4
    Forum Expert romperstomper's Avatar
    Join Date
    08-13-2008
    Location
    England
    MS-Off Ver
    365, varying versions/builds
    Posts
    21,980

    Re: Unknown VBA Code

    Yes, that's the ATP add-in, so nothing to worry about.

  5. #5
    Forum Expert
    Join Date
    12-24-2007
    Location
    Alsace - France
    MS-Off Ver
    MS 365 Office Suite
    Posts
    5,088

    Re: Unknown VBA Code

    @Ophiacus keep in mind to use code tags ... see forum's rules...!
    - Battle without fear gives no glory - Just try

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Code not opening the workbook due to unknown reasons
    By PaulM100 in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 10-31-2019, 11:01 AM
  2. [SOLVED] VBA code to total cells, unknown row, unknown number of cells
    By Ellen 2Excel in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 05-08-2018, 06:33 PM
  3. Unknown function of code
    By Sc0tt1e in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 03-26-2014, 07:27 AM
  4. Code is making changes for unknown reason
    By BonsaiJoe in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 01-09-2012, 06:11 PM
  5. Unknown error in VBA code
    By mjhopler in forum Excel General
    Replies: 4
    Last Post: 06-03-2011, 01:09 PM
  6. Unknown code
    By Peter1999 in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 09-13-2007, 06:06 AM
  7. [SOLVED] Unknown problem with simple VBA code
    By norika in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 06-21-2005, 01:05 AM

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