Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 783871
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T20:37:10+00:00 2026-05-14T20:37:10+00:00

Sorry for lame question but I am literally starting with DNN. When you are

  • 0

Sorry for lame question but I am literally starting with DNN.

When you are in admin/design mode you can list all modules used, and when you click on module at the end you will see the list of controls used in this module with info about filename of the source.

The problem I have is in reverse — I already know the filename with source, I would like to list all modules which use this control. How to do it?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T20:37:11+00:00Added an answer on May 14, 2026 at 8:37 pm

    If you want to find module definitions with a control, use a query like

    SELECT *  
    FROM 
    ModuleDefinitions md
    INNER JOIN ModuleControls mc on (mc.ModuleDefID = md.ModuleDefID)
    WHERE ControlSrc like '%filename%'
    

    If you want to find the modules that are actually used, you’ll have to join with Tabs, TabModules and Modules tables. For example:

    SELECT
    t.PortalID
    ,t.TabID
    ,t.TabName
    ,m.ModuleID
    ,md.FriendlyName
    ,mc.ControlSrc
    FROM 
    Tabs t
    INNER JOIN TabModules tm ON t.TabID = tm.TabID
    INNER JOIN Modules m on tm.ModuleID = m.ModuleID
    INNER JOIN ModuleDefinitions md ON m.ModuleDefID = md.ModuleDefID
    INNER JOIN ModuleControls mc on mc.ModuleDefID = md.ModuleDefID
    WHERE ControlSrc like '%filename%'
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Sorry for the lame question, but I can't think of a decent way to
sorry for the lame question but with HTTP handler it is easy to do
Sorry for question but I can't find answer anywhere on internet. I couldn't find
Sorry for this simple question, but I can't solve it... There is an example:
Sorry it's lame but I can't figure it out: class Address { public: uint32_t
Sorry about the lame question but reading MSDN did not make that clear to
Sorry for this question to be a can you fix it one, but this
Sorry for this lame question, but I really am a database newbie: I want
Sorry guys if this is a lame question, but the examples i found dont
Sorry, I know this is a very lame question to ask and not of

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.