We have seen in the previous example that all our Forms can be organized in one place with the use of a ListBox and can Open the Form by Double_Clicking an item in the list. As a result, based on the value in the Type field of the control table, a Form opens directly or runs a macro to perform a sequence of operations to prepare the output before opening a Form with the processed data linked to the Form.
|
Field Name |
Type |
Size |
|
Seq |
Number |
Integer |
|
Desc |
Hyperlink |
|
Display Text # External File’s Hyperlink Address # Internal Objects Hyperlink SubAddress # Control Tip Text
You can use the last segment to display a text when you point on the Hyperlink and that segment we will ignore here.
Example-1:
Click OK button. The ‘Edit Employees Data’ text only will be displayed in the Hyperlink field of the table. When you click on the field the Employees Form will open.
Example-2: You can achieve the same result by typing a 3-segment Hyperlink value in the table Desc field directly: Edit Employees’ Data##Form Employees You need to insert two hash (#) symbols between the Text to Display & the Hyperlink SubAddress segments to open an object from within the Database. The Object Type, like Form, Report, Macro and Table must be specified immediately after the 2nd hash symbol followed by the Object name itself after giving a space between them. If you need to open an external file like a Word-File you can type the full path of the File like C:\My Documents\mywordfile.doc immediately after the first hash symbol. In that case the third segment is not required, if entered, it will be ignored. Approaching to Edit a Hyperlink field is a tricky business. When you point the arrow key the field is ready to click and open the link not to facilitate editing. So selecting the field for editing is like catching a snake without getting a snakebite. You can approach the task in two ways.
After selecting the Hyperlink field you can edit the contents by using the Example-2 method explained above.
Enter few more records in the DataFiles2 Table to open the Objects of your choice by entering their Object Type and Name correctly in the Hyperlink SubAddress segment and close the Table.
Now we need to design a small form. Click the Table and select Form from the Insert Menu and select AutoForm: Tabular from the New Form Wizard and click Ok. A tabular form is created and opened in data view. Close the Form and save it with the Name: DataFiles2. Open the form in design view to change its properties to look like a listbox.
- Click View menu and remove the check mark from the Form Header/Footer item. This action will display a warning message, click Yes to remove the Header & Footer Sections of the Form.
- Click on the left top corner of the form – where the left-side and top scales meet, where a black square shows at the intersection, to select the Form rather than its controls.
- Press Alt+Enter keys or Click Properties from the View Menu to display the Form’s property sheet.
- Change the following Form Properties:
- Allow Datasheet View : No
- Allow Additions : No
- Allow Deletions: No
- Data Entry: No
- Scroll Bars: Neither
- Record Selectors: No
- Navigation Buttons: No
- Dividing Lines: No
- Border Style: None
- ControlBox: No
- Min Max Buttons: None
- Close Button: No
- Click on the Detail Section of the form and display the Property Sheet.
- Change the Back Color Property Value to 128 (will change to dark red color)
- Select the Seq Field control and change its width property to 0.2”
- Select Seq & Desc text boxes together, select Align — > Left from the Format Menu, which will bring the controls close together.
- Select Shortest from the Format — > Size Option to change both controls height to the same value.
- Now change the Properties (still both controls selected) of the controls to the following values:
- Special Effect: Flat
- Top: 0
- Back Color: 128
- Fore Color: 16777215
- Resize the form's detail section close to the field sizes using the sizing handles at right and bottom edges of the form. Change both control’s border Color & Font weight:
- Border Color: 128
- Font Weight: Bold
- Select the Seq field alone and change the following properties to:
a. Enabled: No
b. Locked: Yes
The completed form in design view will look like the sample given below:
When opened in Form View, it will look like the sample below:
If you opened it in Form View select Close from the File Menu to close the Form. Now the remaining task is to insert this form into our Main Control Form and change few properties of the control to finish the final design and you are ready to go.
Close all other objects and ensure that the Database window is not minimized, if so restore it. Now, open the Control Form in design View. Select Tile Vertically from the Windows Menu. The Database Window and the Form will arrange side by side. Click on the Forms Tab (if it is not visible), click, drag and drop the DataFiles2 form on the Control Screen where you want the Menu Options to appear. Resize the control to the desired size. Change its child label Caption to: Data Files. Size the child label to the same size of the control and its Special Effect Property to Etched. Save the Form. The completed design on the Control Screen will look like the sample given below:
Click an Item in the Listbox, the Hyperlinks opens the Object (Form, Table, Macro etc.) attached to it.
When more links are added to the DataFiles2 Table they will appear in the list as well.
Click Next for Control Screen Design…
Download Demo Database

















