Link CodeSample - Calling Link.Open with and without LinkParameters
Categories: Buttons and LinkLabels
|
Tags: Developers, Navigation, 1. Beginner, 2. Intermediate, 3. Advanced, Navigation, Pre v6.3, v6.3, v6.4 and Later
Revision:
1
Posted:
04/Oct/2009
Updated:
23/July/2010
Status:
Publish
Types: Code, Reference
|
This article will have a few sections added to it soon, based on the following article type skeleton: CodeSample OverviewThis samplecode shows how to call Link.Open with and without LinkParameters. Calling Link.Open without LinkParametersVB.NET Code
Link.Open("http://www.google.com")
C# Code
Link.Open("http://www.google.com");
Calling Link.Open with LinkParametersSee alsoVB.NET Code
Dim LP As LinkParameters = New LinkParameters
LP.FullScreen = False
LP.Location = New System.Drawing.Point(100, 100)
LP.Resizable = True
LP.ScrollBars = True
LP.ShowLocationBar = True
LP.ShowMenuBar = True
LP.ShowStatusBar = True
LP.ShowTitleBar = True
LP.ShowToolBar = True
LP.Size = New System.Drawing.Point(300, 300)
LP.Target = ""
LP.WindowStyle = LinkWindowStyle.Normal
Link.Open("http://www.google.com", LP)
C# CodeThe conversion of this code to C# has not been completed yet.
About the author
Related Articles
|
Buttons and LinkLabels
|
|
|
This video demonstrates how to open links in Visual WebGui.
Tags:
Developers, Navigation, 1. Beginner, Navigation, Pre v6.3, v6.3, v6.4 and Later, 2. Intermediate, 3. Advanced
|
|
|
This video demonstrates how to open links in Visual WebGui.
Tags:
Developers, Navigation, 1. Beginner, Navigation, Pre v6.3, v6.3, v6.4 and Later, 2. Intermediate, 3. Advanced
|
|
|
Tags:
Architects, Developers, 1. Beginner, 2. Intermediate, 3. Advanced, Pre v6.3, v6.3, v6.4 and Later
|
|
|
Tags:
Developers, Navigation, 1. Beginner, 2. Intermediate, Pre v6.3, v6.3, v6.4 and Later, 3. Advanced
|
|
|
Tags:
Architects, Developers, Navigation, 1. Beginner, 2. Intermediate, 3. Advanced, Pre v6.3, v6.3, v6.4 and Later
|
|
|
Tags:
Architects, Developers, Navigation, 1. Beginner, 2. Intermediate, 3. Advanced, Pre v6.3, v6.3, v6.4 and Later
|
|
|
|