Home > Microsoft .Net Development Tips > ARCHIVE: Tips & Tricks > Form calling
Win Development Tips:
EMAIL THIS
 TIPS & NEWSLETTERS TOPICS 

ARCHIVE: TIPS & TRICKS

Form calling


ROBBIE FREELAND
01.30.2001
Rating: -3.61- (out of 5)


Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us   


Form calling
Robbie Freeland

Reader Robbie Freeland serves up this tip that lets you select a form to load based on what your user does.


You can dynamically load a VB form from any string value. This can be useful when you have an application that has to load one of a multitude of different forms based on different user-defined criteria. You could define the criteria and the form name to serve up in a database and create a very flexible and easily maintained environment.

'Dynamically Load a Form from a String Value

Private Sub Form_Load()
    'There must be a form called frmTest physically
    'in your test project for this to work.
    txtFormName = "frmTest"
End Sub

Private Sub cmdTestFormLoad_Click()
    'txtFormName is the name of a text box
    'residing on your calling form.
    'This could also be any string value, even
    'perhaps one stored in a database.
    LoadFormByName txtFormName
End Sub

Private Sub LoadDynamicForm(newFormName As String)
    
    Dim DynamicForm As Form
    Set DynamicForm = Forms.Add(newFormName)
    'The load statement can not be ommitted
    'in order for this to work as a compiled
    'executable.
    Load DynamicForm
    DynamicForm.Show

End Sub

Thanks Robbie. For your interest in SearchVB, we will forward you a SearchVB denim shirt.

Robbie Freeland is currently a Systems Analyst with First North American National Bank (A Circuit City company). He has 13+ years experience creating solutions for financial institutions using MS Basic and Visual Basic.

Did this tip work for you? Let us know. Email us to sound off.


Rate this Tip
To rate tips, you must be a member of SearchWinDevelopment.com.
Register now to start rating these tips. Log in if you are already a member.


Submit a Tip




Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us   



RELATED CONTENT
ARCHIVE: Tips & Tricks
SearchVB wants your tips
Find out what VS.NET modules are installed
Retrieving icons from an EXE-file
Toggling Boolean values
VS.NET multiple tabbed windows
Set the value of a DataField in code behind
Easy grid design
Open using last Visual Studio.NET layout
Save development time by using inherited forms
Reusing code in VS.NET

RELATED RESOURCES
2020software.com, trial software downloads for accounting software, ERP software, CRM software and business software systems
Search Bitpipe.com for the latest white papers and business webcasts
Whatis.com, the online computer dictionary

DISCLAIMER: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.



Database Programming Solutions - .NET XML, Visual Studio LINQ, ORM .NET
About Us  |  Contact Us  |  For Advertisers  |  For Business Partners  |  Site Index  |  RSS
SEARCH 
TechTarget provides technology professionals with the information they need to perform their jobs - from developing strategy, to making cost-effective purchase decisions and managing their organizations' technology projects - with its network of technology-specific websites, events and online magazines.

TechTarget Corporate Web Site  |  Media Kits  |  Site Map




All Rights Reserved, Copyright 2000 - 2009, TechTarget | Read our Privacy Policy
  TechTarget - The IT Media ROI Experts