many thanks to you
but can you up to us an examole to see that
or send it to me at : ahmedtharwat19@yahoo.com
Yes, I will forward a sample database to you shortly.
regards,
a.p.r. pillai
Yes, this is possible. Sample Code is given below:
Private Sub cboModel_Click()
Dim myhype, xy As String, xcboModel
Dim db As Database, rst As Recordset
xcboModel = Me![cboModel]
Set db = CurrentDb
Set rst = db.OpenRecordset("tblModel", dbOpenDynaset)
rst.FindFirst "ModelID = " & Chr$(34) & xcboModel & Chr$(34)
If Not rst.NoMatch Then
Set myhype = rst![Hlink]
xy = HyperlinkPart(myhype, acAddress)
Me.cmdPDF.HyperlinkAddress = xy
End If
rst.Close
End Sub
The above Code Runs when you Click on the cboModel ComboBox. Searches the Table for the Model Value selected in the Combo Box and when found retrieves the HyperLink Value into myhype Variable. The HyperLinkPart() Function extracts the .pdf file pathname from the Hyperlink Field. The extracted Path is inserted into the HyperLink Address Property of the cmdPDF Command Button. When you Click the Command Button the PDF File will be opened.
The Hyperlink Field Value in the tblModel must be set in the following format:
Display Text#pdf File PathName##Tooltip Text
Example:
Model Document#C:\My Documents\Lexus.pdf##Click
You may visit the following link to learn how to refresh a ComboBox contents that depends on another ComboBox value selection:
http://www.msaccesstips.com/2008/03/refresh-dependant-combo-box-contents/
Regards,
a.p.r. pillai
Do you know how to connect a hyperlink to a command button that sends you to the hyperlink based on selections picked from combo boxes? Example to clarify:
You want to set up a car database so you make tables with certain information regarding the car, but for the purpose of this, lets just look at the model table. The model table (tblModel) consists of the following fields: ModelID, ModelName, MakeID, Hyperlink. The MakeID would be a link if you had cascading combo boxes in the form. So from a form the user would select a Make (cboMake), which would then break down the Models (cboModel). Based on the selection made by the user for the model the code in the command button would compare the model selected in cboModel to the model in tblModel and return the hyperlink (field 4) so that when the user clicked the command button he would see a pdf for that model.
Thanks in advance
Cory Hall – cory_r_hall@yahoo.com
The code works great, thanks a lot. Was just going to ask about two lines:
Set rst = db.OpenRecordset("tblModel", dbOpenDynaset)
rst.FindFirst "ModelID = " & Chr$(34) & xcboModel & Chr$(34)
I know if you have spaces in your titles such as Model ID instead of ModelID, you usually put the name in brackets such as [Model ID], but it seems for both tblModel and ModelID above it gives debug errors when you bracket them.
You don't need to put [] in the first statement, even if there is space in the Tahle Name.
But, if there is space in the ModelID Field Name then you must insert the square brackets. When you do see that you are not adding extra spaces immediately after or before the brackets.
Regards,
With the following code, I'm trying to get a bit fancier and embed the pdf within the form. I'm using a microsoft web browser object to do this, but when i click the cmdPDF button it just shows a page that can't find the hyperlink. acxWebBrowser is the name of the web browser object.
Private Sub cboModel_Click()
Dim myhype, xy As String, xcboModel
Dim db As Database, rst As Recordset
xcboModel = Me![cboModel]
Set db = CurrentDb
Set rst = db.OpenRecordset("tblModel", dbOpenDynaset)
rst.FindFirst "ModelID = " & Chr$(34) & xcboModel & Chr$(34)
If Not rst.NoMatch Then
Set myhype = rst![Hlink]
xy = HyperlinkPart(myhype, acAddress)
Me.acxWebBrowser.Navigate "xy"
End If
rst.Close
End Sub
Remove the Quotes from Me.acxWebBrowser.Navigate "xy"
Me.acxWebBrowser.Navigate xy
and try again.
Thanks for the idea, can you send me to nurulmarea@gmail.com the example of the database so that I can get the clear idea. Thansk and regards
I will forward a Demo Database to you shortly.
Regards