diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a0090b4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +# macOS +.DS_Store diff --git a/docs/Controls/ActiveX/index.md b/docs/Controls/ActiveX/index.md new file mode 100644 index 0000000..d2cb1bc --- /dev/null +++ b/docs/Controls/ActiveX/index.md @@ -0,0 +1,11 @@ +--- +title: ActiveX +# nav_order: 1 +permalink: /Controls/ActiveX/ +--- + +# ActiveX + +> [!WARNING] +> +> Pardon, we have not fully documented all the controls yet. diff --git a/docs/Controls/CheckBox.md b/docs/Controls/CheckBox.md new file mode 100644 index 0000000..245701a --- /dev/null +++ b/docs/Controls/CheckBox.md @@ -0,0 +1,25 @@ +--- +title: CheckBox +parent: Controls +nav_order: 8 +permalink: /Controls/CheckBox +--- + +# CheckBox + +![CheckBox](Images/CheckBox.png "CheckBox") + +This object corresponds to a check box on a form or report. This check box is a stand-alone control that displays a Yes/No value from an underlying record source. + +| VB6 | VBA | .NET | +| --- | ---------- | ---------- | +| | [vba][vba] | [net][net] | + + +[vba]: https://learn.microsoft.com/en-us/office/vba/language/reference/user-interface-help/label-control "CheckBox object (Access)" +[net]: https://learn.microsoft.com/en-us/dotnet/api/system.windows.controls.checkbox?view=windowsdesktop-10.0 "CheckBox Class" + + + + + diff --git a/docs/Controls/CheckMark.md b/docs/Controls/CheckMark.md new file mode 100644 index 0000000..6d84eab --- /dev/null +++ b/docs/Controls/CheckMark.md @@ -0,0 +1,29 @@ +--- +title: CheckMark +parent: Controls +nav_order: 20 +permalink: /Controls/CheckMark +--- + +# CheckMark + +![CheckMark](Images/CheckMark.png "CheckMark") + +_Description_ + +## CheckMark Control + +From [Features | Overview - New Controls](/Features/Overview#new-controls) + +![image](../Features/Images/5fc60b7b-4f54-445c-8504-451019b7ec55.png) + +Primarily intended for reports but available in Forms and UserControls as well, the CheckMark control provides a scalable check component where this is fixed to a single size in a normal CheckBox control. + +| VB6 | VBA | .NET | +| --- | ---------- | ---------- | +| | [vba][vba] | [net][net] | + + + + + diff --git a/docs/Controls/ComboBox.md b/docs/Controls/ComboBox.md new file mode 100644 index 0000000..b29e016 --- /dev/null +++ b/docs/Controls/ComboBox.md @@ -0,0 +1,25 @@ +--- +title: ComboBox +parent: Controls +nav_order: 9 +permalink: /Controls/ComboBox +--- + +# ComboBox + +![ComboBox](Images/ComboBox.png "ComboBox") + +Represents a selection control with a drop-down list that can be shown or hidden by clicking the arrow on the control. + +| VB6 | VBA | .NET | +| --- | ---------- | ---------- | +| | [vba][vba] | [net][net] | + + +[vba]: https://learn.microsoft.com/en-us/office/vba/api/access.combobox "ComboBox object (Access)" +[net]: https://learn.microsoft.com/en-us/dotnet/api/system.windows.controls.combobox?view=windowsdesktop-10.0 "ComboBox Class" + + + + + diff --git a/docs/Controls/CommandButton.md b/docs/Controls/CommandButton.md new file mode 100644 index 0000000..ef8212a --- /dev/null +++ b/docs/Controls/CommandButton.md @@ -0,0 +1,24 @@ +--- +title: CommandButton +parent: Controls +nav_order: 7 +permalink: /Controls/CommandButton +--- + +# CommandButton + +![CommandButton](Images/CommandButton.png "CommandButton") + +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 an event procedure and attach it to the button's `Click` property. + +| VB6 | VBA | .NET | +| --- | ---------- | ---------- | +| | [vba][vba] | [net][net] | + + +[vba]: https://learn.microsoft.com/en-us/office/vba/api/access.commandbutton "CommandButton object (Access)" +[net]: https://learn.microsoft.com/en-us/dotnet/api/system.windows.controls.button?view=windowsdesktop-10.0 "Button Class" + + + + diff --git a/docs/Controls/Common/DTPicker.md b/docs/Controls/Common/DTPicker.md new file mode 100644 index 0000000..ae04df2 --- /dev/null +++ b/docs/Controls/Common/DTPicker.md @@ -0,0 +1,21 @@ +--- +title: DTPicker +parent: Controls +nav_order: 1 +permalink: /Controls/Common/DTPicker +--- + +# DTPicker + +![DTPicker](Images/DTPicker.png "DTPicker") + +_Description_ + +| VB6 | VBA | .NET | +| --- | ---------- | ---------- | +| | [vba][vba] | [net][net] | + + + + + diff --git a/docs/Controls/Common/ImageList.md b/docs/Controls/Common/ImageList.md new file mode 100644 index 0000000..190687f --- /dev/null +++ b/docs/Controls/Common/ImageList.md @@ -0,0 +1,21 @@ +--- +title: ImageList +parent: Controls +nav_order: 2 +permalink: /Controls/Common/ImageList +--- + +# ImageList + +![ImageList](Images/ImageList.png "ImageList") + +_Description_ + +| VB6 | VBA | .NET | +| --- | ---------- | ---------- | +| | [vba][vba] | [net][net] | + + + + + diff --git a/docs/Controls/Common/Images/DTPicker.png b/docs/Controls/Common/Images/DTPicker.png new file mode 100644 index 0000000..c290aa6 Binary files /dev/null and b/docs/Controls/Common/Images/DTPicker.png differ diff --git a/docs/Controls/Common/Images/ImageList.png b/docs/Controls/Common/Images/ImageList.png new file mode 100644 index 0000000..f9eb89e Binary files /dev/null and b/docs/Controls/Common/Images/ImageList.png differ diff --git a/docs/Controls/Common/Images/ListView.png b/docs/Controls/Common/Images/ListView.png new file mode 100644 index 0000000..ec8ef9f Binary files /dev/null and b/docs/Controls/Common/Images/ListView.png differ diff --git a/docs/Controls/Common/Images/MonthView.png b/docs/Controls/Common/Images/MonthView.png new file mode 100644 index 0000000..c8e172a Binary files /dev/null and b/docs/Controls/Common/Images/MonthView.png differ diff --git a/docs/Controls/Common/Images/ProgressBar.png b/docs/Controls/Common/Images/ProgressBar.png new file mode 100644 index 0000000..269c788 Binary files /dev/null and b/docs/Controls/Common/Images/ProgressBar.png differ diff --git a/docs/Controls/Common/Images/Slider.png b/docs/Controls/Common/Images/Slider.png new file mode 100644 index 0000000..ec62ec8 Binary files /dev/null and b/docs/Controls/Common/Images/Slider.png differ diff --git a/docs/Controls/Common/Images/TreeView.png b/docs/Controls/Common/Images/TreeView.png new file mode 100644 index 0000000..9b9258e Binary files /dev/null and b/docs/Controls/Common/Images/TreeView.png differ diff --git a/docs/Controls/Common/Images/UpDown.png b/docs/Controls/Common/Images/UpDown.png new file mode 100644 index 0000000..cb7ba0c Binary files /dev/null and b/docs/Controls/Common/Images/UpDown.png differ diff --git a/docs/Controls/Common/ListView.md b/docs/Controls/Common/ListView.md new file mode 100644 index 0000000..2c7ebb8 --- /dev/null +++ b/docs/Controls/Common/ListView.md @@ -0,0 +1,21 @@ +--- +title: ListView +parent: Controls +nav_order: 3 +permalink: /Controls/Common/ListView +--- + +# ListView + +![ListView](Images/ListView.png "ListView") + +_Description_ + +| VB6 | VBA | .NET | +| --- | ---------- | ---------- | +| | [vba][vba] | [net][net] | + + + + + diff --git a/docs/Controls/Common/MonthView.md b/docs/Controls/Common/MonthView.md new file mode 100644 index 0000000..8f55dc3 --- /dev/null +++ b/docs/Controls/Common/MonthView.md @@ -0,0 +1,21 @@ +--- +title: MonthView +parent: Controls +nav_order: 4 +permalink: /Controls/Common/MonthView +--- + +# MonthView + +![MonthView](Images/MonthView.png "MonthView") + +_Description_ + +| VB6 | VBA | .NET | +| --- | ---------- | ---------- | +| | [vba][vba] | [net][net] | + + + + + diff --git a/docs/Controls/Common/ProgressBar.md b/docs/Controls/Common/ProgressBar.md new file mode 100644 index 0000000..e9d1a9c --- /dev/null +++ b/docs/Controls/Common/ProgressBar.md @@ -0,0 +1,21 @@ +--- +title: ProgressBar +parent: Controls +nav_order: 5 +permalink: /Controls/Common/ProgressBar +--- + +# ProgressBar + +![ProgressBar](Images/ProgressBar.png "ProgressBar") + +_Description_ + +| VB6 | VBA | .NET | +| --- | ---------- | ---------- | +| | [vba][vba] | [net][net] | + + + + + diff --git a/docs/Controls/Common/Slider.md b/docs/Controls/Common/Slider.md new file mode 100644 index 0000000..54fc8fb --- /dev/null +++ b/docs/Controls/Common/Slider.md @@ -0,0 +1,21 @@ +--- +title: Slider +parent: Controls +nav_order: 6 +permalink: /Controls/Common/Slider +--- + +# Slider + +![Slider](Images/Slider.png "Slider") + +_Description_ + +| VB6 | VBA | .NET | +| --- | ---------- | ---------- | +| | [vba][vba] | [net][net] | + + + + + diff --git a/docs/Controls/Common/TreeView.md b/docs/Controls/Common/TreeView.md new file mode 100644 index 0000000..8edefca --- /dev/null +++ b/docs/Controls/Common/TreeView.md @@ -0,0 +1,21 @@ +--- +title: TreeView +parent: Controls +nav_order: 7 +permalink: /Controls/Common/TreeView +--- + +# TreeView + +![TreeView](Images/TreeView.png "TreeView") + +_Description_ + +| VB6 | VBA | .NET | +| --- | ---------- | ---------- | +| | [vba][vba] | [net][net] | + + + + + diff --git a/docs/Controls/Common/UpDown.md b/docs/Controls/Common/UpDown.md new file mode 100644 index 0000000..b32819a --- /dev/null +++ b/docs/Controls/Common/UpDown.md @@ -0,0 +1,21 @@ +--- +title: UpDown +parent: Controls +nav_order: 8 +permalink: /Controls/Common/UpDown +--- + +# UpDown + +![UpDown](Images/UpDown.png "UpDown") + +_Description_ + +| VB6 | VBA | .NET | +| --- | ---------- | ---------- | +| | [vba][vba] | [net][net] | + + + + + diff --git a/docs/Controls/Common/index.md b/docs/Controls/Common/index.md new file mode 100644 index 0000000..8cab99b --- /dev/null +++ b/docs/Controls/Common/index.md @@ -0,0 +1,11 @@ +--- +title: Common +# nav_order: 1 +permalink: /Controls/Common/ +--- + +# Common + +> [!WARNING] +> +> Pardon, we have not fully documented all the controls yet. diff --git a/docs/Controls/Data.md b/docs/Controls/Data.md new file mode 100644 index 0000000..41f5e36 --- /dev/null +++ b/docs/Controls/Data.md @@ -0,0 +1,21 @@ +--- +title: Data +parent: Controls +nav_order: 22 +permalink: /Controls/Data +--- + +# Data + +![Data](Images/Data.png "Data") + +_Description_ + + + + + + + diff --git a/docs/Controls/DirListBox.md b/docs/Controls/DirListBox.md new file mode 100644 index 0000000..994e461 --- /dev/null +++ b/docs/Controls/DirListBox.md @@ -0,0 +1,21 @@ +--- +title: DirListBox +parent: Controls +nav_order: 15 +permalink: /Controls/DirListBox +--- + +# DirListBox + +![DirListBox](Images/DirListBox.png "DirListBox") + +_Description_ + + + + + + + diff --git a/docs/Controls/DriveListBox.md b/docs/Controls/DriveListBox.md new file mode 100644 index 0000000..e632b11 --- /dev/null +++ b/docs/Controls/DriveListBox.md @@ -0,0 +1,21 @@ +--- +title: DriveListBox +parent: Controls +nav_order: 14 +permalink: /Controls/DriveListBox +--- + +# DriveListBox + +![DriveListBox](Images/DriveListBox.png "DriveListBox") + +_Description_ + + + + + + + diff --git a/docs/Controls/FileListBox.md b/docs/Controls/FileListBox.md new file mode 100644 index 0000000..85cbb03 --- /dev/null +++ b/docs/Controls/FileListBox.md @@ -0,0 +1,21 @@ +--- +title: FileListBox +parent: Controls +nav_order: 16 +permalink: /Controls/FileListBox +--- + +# FileListBox + +![FileListBox](Images/FileListBox.png "FileListBox") + +_Description_ + + + + + + + diff --git a/docs/Controls/Frame.md b/docs/Controls/Frame.md new file mode 100644 index 0000000..b2deded --- /dev/null +++ b/docs/Controls/Frame.md @@ -0,0 +1,21 @@ +--- +title: Frame +parent: Controls +nav_order: 6 +permalink: /Controls/Frame +--- + +# Frame + +![Frame](Images/Frame.png "Frame") + +_Description_ + + + + + + + diff --git a/docs/Controls/HScrollBar.md b/docs/Controls/HScrollBar.md new file mode 100644 index 0000000..8a400da --- /dev/null +++ b/docs/Controls/HScrollBar.md @@ -0,0 +1,21 @@ +--- +title: HScrollBar +parent: Controls +nav_order: 11 +permalink: /Controls/HScrollBar +--- + +# HScrollBar + +![HScrollBar](Images/HScrollBar.png "HScrollBar") + +_Description_ + + + + + + + diff --git a/docs/Controls/Image.md b/docs/Controls/Image.md new file mode 100644 index 0000000..f4ed54e --- /dev/null +++ b/docs/Controls/Image.md @@ -0,0 +1,21 @@ +--- +title: Image +parent: Controls +nav_order: 19 +permalink: /Controls/Image +--- + +# Image + +![Image](Images/Image.png "Image") + +An abstract base class that provides functionality for the Bitmap and Metafile descended classes. + + + + + +[net]: https://learn.microsoft.com/en-us/dotnet/api/system.drawing.image?view=windowsdesktop-10.0 "Image Class" + diff --git a/docs/Controls/Images/CheckBox.png b/docs/Controls/Images/CheckBox.png new file mode 100644 index 0000000..656f4fe Binary files /dev/null and b/docs/Controls/Images/CheckBox.png differ diff --git a/docs/Controls/Images/CheckMark.png b/docs/Controls/Images/CheckMark.png new file mode 100644 index 0000000..656f4fe Binary files /dev/null and b/docs/Controls/Images/CheckMark.png differ diff --git a/docs/Controls/Images/ComboBox.png b/docs/Controls/Images/ComboBox.png new file mode 100644 index 0000000..af17a68 Binary files /dev/null and b/docs/Controls/Images/ComboBox.png differ diff --git a/docs/Controls/Images/CommandButton.png b/docs/Controls/Images/CommandButton.png new file mode 100644 index 0000000..c831ecc Binary files /dev/null and b/docs/Controls/Images/CommandButton.png differ diff --git a/docs/Controls/Images/Data.png b/docs/Controls/Images/Data.png new file mode 100644 index 0000000..18f524c Binary files /dev/null and b/docs/Controls/Images/Data.png differ diff --git a/docs/Controls/Images/DirListBox.png b/docs/Controls/Images/DirListBox.png new file mode 100644 index 0000000..9467ed7 Binary files /dev/null and b/docs/Controls/Images/DirListBox.png differ diff --git a/docs/Controls/Images/DriveListBox.png b/docs/Controls/Images/DriveListBox.png new file mode 100644 index 0000000..83342d8 Binary files /dev/null and b/docs/Controls/Images/DriveListBox.png differ diff --git a/docs/Controls/Images/FileListBox.png b/docs/Controls/Images/FileListBox.png new file mode 100644 index 0000000..025bc96 Binary files /dev/null and b/docs/Controls/Images/FileListBox.png differ diff --git a/docs/Controls/Images/Frame.png b/docs/Controls/Images/Frame.png new file mode 100644 index 0000000..2e59841 Binary files /dev/null and b/docs/Controls/Images/Frame.png differ diff --git a/docs/Controls/Images/HScrollBar.png b/docs/Controls/Images/HScrollBar.png new file mode 100644 index 0000000..1fca1e8 Binary files /dev/null and b/docs/Controls/Images/HScrollBar.png differ diff --git a/docs/Controls/Images/Image.png b/docs/Controls/Images/Image.png new file mode 100644 index 0000000..eab923f Binary files /dev/null and b/docs/Controls/Images/Image.png differ diff --git a/docs/Controls/Images/Line.png b/docs/Controls/Images/Line.png new file mode 100644 index 0000000..8bd8fee Binary files /dev/null and b/docs/Controls/Images/Line.png differ diff --git a/docs/Controls/Images/ListBox.png b/docs/Controls/Images/ListBox.png new file mode 100644 index 0000000..8e6a9a6 Binary files /dev/null and b/docs/Controls/Images/ListBox.png differ diff --git a/docs/Controls/Images/MultiFrame.png b/docs/Controls/Images/MultiFrame.png new file mode 100644 index 0000000..ae7915a Binary files /dev/null and b/docs/Controls/Images/MultiFrame.png differ diff --git a/docs/Controls/Images/OLE.png b/docs/Controls/Images/OLE.png new file mode 100644 index 0000000..be25f4f Binary files /dev/null and b/docs/Controls/Images/OLE.png differ diff --git a/docs/Controls/Images/OptionButton.png b/docs/Controls/Images/OptionButton.png new file mode 100644 index 0000000..f54c1e1 Binary files /dev/null and b/docs/Controls/Images/OptionButton.png differ diff --git a/docs/Controls/Images/PictureBox.png b/docs/Controls/Images/PictureBox.png new file mode 100644 index 0000000..7a9c009 Binary files /dev/null and b/docs/Controls/Images/PictureBox.png differ diff --git a/docs/Controls/Images/Pointer.png b/docs/Controls/Images/Pointer.png new file mode 100644 index 0000000..7065fa1 Binary files /dev/null and b/docs/Controls/Images/Pointer.png differ diff --git a/docs/Controls/Images/QRCode.png b/docs/Controls/Images/QRCode.png new file mode 100644 index 0000000..1ef531c Binary files /dev/null and b/docs/Controls/Images/QRCode.png differ diff --git a/docs/Controls/Images/Shape.png b/docs/Controls/Images/Shape.png new file mode 100644 index 0000000..dce5c83 Binary files /dev/null and b/docs/Controls/Images/Shape.png differ diff --git a/docs/Controls/Images/TextBox.png b/docs/Controls/Images/TextBox.png new file mode 100644 index 0000000..baf2783 Binary files /dev/null and b/docs/Controls/Images/TextBox.png differ diff --git a/docs/Controls/Images/Timer.png b/docs/Controls/Images/Timer.png new file mode 100644 index 0000000..6562067 Binary files /dev/null and b/docs/Controls/Images/Timer.png differ diff --git a/docs/Controls/Images/VScrollBar.png b/docs/Controls/Images/VScrollBar.png new file mode 100644 index 0000000..9ad8423 Binary files /dev/null and b/docs/Controls/Images/VScrollBar.png differ diff --git a/docs/Controls/Images/label.png b/docs/Controls/Images/label.png new file mode 100644 index 0000000..418eaa6 Binary files /dev/null and b/docs/Controls/Images/label.png differ diff --git a/docs/Controls/Images/toolbox.png b/docs/Controls/Images/toolbox.png new file mode 100644 index 0000000..677e688 Binary files /dev/null and b/docs/Controls/Images/toolbox.png differ diff --git a/docs/Controls/Introduction.md b/docs/Controls/Introduction.md new file mode 100644 index 0000000..328f1f7 --- /dev/null +++ b/docs/Controls/Introduction.md @@ -0,0 +1,51 @@ +--- +title: Introduction +parent: Controls +nav_order: 1 +permalink: /Controls/Introduction +--- + +# Introduction + +> [!WARNING] +> +> Pardon, we have not fully documented all the controls yet. + +twinBASIC supports a number of controls out of the box. See associated pages for more info. + +![Toolbox](Images/toolbox.png "Toolbox") + +- Pointer +- PictureBox +- Label +- TextBox +- Frame +- CommandButton +- CheckBox +- ComboBox +- ListBox +- HScrollBar +- VScrollBar +- Timer +- DriveListBox +- DirListBox +- FileListBox +- Shape +- Line +- Image +- CheckMark +- QRCode +- Data +- OLE +- MultiFrame + +## Common Controls + +- DTPicker +- ImageList +- ListView +- MonthView +- ProgressBar +- Slider +- TreeView +- UpDown diff --git a/docs/Controls/Label.md b/docs/Controls/Label.md new file mode 100644 index 0000000..f870519 --- /dev/null +++ b/docs/Controls/Label.md @@ -0,0 +1,74 @@ +--- +title: Label +parent: Controls +nav_order: 4 +permalink: /Controls/Label +--- + +# Label + +![Label](Images/label.png "Label") + +Displays descriptive text. + +Represents the text label for a control and provides support for access keys. + +## Definition + +## Examples + +## Remarks + +--- + +> [!NOTE] +> +> Could these be autogenerated from source? + +## Constructors + +| Name | Description | +| ---- | ----------- | +| | | + +## Properties + +| Name | Description | +| ---- | ----------- | +| | | + +## Methods + +| Name | Description | +| ---- | ----------- | +| | | + +## Events + +| Name | Description | +| ---- | ----------- | +| | | + +## Applies to + +| Product | Versions | +| ------- | -------- | +| | | + +## See also + +- N/A + +## Comparison + +| VB6 | VBA | .NET | twinBASIC | +| --- | ---------- | ---------- | --------- | +| | [vba][vba] | [net][net] | | + + +[vba]: https://learn.microsoft.com/en-us/office/vba/language/reference/user-interface-help/label-control "Label control" +[net]: https://learn.microsoft.com/en-us/dotnet/api/system.windows.forms.label?view=windowsdesktop-10.0 "Label Class" +[net]: https://learn.microsoft.com/en-us/dotnet/api/system.windows.controls.label?view=windowsdesktop-10.0 "Label Class" + + +{% include VBA-Attribution.md %} diff --git a/docs/Controls/Line.md b/docs/Controls/Line.md new file mode 100644 index 0000000..654da5a --- /dev/null +++ b/docs/Controls/Line.md @@ -0,0 +1,21 @@ +--- +title: Line +parent: Controls +nav_order: 18 +permalink: /Controls/Line +--- + +# Line + +![Line](Images/Line.png "Line") + +_Description_ + + + + + + + diff --git a/docs/Controls/ListBox.md b/docs/Controls/ListBox.md new file mode 100644 index 0000000..d9ba897 --- /dev/null +++ b/docs/Controls/ListBox.md @@ -0,0 +1,21 @@ +--- +title: ListBox +parent: Controls +nav_order: 10 +permalink: /Controls/ListBox +--- + +# ListBox + +![ListBox](Images/ListBox.png "ListBox") + +_Description_ + + + + + + + diff --git a/docs/Controls/MultiFrame.md b/docs/Controls/MultiFrame.md new file mode 100644 index 0000000..e706d77 --- /dev/null +++ b/docs/Controls/MultiFrame.md @@ -0,0 +1,21 @@ +--- +title: MultiFrame +parent: Controls +nav_order: 24 +permalink: /Controls/MultiFrame +--- + +# MultiFrame + +![MultiFrame](Images/MultiFrame.png "MultiFrame") + +_Description_ + + + + + + + diff --git a/docs/Controls/OLE.md b/docs/Controls/OLE.md new file mode 100644 index 0000000..0c10256 --- /dev/null +++ b/docs/Controls/OLE.md @@ -0,0 +1,21 @@ +--- +title: OLE +parent: Controls +nav_order: 23 +permalink: /Controls/OLE +--- + +# OLE + +![OLE](Images/OLE.png "OLE") + +_Description_ + + + + + + + diff --git a/docs/Controls/PictureBox.md b/docs/Controls/PictureBox.md new file mode 100644 index 0000000..201dc02 --- /dev/null +++ b/docs/Controls/PictureBox.md @@ -0,0 +1,21 @@ +--- +title: PictureBox +parent: Controls +nav_order: 3 +permalink: /Controls/PictureBox +--- + +# PictureBox + +![PictureBox](Images/PictureBox.png "PictureBox") + +_Description_ + + + + + + + diff --git a/docs/Controls/Pointer.md b/docs/Controls/Pointer.md new file mode 100644 index 0000000..a0fb523 --- /dev/null +++ b/docs/Controls/Pointer.md @@ -0,0 +1,21 @@ +--- +title: Pointer +parent: Controls +nav_order: 2 +permalink: /Controls/Pointer +--- + +# Pointer + +![Pointer](Images/Pointer.png "Pointer") + +Not a control to use on your Form(s) but a device to interact with them. + + + + + + + diff --git a/docs/Controls/QRCode.md b/docs/Controls/QRCode.md new file mode 100644 index 0000000..2f54a0d --- /dev/null +++ b/docs/Controls/QRCode.md @@ -0,0 +1,29 @@ +--- +title: QRCode +parent: Controls +nav_order: 21 +permalink: /Controls/QRCode +--- + +# QRCode + +![QRCode](Images/QRCode.png "QRCode") + +_Description_ + + + + + + + + +## QR Code Control + +From [Features | Overview - New Controls](/Features/Overview#new-controls) + +![image](../Features/Images/54ed49d8-b434-45e3-9e63-a1fe75cdf814.png) + +Easily display custom QR codes with a native control. diff --git a/docs/Controls/Shape.md b/docs/Controls/Shape.md new file mode 100644 index 0000000..ac62d3e --- /dev/null +++ b/docs/Controls/Shape.md @@ -0,0 +1,21 @@ +--- +title: Shape +parent: Controls +nav_order: 17 +permalink: /Controls/Shape +--- + +# Shape + +![Shape](Images/Shape.png "Shape") + +_Description_ + + + + + + + diff --git a/docs/Controls/TextBox.md b/docs/Controls/TextBox.md new file mode 100644 index 0000000..d2e924f --- /dev/null +++ b/docs/Controls/TextBox.md @@ -0,0 +1,21 @@ +--- +title: TextBox +parent: Controls +nav_order: 5 +permalink: /Controls/TextBox +--- + +# TextBox + +![TextBox](Images/TextBox.png "TextBox") + +_Description_ + + + + + + + diff --git a/docs/Controls/Timer.md b/docs/Controls/Timer.md new file mode 100644 index 0000000..65ab4b7 --- /dev/null +++ b/docs/Controls/Timer.md @@ -0,0 +1,21 @@ +--- +title: Timer +parent: Controls +nav_order: 13 +permalink: /Controls/Timer +--- + +# Timer + +![Timer](Images/Timer.png "Timer") + +_Description_ + + + + + + + diff --git a/docs/Controls/VScrollBar.md b/docs/Controls/VScrollBar.md new file mode 100644 index 0000000..63d52e2 --- /dev/null +++ b/docs/Controls/VScrollBar.md @@ -0,0 +1,21 @@ +--- +title: VScrollBar +parent: Controls +nav_order: 12 +permalink: /Controls/VScrollBar +--- + +# VScrollBar + +![VScrollBar](Images/VScrollBar.png "VScrollBar") + +_Description_ + + + + + + + diff --git a/docs/Controls/index.md b/docs/Controls/index.md new file mode 100644 index 0000000..cdb052f --- /dev/null +++ b/docs/Controls/index.md @@ -0,0 +1,13 @@ +--- +title: Controls +# nav_order: 11 +permalink: /Controls +--- + +# Controls + +> [!WARNING] +> +> Pardon, we have not fully documented all the controls yet. + +See [Features | Overview - New Controls](/Features/Overview#new-controls) for existing info. diff --git a/docs/IDE/index.md b/docs/IDE/index.md index ca70698..fa9c3f6 100644 --- a/docs/IDE/index.md +++ b/docs/IDE/index.md @@ -1,5 +1,6 @@ --- title: IDE +# nav_order: 10 permalink: /tB/IDE ---