Skip to content

Commit c7626fe

Browse files
committed
fixing Access docs image links (I think)
1 parent 34e3355 commit c7626fe

28 files changed

+76
-76
lines changed

VBA/Access-VBA/articles/1bcc8552-94e2-b799-6903-392205cb4341.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1+
22
# Image Object (Access)
33

44
This object corresponds to an image control. The image control can add a picture to a form or report. For example, you could include an image control for a logo on an Invoice report.
@@ -12,10 +12,10 @@ This object corresponds to an image control. The image control can add a picture
1212
|:-----|:-----|
1313
|**Control**:|**Tool**:|
1414
|
15-
![Image control](images/t-imgctl_ZA06053959.gif)
15+
![Image control](/images/t-imgctl_ZA06053959.gif)
1616

1717
|
18-
![Image tool](images/imagefrm_ZA06044465.gif)
18+
![Image tool](/images/imagefrm_ZA06044465.gif)
1919

2020
|
2121
You can use the image control or an [Unbound object frame](http://msdn.microsoft.com/library/4a0874dc-ecac-be7c-25e2-ecc79696e2eb%28Office.15%29.aspx)for unbound pictures. The advantage of using the image control is that it's faster to display. The advantage of using the unbound object frame is that you can edit the object directly from the form or report.

VBA/Access-VBA/articles/1c20d809-d7db-e096-4328-ebb4d79e770e.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1+
22
# ToggleButton Object (Access)
33

44
This object corresponds to a toggle button. A toggle button on a form is a stand-alone control used to display a Yes/No value from an underlying record source.
@@ -11,10 +11,10 @@ This object corresponds to a toggle button. A toggle button on a form is a stand
1111
|:-----|:-----|
1212
|**Control**:|**Tool**:|
1313
|
14-
![](images/t-togbtn_ZA06054009.gif)
14+
![](/images/t-togbtn_ZA06054009.gif)
1515

1616
|
17-
![Toggle button](images/togglbtn_ZA06044638.gif)
17+
![Toggle button](/images/togglbtn_ZA06044638.gif)
1818

1919
|
2020

VBA/Access-VBA/articles/1cf508d5-023e-eb38-3991-71e82b2a4e7e.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1+
22
# ComboBox Object (Access)
33

44
This object corresponds to a combo box control. The combo box control combines the features of a text box and a list box. Use a combo box when you want the option of either typing a value or selecting a value from a predefined list.
@@ -11,10 +11,10 @@ This object corresponds to a combo box control. The combo box control combines t
1111
|:-----|:-----|
1212
|**Control**:|**Tool**:|
1313
|
14-
![Combo box control](images/t-combox_ZA06053980.gif)
14+
![Combo box control](/images/t-combox_ZA06053980.gif)
1515

1616
|
17-
![Combo box tool](images/a_combobox_ZA06047114.gif)
17+
![Combo box tool](/images/a_combobox_ZA06047114.gif)
1818

1919
|
2020
In Form view, Microsoft Access doesn't display the list until you click the combo box's arrow.
@@ -31,7 +31,7 @@ The list can be single- or multiple-column, and the columns can appear with or w
3131
- [Tips and Techniques for Using and Validating Combo Boxes](http://www.fmsinc.com/free/NewTips/Access/ComboBox/AccessComboBox.asp)
3232

3333
**Links provided by:**
34-
![Community Member Icon](images/8b9774c4-6c97-470e-b3a2-56d8f786444c.png) The[UtterAccess](http://www.utteraccess.com) community
34+
![Community Member Icon](/images/8b9774c4-6c97-470e-b3a2-56d8f786444c.png) The[UtterAccess](http://www.utteraccess.com) community
3535

3636

3737
- [Combo Box](http://www.utteraccess.com/wiki/index.php/Combo_Box)
@@ -50,7 +50,7 @@ The list can be single- or multiple-column, and the columns can appear with or w
5050
The following example shows how to use multiple **ComboBox** controls to supply criteria for a query.
5151

5252
**Sample code provided by:**
53-
![Community Member Icon](images/8b9774c4-6c97-470e-b3a2-56d8f786444c.png) The[UtterAccess](http://www.utteraccess.com) community
53+
![Community Member Icon](/images/8b9774c4-6c97-470e-b3a2-56d8f786444c.png) The[UtterAccess](http://www.utteraccess.com) community
5454

5555
UtterAccess members can download a database that contains this example from [here](http://www.utteraccess.com/forum/Dynamic-Query-Examples-t1405533.mdl).
5656

@@ -97,7 +97,7 @@ End Sub
9797
The following example shows how to set the **RowSource** property of a combo box when a form is loaded. When the form is displayed, the items stored in the **Departments** field of the **tblDepartment** combo box are displayed in the **cboDept** combo box.
9898

9999
**Sample code provided by:**
100-
![MVP Contributor](images/odc_OfficeTA_33px_MVPContrib.jpg) Bill Jelen,[MrExcel.com](http://www.mrexcel.com/)
100+
![MVP Contributor](/images/odc_OfficeTA_33px_MVPContrib.jpg) Bill Jelen,[MrExcel.com](http://www.mrexcel.com/)
101101

102102

103103

@@ -121,7 +121,7 @@ The following example show how to create a combo box that is bound to one column
121121
The **ColumnWidths** property specifies the width of the two columns. By setting the width of the first column to **0in.**, the first column is not displayed in the combo box.
122122

123123
**Sample code provided by:**
124-
![MVP Contributor](images/odc_OfficeTA_33px_MVPContrib.jpg) Bill Jelen,[MrExcel.com](http://www.mrexcel.com/)
124+
![MVP Contributor](/images/odc_OfficeTA_33px_MVPContrib.jpg) Bill Jelen,[MrExcel.com](http://www.mrexcel.com/)
125125

126126

127127

VBA/Access-VBA/articles/25e7c0b7-03c1-dffe-8f52-4ec59739f6b8.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1+
22
# CommandButton Object (Access)
33

44
This object corresponds to a command button. A command button on a form can start an action or a set of actions. For example, you could create a command button that opens another form. To make a command button do something, you write a macro or event procedure and attach it to the button's **OnClick** property.
@@ -11,10 +11,10 @@ This object corresponds to a command button. A command button on a form can star
1111
|:-----|:-----|
1212
|**Control**:|**Tool**:|
1313
|
14-
![Command button](images/t-cmdbtn_ZA06053979.gif)
14+
![Command button](/images/t-cmdbtn_ZA06053979.gif)
1515

1616
|
17-
![Command button](images/command_ZA06047243.gif)
17+
![Command button](/images/command_ZA06047243.gif)
1818

1919
|
2020
You can display text on a command button by setting its **Caption** property, or you can display a picture by setting its **Picture** property.

VBA/Access-VBA/articles/26c849e7-d433-8d7d-641a-d3171b20d8bd.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1+
22
# Event Properties
33

44
**Last modified:** December 30, 2015
@@ -21,7 +21,7 @@ You can set event properties in the [property sheet](http://msdn.microsoft.com/l
2121

2222

2323
**Tip** You can use builders to help you set an event property. To use them, click the **Build** button
24-
![Builder button](images/buildbut_ZA06047218.gif)to the right of the property box, or right-click the property box and then click **Build** on the shortcut menu. In the **Choose Builder** dialog box, select:
24+
![Builder button](/images/buildbut_ZA06047218.gif)to the right of the property box, or right-click the property box and then click **Build** on the shortcut menu. In the **Choose Builder** dialog box, select:
2525

2626

2727
- The Macro Builder to create and specify a macro for this event property. You can also use the Macro Builder to edit a macro already specified by the property.

VBA/Access-VBA/articles/32736ddf-3551-07f5-1559-d0e139c1697d.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
1+
22
# Application.GetOption Method (Access)
33

44
The **GetOption** method returns the current value of an option in the **Access Options** dialog box, available by clicking the Microsoft Office Button
5-
![File menu button](images/O12FileMenuButton_ZA10077102.gif) and then clicking **Access Options**. **Variant**.
5+
![File menu button](/images/O12FileMenuButton_ZA10077102.gif) and then clicking **Access Options**. **Variant**.
66

77

88
## Syntax

VBA/Access-VBA/articles/36382cfd-740c-61e7-b55c-ab8a8ac5fab0.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# The changes you requested to the table were not successful because they would create duplicate values in the index, primary key, or relationship. (Error 3022)
1+
# The changes you requested to the table were not successful because they would create duplicate values in the index, primary key, or relationship. (Error 3022)
22

33
**Last modified:** December 30, 2015
44

@@ -53,7 +53,7 @@ When you remove the primary key, the field or fields that previously served as p
5353
- If the tables that participate in the table relationship are open, close them. You cannot delete a table relationship between open tables.
5454

5555
- On the **Database Tools** tab, in the **Show/Hide** group, click **Relationships**.
56-
![Show Hide Database Tool](images/Ac_DatabaseTool_Show_Hide_ZA10153748.gif)
56+
![Show Hide Database Tool](/images/Ac_DatabaseTool_Show_Hide_ZA10153748.gif)
5757

5858

5959

@@ -62,7 +62,7 @@ When you remove the primary key, the field or fields that previously served as p
6262
- Click the table relationship line for the table relationship that you want to delete (the line becomes bold when it is selected), and then press the DELETE key.
6363

6464
- On the **Design** tab, in the **Relationships** group, click **Close**.
65-
![Design tab](images/DesignTabRelationshipsGroup_ZA10178790.gif)
65+
![Design tab](/images/DesignTabRelationshipsGroup_ZA10178790.gif)
6666

6767

6868

@@ -76,7 +76,7 @@ When you remove the primary key, the field or fields that previously served as p
7676
- If the primary key consists of multiple fields, click the row selector for any field in the primary key.
7777

7878
6. On the **Design** tab, in the **Tools** group, click **Primary Key**.
79-
![Design tab](images/DesignTabToolsGroup_ZA10178781.gif)The key indicator is removed from the field or fields that you previously specified as the primary key.
79+
![Design tab](/images/DesignTabToolsGroup_ZA10178781.gif)The key indicator is removed from the field or fields that you previously specified as the primary key.
8080

8181
**ACCESS SUPPORT RESOURCES**<br>
8282
[Access for developers forum on MSDN](https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev)<br>

VBA/Access-VBA/articles/3ab5276c-d52a-72a9-244c-ec92ead48811.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1+
22
# Application Members (Access)
33

44

@@ -60,7 +60,7 @@ The **Application** object refers to the active Microsoft Access application.
6060
|[FollowHyperlink](b5142ca6-8d67-c42b-81a4-5417265a50b0.md)|The **FollowHyperlink** method opens the document or Web page specified by a hyperlink address.|
6161
|[GetHiddenAttribute](aee0e022-08d5-10f8-bfd0-588b5310fb43.md)|The **GetHiddenAttribute** method returns the value of hidden attribute of a Microsoft Access object in the object's **Properties** dialog box, available by selecting the object in the Database window and clicking **Properties** on the **View** menu.|
6262
|[GetOption](32736ddf-3551-07f5-1559-d0e139c1697d.md)|The **GetOption** method returns the current value of an option in the **Access Options** dialog box, available by clicking the Microsoft Office Button
63-
![File menu button](images/O12FileMenuButton_ZA10077102.gif) and then clicking **Access Options**. **Variant**.|
63+
![File menu button](/images/O12FileMenuButton_ZA10077102.gif) and then clicking **Access Options**. **Variant**.|
6464
|[GUIDFromString](943da2f6-a578-f05d-5778-990b6892fc64.md)|The **GUIDFromString** function converts a string to a GUID, which is an array of type **Byte**.|
6565
|[HtmlEncode](294a99f1-9b26-c9ee-0560-8bd54287ebb7.md)|Converts a string to an HTML-encoded string.|
6666
|[hWndAccessApp](7a4f162a-e2de-728b-09e0-f9272ad52053.md)|You can use the **hWndAccessApp** method to determine the handle assigned by Microsoft Windows to the main Microsoft Access window.|

VBA/Access-VBA/articles/3d83d916-85d7-b2eb-c9f6-f9a6ff0c9ec7.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ Labels have certain characteristics:
2020
|:-----|:-----|
2121
|**Control**:|**Tool**:|
2222
|
23-
![Label control](images/t-label_ZA06053967.gif)
23+
![Label control](/images/t-label_ZA06053967.gif)
2424

2525
|
26-
![Label tool](images/label_ZA06044394.gif)
26+
![Label tool](/images/label_ZA06044394.gif)
2727

2828
|
2929
A label can be attached to another control. When you create a text box, for example, it has an attached label that displays a caption for that text box. This label appears as a column heading in the Datasheet view of a form.

VBA/Access-VBA/articles/5628e6b6-f253-a435-5bce-58b6727382cc.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1+
22
# AllowSpecialKeys Property
33

44
**Last modified:** December 30, 2015
@@ -19,7 +19,7 @@ The **AllowSpecialKeys** property uses the following settings.
1919
|**True** (-1)|Enable the special key sequences.|
2020
|**False** (0)|Disable the special key sequences.|
2121
The easiest way to set this property is by using the **Use Access Special Keys** option in the **Current Database** section of the **Access Options** dialog box. To view the **Access Options** dialog box, click the **Microsoft Office button**
22-
![File menu button](images/O12FileMenuButton_ZA10077102.gif) and then click **Access Options**. In a Microsoft Access database , you can also set this property by using a macro or Visual Basic .
22+
![File menu button](/images/O12FileMenuButton_ZA10077102.gif) and then click **Access Options**. In a Microsoft Access database , you can also set this property by using a macro or Visual Basic .
2323

2424
To set the **AllowSpecialKeys** property by using a macro or Visual Basic, you must first either set the property in the **Access Options** dialog box once or create the property in the following ways:
2525

0 commit comments

Comments
 (0)