├── .gitattributes ├── .gitignore ├── binaries ├── DataGrid for LabVIEW.vipb ├── EULA.txt ├── Tool Icon-small.png ├── Tool Icon.PNG └── Tool Icon.pdn ├── documentation ├── Project Overview - UserGroup Presentation.pptx └── img │ ├── AppSample.jpg │ ├── BlockDiagram.jpg │ ├── Data Injection.png │ ├── Frontpanel.png │ ├── Insert .NET Control.jpg │ ├── Select DataGridView.jpg │ ├── StringData.png │ ├── defineColumns.PNG │ └── grid.png ├── images ├── 16_accept.png ├── 16_add.png ├── 16_archive.png ├── 16_attachment.png ├── 16_back.png ├── 16_blank.png ├── 16_busy.png ├── 16_calculator.png ├── 16_calendar.png ├── 16_chart.png ├── 16_clock.png ├── 16_comment.png ├── 16_doc.png ├── 16_edit.png ├── 16_facebook.png ├── 16_feed.png ├── 16_folder.png ├── 16_heart.png ├── 16_info.png ├── 16_online.png ├── 16_pencil.png ├── 16_priority.png ├── 16_released.png ├── 16_settings.png ├── 16_site.png ├── 16_stop.png ├── 16_tip.png ├── 32_clipboard.png ├── 32_datafind.png ├── 32_globe_compass.png ├── 32_mail.png └── 32_status.png ├── license.md ├── readme.md ├── source ├── CellStyle │ ├── CellStyle.lvclass │ ├── CellStyleCluster.ctl │ ├── Define CellStyle.vi │ └── Properties │ │ └── Read cellStyle.vi ├── Color │ ├── Choose Color.vi │ ├── Color.lvclass │ ├── NamedColors.ctl │ └── Properties │ │ ├── RGB Color.vi │ │ ├── Read Color.vi │ │ └── Set Alpha.vi ├── Controls │ ├── DataGrid.ctl │ ├── EventsList.ctl │ ├── EventsToRegisterCluster.ctl │ └── userEvents.ctl ├── DataGrid for LabVIEW.bin3 ├── DataGrid.aliases ├── DataGrid.lvlib ├── DataGrid.lvlps ├── DataGrid.lvproj ├── DataGridView │ ├── Add Rows.vi │ ├── Apply Column Setup After Binding.vi │ ├── Column Visibility.vi │ ├── DataGridView.lvclass │ ├── Define DataGrid Columns.vi │ ├── Define DataTable Columns.vi │ ├── Determine Image Path.vi │ ├── GenerateDataSet.vi │ ├── Get Active Cell Index.vi │ ├── Get DataArray.vi │ ├── Get Selected Cell Location.vi │ ├── GridView Property Setup.vi │ ├── Initialize.vi │ ├── Override Null objects.vi │ ├── Properties │ │ ├── Read AllowUserToAddRows.vi │ │ ├── Read AllowUserToDeleteRows.vi │ │ ├── Read AllowUserToOrderColumns.vi │ │ ├── Read AllowUserToResizeColumns.vi │ │ ├── Read AllowUserToResizeRows.vi │ │ ├── Read AutoSizeColumnsMode.vi │ │ ├── Read AutoSizeRowsMode.vi │ │ ├── Read Binding Source.vi │ │ ├── Read ColumnHeadersVisible.vi │ │ ├── Read DataGridView.vi │ │ ├── Read DefaultAlternateCellBGKColor.vi │ │ ├── Read DefaultCellBGKColor.vi │ │ ├── Read RowHeadersVisible.vi │ │ ├── Read SelectionMode.vi │ │ ├── Read registeredEvents.vi │ │ ├── Read userEvents.vi │ │ ├── Write AllowUserToAddRows.vi │ │ ├── Write AllowUserToDeleteRows.vi │ │ ├── Write AllowUserToOrderColumns.vi │ │ ├── Write AllowUserToResizeColumns.vi │ │ ├── Write AllowUserToResizeRows.vi │ │ ├── Write AutoSizeColumnsMode.vi │ │ ├── Write AutoSizeRowsMode.vi │ │ ├── Write Binding Source.vi │ │ ├── Write ColumnHeadersVisible.vi │ │ ├── Write DataGridView.vi │ │ ├── Write DefaultAlternateCellBGKColor.vi │ │ ├── Write DefaultCellBGKColor.vi │ │ ├── Write RowHeadersVisible.vi │ │ ├── Write SelectionMode.vi │ │ ├── Write frozenColumn.vi │ │ ├── Write registeredEvents.vi │ │ └── Write userEvents.vi │ ├── Remove Duplicates from 1D.vi │ ├── Remove Rows.vi │ ├── Set Cell Color.vi │ ├── Set Cell Enabled State.vi │ ├── Set Data Binding.vi │ ├── Set DataArray.vi │ ├── SetCellStyles.vi │ ├── SetDefaultCellStyles.vi │ ├── SetupCallBackEvents.vi │ ├── Stop Data Grid.vi │ └── getEvents.vi ├── DataTable │ ├── Add Rows (String).vi │ ├── Add Rows (Variant).vi │ ├── Add Rows.vi │ ├── Clear.vi │ ├── DataTable.lvclass │ ├── Edit Row (String).vi │ ├── Edit Row (Variant).vi │ ├── Edit Row.vi │ ├── Get DataArray.vi │ ├── Init.vi │ ├── Read Columns.vi │ ├── Read DataTable.vi │ ├── String Value to dot Net.vi │ ├── Variant Value to dot Net.vi │ ├── loadImageAndConvert.vi │ ├── set_column_readonly.vi │ └── verifyImageLoadAndResize.vi ├── Events │ ├── Abstract EVENT │ │ └── Abstract EVENT.lvclass │ ├── CellClick │ │ ├── CellClick.lvclass │ │ ├── Get Data.vi │ │ ├── Read column.vi │ │ ├── Read row.vi │ │ ├── Write column.vi │ │ └── Write row.vi │ ├── CellClicked Event Callback.vi │ ├── CellValidating Event Callback.vi │ ├── CellValueChanged Event Callback.vi │ ├── CellValueChanged │ │ ├── CellValueChanged.lvclass │ │ ├── Get Data.vi │ │ ├── Read cell value.vi │ │ ├── Read column.vi │ │ ├── Read row.vi │ │ ├── Write cell value.vi │ │ ├── Write column.vi │ │ └── Write row.vi │ ├── CurrentCellDirtyStateChanged Event Callback.vi │ ├── DataError Event Callback.vi │ ├── DataError │ │ ├── DataError.lvclass │ │ ├── Get Data.vi │ │ ├── Read ColumnIndex.vi │ │ ├── Read Context.vi │ │ ├── Read Exception.vi │ │ ├── Read RowIndex.vi │ │ ├── Write ColumnIndex.vi │ │ ├── Write Context.vi │ │ ├── Write Exception.vi │ │ └── Write RowIndex.vi │ ├── KeyDown Event Callback.vi │ ├── KeyDown │ │ ├── Get Data.vi │ │ ├── KeyDown.lvclass │ │ ├── Read Alt.vi │ │ ├── Read Control.vi │ │ ├── Read KeyCode.vi │ │ ├── Read KeyData.vi │ │ ├── Read KeyValue.vi │ │ ├── Read Modifiers.vi │ │ ├── Read Shift.vi │ │ ├── Write Alt.vi │ │ ├── Write Control.vi │ │ ├── Write KeyCode.vi │ │ ├── Write KeyData.vi │ │ ├── Write KeyValue.vi │ │ ├── Write Modifiers.vi │ │ └── Write Shift.vi │ ├── UserAddedRow Event Callback.vi │ ├── UserAddedRow │ │ ├── Get Data.vi │ │ ├── Read Row.vi │ │ ├── UserAddedRow.lvclass │ │ └── Write Row.vi │ ├── UserDeletedRow Event Callback.vi │ └── UserDeletedRow │ │ ├── Get Data.vi │ │ ├── Read Row.vi │ │ ├── UserDeletedRow.lvclass │ │ └── Write Row.vi ├── Example Custom Row Cell Types.vi ├── Example Simple DataBinding.vi ├── Font │ ├── DefineFont.vi │ ├── Font Cluster.ctl │ ├── Font.lvclass │ └── Properties │ │ └── Read Font.vi ├── GridColumn │ ├── ColumnDefinition.ctl │ ├── ColumnType.ctl │ ├── Create Column Definitions.vi │ ├── GridColumn.lvclass │ ├── Read AutoSizeMode.vi │ ├── Read Caption.vi │ ├── Read FillWeight.vi │ ├── Read MinWidth.vi │ ├── Read Name.vi │ ├── Read Params.vi │ ├── Read ReadOnly.vi │ ├── Read Tooltip.vi │ ├── Read datatype.vi │ ├── Write AutoSizeMode.vi │ ├── Write Caption.vi │ ├── Write FillWeight.vi │ ├── Write MinWidth.vi │ ├── Write Name.vi │ ├── Write Params.vi │ ├── Write ReadOnly.vi │ ├── Write Tooltip.vi │ └── Write datatype.vi ├── Helper Functions │ ├── Easy Color Columns.vi │ ├── Easy Grid Setup.vi │ └── Easy Style Setup.vi ├── Palettes │ ├── Block Diagram Palette.mnu │ └── Front Panel Palette.mnu ├── Test Code │ ├── Test Edit Row Functionality - Variant.vi │ └── Test Edit Row Functionality.vi ├── images │ ├── 16_accept.png │ ├── 16_add.png │ ├── 16_archive.png │ ├── 16_attachment.png │ ├── 16_back.png │ ├── 16_blank.png │ ├── 16_busy.png │ ├── 16_calculator.png │ ├── 16_calendar.png │ ├── 16_chart.png │ ├── 16_clock.png │ ├── 16_comment.png │ ├── 16_doc.png │ ├── 16_edit.png │ ├── 16_facebook.png │ ├── 16_feed.png │ ├── 16_folder.png │ ├── 16_heart.png │ ├── 16_info.png │ ├── 16_online.png │ ├── 16_pencil.png │ ├── 16_priority.png │ ├── 16_released.png │ ├── 16_settings.png │ ├── 16_site.png │ ├── 16_stop.png │ ├── 16_tip.png │ ├── 32_clipboard.png │ ├── 32_datafind.png │ ├── 32_globe_compass.png │ ├── 32_mail.png │ └── 32_status.png └── subVIs │ ├── Convert Between String and Array.vi │ └── DataGrid for LabVIEW Documentation....vi └── todo.md /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Libraries 2 | *.lvlibp 3 | *.llb 4 | 5 | # Shared objects (inc. Windows DLLs) 6 | *.dll 7 | *.so 8 | *.so.* 9 | *.dylib 10 | 11 | # Executables 12 | *.exe 13 | 14 | # Metadata 15 | *.aliases 16 | *.lvlps 17 | 18 | # Windows image file caches 19 | Thumbs.db 20 | ehthumbs.db 21 | 22 | # Folder config file 23 | Desktop.ini 24 | 25 | # Recycle Bin used on file shares 26 | $RECYCLE.BIN/ 27 | 28 | # Windows Installer files 29 | *.cab 30 | *.msi 31 | *.msm 32 | *.msp 33 | 34 | # Windows shortcuts 35 | *.lnk 36 | 37 | # ========================= 38 | # Operating System Files 39 | # ========================= 40 | 41 | # OSX 42 | # ========================= 43 | 44 | .DS_Store 45 | .AppleDouble 46 | .LSOverride 47 | 48 | # Thumbnails 49 | ._* 50 | 51 | # Files that might appear on external disk 52 | .Spotlight-V100 53 | .Trashes 54 | 55 | # Directories potentially created on remote AFP share 56 | .AppleDB 57 | .AppleDesktop 58 | Network Trash Folder 59 | Temporary Items 60 | .apdisk 61 | binaries/mike_king_lib_labview_datagridview-*.vip 62 | binaries/mike_king_lib_labview_datagridview-*.vip 63 | builds/* 64 | 1. New Product Info - datagrid for labview.docx 65 | -------------------------------------------------------------------------------- /binaries/EULA.txt: -------------------------------------------------------------------------------- 1 | Copyright 2016 Mike King 2 | Licensed under the Apache License, Version 2.0 (the "License"); 3 | you may not use this file except in compliance with the License. 4 | You may obtain a copy of the License at 5 | 6 | http://www.apache.org/licenses/LICENSE-2.0 7 | 8 | Unless required by applicable law or agreed to in writing, software 9 | distributed under the License is distributed on an "AS IS" BASIS, 10 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | See the License for the specific language governing permissions and 12 | limitations under the License. 13 | 14 | 15 | Apache License 16 | 17 | Version 2.0, January 2004 18 | 19 | http://www.apache.org/licenses/ 20 | 21 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 22 | 23 | 1. Definitions. 24 | 25 | "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. 26 | 27 | "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. 28 | 29 | "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. 30 | 31 | "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. 32 | 33 | "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. 34 | 35 | "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. 36 | 37 | "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). 38 | 39 | "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. 40 | 41 | "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." 42 | 43 | "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 44 | 45 | 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 46 | 47 | 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 48 | 49 | 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: 50 | 51 | You must give any other recipients of the Work or Derivative Works a copy of this License; and 52 | You must cause any modified files to carry prominent notices stating that You changed the files; and 53 | You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and 54 | If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. 55 | 56 | You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 57 | 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 58 | 59 | 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 60 | 61 | 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 62 | 63 | 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 64 | 65 | 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. 66 | 67 | END OF TERMS AND CONDITIONS -------------------------------------------------------------------------------- /binaries/Tool Icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/binaries/Tool Icon-small.png -------------------------------------------------------------------------------- /binaries/Tool Icon.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/binaries/Tool Icon.PNG -------------------------------------------------------------------------------- /binaries/Tool Icon.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/binaries/Tool Icon.pdn -------------------------------------------------------------------------------- /documentation/Project Overview - UserGroup Presentation.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/documentation/Project Overview - UserGroup Presentation.pptx -------------------------------------------------------------------------------- /documentation/img/AppSample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/documentation/img/AppSample.jpg -------------------------------------------------------------------------------- /documentation/img/BlockDiagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/documentation/img/BlockDiagram.jpg -------------------------------------------------------------------------------- /documentation/img/Data Injection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/documentation/img/Data Injection.png -------------------------------------------------------------------------------- /documentation/img/Frontpanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/documentation/img/Frontpanel.png -------------------------------------------------------------------------------- /documentation/img/Insert .NET Control.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/documentation/img/Insert .NET Control.jpg -------------------------------------------------------------------------------- /documentation/img/Select DataGridView.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/documentation/img/Select DataGridView.jpg -------------------------------------------------------------------------------- /documentation/img/StringData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/documentation/img/StringData.png -------------------------------------------------------------------------------- /documentation/img/defineColumns.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/documentation/img/defineColumns.PNG -------------------------------------------------------------------------------- /documentation/img/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/documentation/img/grid.png -------------------------------------------------------------------------------- /images/16_accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/images/16_accept.png -------------------------------------------------------------------------------- /images/16_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/images/16_add.png -------------------------------------------------------------------------------- /images/16_archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/images/16_archive.png -------------------------------------------------------------------------------- /images/16_attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/images/16_attachment.png -------------------------------------------------------------------------------- /images/16_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/images/16_back.png -------------------------------------------------------------------------------- /images/16_blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/images/16_blank.png -------------------------------------------------------------------------------- /images/16_busy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/images/16_busy.png -------------------------------------------------------------------------------- /images/16_calculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/images/16_calculator.png -------------------------------------------------------------------------------- /images/16_calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/images/16_calendar.png -------------------------------------------------------------------------------- /images/16_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/images/16_chart.png -------------------------------------------------------------------------------- /images/16_clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/images/16_clock.png -------------------------------------------------------------------------------- /images/16_comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/images/16_comment.png -------------------------------------------------------------------------------- /images/16_doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/images/16_doc.png -------------------------------------------------------------------------------- /images/16_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/images/16_edit.png -------------------------------------------------------------------------------- /images/16_facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/images/16_facebook.png -------------------------------------------------------------------------------- /images/16_feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/images/16_feed.png -------------------------------------------------------------------------------- /images/16_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/images/16_folder.png -------------------------------------------------------------------------------- /images/16_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/images/16_heart.png -------------------------------------------------------------------------------- /images/16_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/images/16_info.png -------------------------------------------------------------------------------- /images/16_online.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/images/16_online.png -------------------------------------------------------------------------------- /images/16_pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/images/16_pencil.png -------------------------------------------------------------------------------- /images/16_priority.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/images/16_priority.png -------------------------------------------------------------------------------- /images/16_released.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/images/16_released.png -------------------------------------------------------------------------------- /images/16_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/images/16_settings.png -------------------------------------------------------------------------------- /images/16_site.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/images/16_site.png -------------------------------------------------------------------------------- /images/16_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/images/16_stop.png -------------------------------------------------------------------------------- /images/16_tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/images/16_tip.png -------------------------------------------------------------------------------- /images/32_clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/images/32_clipboard.png -------------------------------------------------------------------------------- /images/32_datafind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/images/32_datafind.png -------------------------------------------------------------------------------- /images/32_globe_compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/images/32_globe_compass.png -------------------------------------------------------------------------------- /images/32_mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/images/32_mail.png -------------------------------------------------------------------------------- /images/32_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/images/32_status.png -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "{}" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright 2016 Mike King 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # LabVIEW dot Net DataGrid Overview 2 | A very useful and easy to use data grid to replace LabVIEW's tables and multicolumn listboxes. This datagrid supports more of the standard expected table/grid functions for sorting, filters and auto fitting content, and best of all, it supports some extended datatypes embedded within the grid. 3 | 4 | Basically, this grid allows better table support, with more built in features that you can use standard LabVIEW data with and basic properties to your own string data into a more friendly grid and content display. 5 | 6 | ![Front Panel](https://github.com/unipsycho/LabVIEWdotNetDataGrid/blob/master/documentation/img/Frontpanel.png) 7 | 8 | 9 | # Features 10 | * Auto drawing and formatting of content 11 | * Auto Column width sizing (auto, cell, fill, none, etc) 12 | * Inline objects for combobox, buttons, checks and images 13 | * Clickable Columns to sort (Asc/Dsc) 14 | * Dragable columns to reorder them 15 | * Minimum column widths 16 | * Basic Events integration with LabVIEW Event structure for integration into your app 17 | 18 | # Easy to Use 19 | ![Block Diagram](https://github.com/unipsycho/LabVIEWdotNetDataGrid/blob/master/documentation/img/BlockDiagram.jpg) 20 | 21 | # Dependencies 22 | OpenG is used for several variant data inspectors 23 | 24 | # Usage 25 | See the example code. Four simple steps to use it: 26 | 27 | #### 1.Place a .NET DataGrid control on the front panel 28 | 29 | ![Insert .NET Control](https://github.com/unipsycho/LabVIEWdotNetDataGrid/blob/master/documentation/img/Insert%20.NET%20Control.jpg) 30 | 31 | #### 2.Initialize the DataGrid Class using the .net control reference 32 | 33 | ![Choose DataGridView](https://github.com/unipsycho/LabVIEWdotNetDataGrid/blob/master/documentation/img/Select%20DataGridView.jpg) 34 | 35 | #### 3.Define the column parameters 36 | ![Define Columns](https://github.com/unipsycho/LabVIEWdotNetDataGrid/blob/master/documentation/img/defineColumns.PNG) 37 | 38 | #### 4.Add data 39 | ![Add String Table Data](https://github.com/unipsycho/LabVIEWdotNetDataGrid/blob/master/documentation/img/StringData.png) 40 | 41 | # Data Types 42 | Currently, there are several datatypes supported: 43 | * Strings 44 | * Booleans 45 | * Numbers 46 | * Timestamps 47 | * Images (can set name of built in images, or add full path to custom images) 48 | * Buttons 49 | * Combobox (selection lists) 50 | * Links 51 | 52 | # Events 53 | All events are automatically registered as user events for use in LabVIEW's event structure. Each event type has a "getData.vi" that can be used to convert the event class data into elements within the event handler. Using the easygrid helper functions, these events are all automatically registered, so can simply be connected to any event structure for use. 54 | 55 | The events currently available are: 56 | * Cell Edit Ended - This single event is used currently as a sample for callback events. 57 | * Cell Value Changed - 58 | * Cell Validating - This is an automatic callback event, that cancels any edits when the cell value doesn't validate. No LabVIEW events are currently generated from this. 59 | * DataError - when formattting fails on the data for a cell on change 60 | * UserAddedRow - returns the row 61 | * UserDeletedRow - returns the row 62 | 63 | # Releases 64 | Grab the latest releases to use this project [here from github](https://github.com/unipsycho/LabVIEWdotNetDataGrid/releases). 65 | # Contributing 66 | 67 | This repository was originally created for LabIVEW 2013 SP1, some updates and maitenance now is bing down in LabIVEW 2014. 68 | See the [Todo.md](https://github.com/unipsycho/LabVIEWdotNetDataGrid/blob/v0.1/todo.md) for areas you can contribute. 69 | 70 | # Deployment 71 | The datagrid can be easily deployed into an EXE using the library such as in the example provided. It can also be used by the packed library versions for LabVIEW and kept as a dynamic plugin module. Both methods require that you include the images folder for supporting default built in images (or to add your own) so they can be used by name, instead of specifying a full path. 72 | 73 | # Support 74 | No Support is provided directly for this add-on, since its a free product, but you can use this community github page or the [LabVIEW forums](http://forums.ni.com/) for help and questions 75 | -------------------------------------------------------------------------------- /source/CellStyle/CellStyleCluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/CellStyle/CellStyleCluster.ctl -------------------------------------------------------------------------------- /source/CellStyle/Define CellStyle.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/CellStyle/Define CellStyle.vi -------------------------------------------------------------------------------- /source/CellStyle/Properties/Read cellStyle.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/CellStyle/Properties/Read cellStyle.vi -------------------------------------------------------------------------------- /source/Color/Choose Color.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Color/Choose Color.vi -------------------------------------------------------------------------------- /source/Color/NamedColors.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Color/NamedColors.ctl -------------------------------------------------------------------------------- /source/Color/Properties/RGB Color.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Color/Properties/RGB Color.vi -------------------------------------------------------------------------------- /source/Color/Properties/Read Color.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Color/Properties/Read Color.vi -------------------------------------------------------------------------------- /source/Color/Properties/Set Alpha.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Color/Properties/Set Alpha.vi -------------------------------------------------------------------------------- /source/Controls/DataGrid.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Controls/DataGrid.ctl -------------------------------------------------------------------------------- /source/Controls/EventsList.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Controls/EventsList.ctl -------------------------------------------------------------------------------- /source/Controls/EventsToRegisterCluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Controls/EventsToRegisterCluster.ctl -------------------------------------------------------------------------------- /source/Controls/userEvents.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Controls/userEvents.ctl -------------------------------------------------------------------------------- /source/DataGrid for LabVIEW.bin3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGrid for LabVIEW.bin3 -------------------------------------------------------------------------------- /source/DataGrid.aliases: -------------------------------------------------------------------------------- 1 | [My Computer] 2 | My Computer = "192.168.10.148" 3 | 4 | -------------------------------------------------------------------------------- /source/DataGrid.lvlib: -------------------------------------------------------------------------------- 1 |  2 | 3 | %Q#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!(]!!!*Q(C=\>7R=2MR%!81N=?"5X<A91M</W-,<'&<9+K1,7Q,<)%N<!NMA3X)DW?-RJ(JQ"I\%%Z,(@`BA#==ZB3RN;]28_,V7@P_W`:R`>HV*SU_WE@\N_XF[3:^^TX\+2YP)D7K6;G-RV3P)R`ZS%=_]J'XP/5N<XH,7V\SEJ?]Z#5P?=J4HP+5JTTFWS%0?=B$DD1G(R/.1==!IT.+D)`B':\B'2Z@9XC':XC':XBUC?%:HO%:HO&R7QT0]!T0]!S0I4<*<)?=:XA-(]X40-X40-VDSGC?"GC4N9(<)"D2,L;4ZGG?ZH%;T>-]T>-]T?.S.%`T.%`T.)^<NF8J4@-YZ$S'C?)JHO)JHO)R>"20]220]230[;*YCK=ASI2F=)1I.Z5/Z5PR&)^@54T&5TT&5TQO<5_INJ6Z;"[(H#>ZEC>ZEC>Z$"(*ETT*ETT*9^B)HO2*HO2*(F.&]C20]C2)GN4UE1:,.[:/+5A?0^NOS?UJ^3<*\9B9GT@7JISVW7*NIFC<)^:$D`5Q9TWE7)M@;V&D,6;M29DVR]6#R],%GC47T9_/=@>Z5V>V57>V5E>V5(OV?^T[FTP?\`?YX7ZRP6\D=LH%_8S/U_E5R_-R$I>$\0@\W/VW<[_"<Y[X&],0^^+,]T_J>`J@_B_]'_.T`$KO.@I"O[^NF!!!!!! 4 | 1.0.0.0 5 | true 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /source/DataGrid.lvlps: -------------------------------------------------------------------------------- 1 | [ProjectWindow_Data] 2 | ProjectExplorer.ClassicPosition[String] = "120,52,761,605" 3 | 4 | [AB_Cache_{B16A3F3B-B893-468A-BFDE-BD82E2B17C94}] 5 | Cache_Path[Path] Line0001 = "/C/Users/Mike/AppData/Local/Temp/AB_Cache_{B16A3F3" 6 | Cache_Path[Path] Line0002 = "B-B893-468A-BFDE-BD82E2B17C94}.txt" 7 | 8 | [AB_Cache_{15FE51E4-11EC-417C-AD61-60D1BF11B0F5}] 9 | Cache_Path[Path] Line0001 = "/C/Users/Mike/AppData/Local/Temp/AB_Cache_{15FE51E" 10 | Cache_Path[Path] Line0002 = "4-11EC-417C-AD61-60D1BF11B0F5}.txt" 11 | 12 | [AB_Cache_{D2CA9500-01C1-48CD-B383-109C25BB4757}] 13 | Cache_Path[Path] Line0001 = "/C/Users/Mike/AppData/Local/Temp/AB_Cache_{D2CA950" 14 | Cache_Path[Path] Line0002 = "0-01C1-48CD-B383-109C25BB4757}.txt" 15 | 16 | [AB_Cache_{6112FCA3-500A-4B76-814A-2173493881DA}] 17 | Cache_Path[Path] Line0001 = "/C/Users/Mike/AppData/Local/Temp/AB_Cache_{6112FCA" 18 | Cache_Path[Path] Line0002 = "3-500A-4B76-814A-2173493881DA}.txt" 19 | 20 | [AB_Cache_{D4A175A4-613C-4461-92BB-4FB5F46C9439}] 21 | Cache_Path[Path] Line0001 = "/C/Users/Mike/AppData/Local/Temp/AB_Cache_{D4A175A" 22 | Cache_Path[Path] Line0002 = "4-613C-4461-92BB-4FB5F46C9439}.txt" 23 | 24 | [AB_Cache_{198ED58C-DA08-4E3F-A912-5B06D7D104EA}] 25 | Cache_Path[Path] Line0001 = "/C/Users/Mike/AppData/Local/Temp/AB_Cache_{198ED58" 26 | Cache_Path[Path] Line0002 = "C-DA08-4E3F-A912-5B06D7D104EA}.txt" 27 | 28 | -------------------------------------------------------------------------------- /source/DataGrid.lvproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | true 4 | 201310 5 | 6 | 7 | 100 8 | false 9 | 10000 10 | 0 11 | 9 12 | true 13 | false 14 | 3 15 | true 16 | true 17 | false 18 | 0 19 | My Computer/VI Server 20 | My Computer/VI Server 21 | true 22 | true 23 | false 24 | 25 | 26 | true 27 | 28 | 29 | 30 | 31 | 32 | true 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | true 77 | 78 | 79 | true 80 | 81 | 82 | true 83 | 84 | 85 | true 86 | 87 | 88 | true 89 | 90 | 91 | 92 | 93 | {D4A175A4-613C-4461-92BB-4FB5F46C9439} 94 | DataGrid 95 | true 96 | true 97 | true 98 | ../binaries 99 | relativeToCommon 100 | true 101 | {198ED58C-DA08-4E3F-A912-5B06D7D104EA} 102 | 7 103 | 1 104 | 4 105 | DataGrid.lvlibp 106 | ../binaries/NI_AB_PROJECTNAME.lvlibp 107 | true 108 | App 109 | Support Directory 110 | ../binaries 111 | 2 112 | true 113 | {BEFB995C-15CA-4848-B4E3-8629D956E16F} 114 | Container 115 | 0 116 | /My Computer/DataGrid.lvlib 117 | true 118 | true 119 | true 120 | true 121 | TopLevel 122 | Library 123 | 2 124 | DataGrid 125 | DataGrid 126 | Apache 2.0 License 127 | DataGrid 128 | {BA287B08-E306-4C72-9AFC-214CAF4FED4A} 129 | DataGrid.lvlibp 130 | 131 | 132 | true 133 | {0EC2BBAC-9393-4E60-8D8D-450078AAB80F} 134 | {E33F22E7-6F62-470B-B0B5-7A7DFC9CD564} 135 | 8002 136 | true 137 | {D2CA9500-01C1-48CD-B383-109C25BB4757} 138 | Note: images would have to be deployed to the images folder for use in an executable. 139 | Example 140 | true 141 | true 142 | true 143 | ../builds/NI_AB_PROJECTNAME/Example 144 | relativeToCommon 145 | true 146 | {6112FCA3-500A-4B76-814A-2173493881DA} 147 | 22 148 | 1 149 | Example.exe 150 | ../builds/NI_AB_PROJECTNAME/Example/Example.exe 151 | true 152 | App 153 | Support Directory 154 | ../builds/NI_AB_PROJECTNAME/Example/data 155 | Images 156 | ../builds/NI_AB_PROJECTNAME/Example/Images 157 | 3 158 | {7D88853B-8694-4873-B81C-ED33695F6CE9} 159 | Container 160 | 0 161 | /My Computer/Examples/Example Simple DataBinding.vi 162 | TopLevel 163 | VI 164 | true 165 | true 166 | 2 167 | /My Computer/Examples/images 168 | Include 169 | Container 170 | 3 171 | Example 172 | Example 173 | Example 174 | {DC082D2B-0E46-4215-87CC-F4DAEABDA544} 175 | Example.exe 176 | 177 | 178 | 179 | 180 | -------------------------------------------------------------------------------- /source/DataGridView/Add Rows.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Add Rows.vi -------------------------------------------------------------------------------- /source/DataGridView/Apply Column Setup After Binding.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Apply Column Setup After Binding.vi -------------------------------------------------------------------------------- /source/DataGridView/Column Visibility.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Column Visibility.vi -------------------------------------------------------------------------------- /source/DataGridView/Define DataGrid Columns.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Define DataGrid Columns.vi -------------------------------------------------------------------------------- /source/DataGridView/Define DataTable Columns.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Define DataTable Columns.vi -------------------------------------------------------------------------------- /source/DataGridView/Determine Image Path.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Determine Image Path.vi -------------------------------------------------------------------------------- /source/DataGridView/GenerateDataSet.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/GenerateDataSet.vi -------------------------------------------------------------------------------- /source/DataGridView/Get Active Cell Index.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Get Active Cell Index.vi -------------------------------------------------------------------------------- /source/DataGridView/Get DataArray.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Get DataArray.vi -------------------------------------------------------------------------------- /source/DataGridView/Get Selected Cell Location.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Get Selected Cell Location.vi -------------------------------------------------------------------------------- /source/DataGridView/GridView Property Setup.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/GridView Property Setup.vi -------------------------------------------------------------------------------- /source/DataGridView/Initialize.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Initialize.vi -------------------------------------------------------------------------------- /source/DataGridView/Override Null objects.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Override Null objects.vi -------------------------------------------------------------------------------- /source/DataGridView/Properties/Read AllowUserToAddRows.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Properties/Read AllowUserToAddRows.vi -------------------------------------------------------------------------------- /source/DataGridView/Properties/Read AllowUserToDeleteRows.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Properties/Read AllowUserToDeleteRows.vi -------------------------------------------------------------------------------- /source/DataGridView/Properties/Read AllowUserToOrderColumns.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Properties/Read AllowUserToOrderColumns.vi -------------------------------------------------------------------------------- /source/DataGridView/Properties/Read AllowUserToResizeColumns.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Properties/Read AllowUserToResizeColumns.vi -------------------------------------------------------------------------------- /source/DataGridView/Properties/Read AllowUserToResizeRows.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Properties/Read AllowUserToResizeRows.vi -------------------------------------------------------------------------------- /source/DataGridView/Properties/Read AutoSizeColumnsMode.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Properties/Read AutoSizeColumnsMode.vi -------------------------------------------------------------------------------- /source/DataGridView/Properties/Read AutoSizeRowsMode.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Properties/Read AutoSizeRowsMode.vi -------------------------------------------------------------------------------- /source/DataGridView/Properties/Read Binding Source.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Properties/Read Binding Source.vi -------------------------------------------------------------------------------- /source/DataGridView/Properties/Read ColumnHeadersVisible.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Properties/Read ColumnHeadersVisible.vi -------------------------------------------------------------------------------- /source/DataGridView/Properties/Read DataGridView.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Properties/Read DataGridView.vi -------------------------------------------------------------------------------- /source/DataGridView/Properties/Read DefaultAlternateCellBGKColor.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Properties/Read DefaultAlternateCellBGKColor.vi -------------------------------------------------------------------------------- /source/DataGridView/Properties/Read DefaultCellBGKColor.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Properties/Read DefaultCellBGKColor.vi -------------------------------------------------------------------------------- /source/DataGridView/Properties/Read RowHeadersVisible.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Properties/Read RowHeadersVisible.vi -------------------------------------------------------------------------------- /source/DataGridView/Properties/Read SelectionMode.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Properties/Read SelectionMode.vi -------------------------------------------------------------------------------- /source/DataGridView/Properties/Read registeredEvents.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Properties/Read registeredEvents.vi -------------------------------------------------------------------------------- /source/DataGridView/Properties/Read userEvents.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Properties/Read userEvents.vi -------------------------------------------------------------------------------- /source/DataGridView/Properties/Write AllowUserToAddRows.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Properties/Write AllowUserToAddRows.vi -------------------------------------------------------------------------------- /source/DataGridView/Properties/Write AllowUserToDeleteRows.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Properties/Write AllowUserToDeleteRows.vi -------------------------------------------------------------------------------- /source/DataGridView/Properties/Write AllowUserToOrderColumns.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Properties/Write AllowUserToOrderColumns.vi -------------------------------------------------------------------------------- /source/DataGridView/Properties/Write AllowUserToResizeColumns.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Properties/Write AllowUserToResizeColumns.vi -------------------------------------------------------------------------------- /source/DataGridView/Properties/Write AllowUserToResizeRows.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Properties/Write AllowUserToResizeRows.vi -------------------------------------------------------------------------------- /source/DataGridView/Properties/Write AutoSizeColumnsMode.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Properties/Write AutoSizeColumnsMode.vi -------------------------------------------------------------------------------- /source/DataGridView/Properties/Write AutoSizeRowsMode.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Properties/Write AutoSizeRowsMode.vi -------------------------------------------------------------------------------- /source/DataGridView/Properties/Write Binding Source.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Properties/Write Binding Source.vi -------------------------------------------------------------------------------- /source/DataGridView/Properties/Write ColumnHeadersVisible.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Properties/Write ColumnHeadersVisible.vi -------------------------------------------------------------------------------- /source/DataGridView/Properties/Write DataGridView.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Properties/Write DataGridView.vi -------------------------------------------------------------------------------- /source/DataGridView/Properties/Write DefaultAlternateCellBGKColor.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Properties/Write DefaultAlternateCellBGKColor.vi -------------------------------------------------------------------------------- /source/DataGridView/Properties/Write DefaultCellBGKColor.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Properties/Write DefaultCellBGKColor.vi -------------------------------------------------------------------------------- /source/DataGridView/Properties/Write RowHeadersVisible.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Properties/Write RowHeadersVisible.vi -------------------------------------------------------------------------------- /source/DataGridView/Properties/Write SelectionMode.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Properties/Write SelectionMode.vi -------------------------------------------------------------------------------- /source/DataGridView/Properties/Write frozenColumn.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Properties/Write frozenColumn.vi -------------------------------------------------------------------------------- /source/DataGridView/Properties/Write registeredEvents.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Properties/Write registeredEvents.vi -------------------------------------------------------------------------------- /source/DataGridView/Properties/Write userEvents.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Properties/Write userEvents.vi -------------------------------------------------------------------------------- /source/DataGridView/Remove Duplicates from 1D.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Remove Duplicates from 1D.vi -------------------------------------------------------------------------------- /source/DataGridView/Remove Rows.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Remove Rows.vi -------------------------------------------------------------------------------- /source/DataGridView/Set Cell Color.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Set Cell Color.vi -------------------------------------------------------------------------------- /source/DataGridView/Set Cell Enabled State.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Set Cell Enabled State.vi -------------------------------------------------------------------------------- /source/DataGridView/Set Data Binding.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Set Data Binding.vi -------------------------------------------------------------------------------- /source/DataGridView/Set DataArray.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Set DataArray.vi -------------------------------------------------------------------------------- /source/DataGridView/SetCellStyles.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/SetCellStyles.vi -------------------------------------------------------------------------------- /source/DataGridView/SetDefaultCellStyles.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/SetDefaultCellStyles.vi -------------------------------------------------------------------------------- /source/DataGridView/SetupCallBackEvents.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/SetupCallBackEvents.vi -------------------------------------------------------------------------------- /source/DataGridView/Stop Data Grid.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/Stop Data Grid.vi -------------------------------------------------------------------------------- /source/DataGridView/getEvents.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataGridView/getEvents.vi -------------------------------------------------------------------------------- /source/DataTable/Add Rows (String).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataTable/Add Rows (String).vi -------------------------------------------------------------------------------- /source/DataTable/Add Rows (Variant).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataTable/Add Rows (Variant).vi -------------------------------------------------------------------------------- /source/DataTable/Add Rows.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataTable/Add Rows.vi -------------------------------------------------------------------------------- /source/DataTable/Clear.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataTable/Clear.vi -------------------------------------------------------------------------------- /source/DataTable/Edit Row (String).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataTable/Edit Row (String).vi -------------------------------------------------------------------------------- /source/DataTable/Edit Row (Variant).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataTable/Edit Row (Variant).vi -------------------------------------------------------------------------------- /source/DataTable/Edit Row.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataTable/Edit Row.vi -------------------------------------------------------------------------------- /source/DataTable/Get DataArray.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataTable/Get DataArray.vi -------------------------------------------------------------------------------- /source/DataTable/Init.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataTable/Init.vi -------------------------------------------------------------------------------- /source/DataTable/Read Columns.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataTable/Read Columns.vi -------------------------------------------------------------------------------- /source/DataTable/Read DataTable.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataTable/Read DataTable.vi -------------------------------------------------------------------------------- /source/DataTable/String Value to dot Net.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataTable/String Value to dot Net.vi -------------------------------------------------------------------------------- /source/DataTable/Variant Value to dot Net.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataTable/Variant Value to dot Net.vi -------------------------------------------------------------------------------- /source/DataTable/loadImageAndConvert.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataTable/loadImageAndConvert.vi -------------------------------------------------------------------------------- /source/DataTable/set_column_readonly.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataTable/set_column_readonly.vi -------------------------------------------------------------------------------- /source/DataTable/verifyImageLoadAndResize.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/DataTable/verifyImageLoadAndResize.vi -------------------------------------------------------------------------------- /source/Events/Abstract EVENT/Abstract EVENT.lvclass: -------------------------------------------------------------------------------- 1 |  2 | 3 | DataGrid.lvlib 4 | ../../../DataGrid.lvlib 5 | %Q#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!*.!!!*Q(C=\>5`4BN"&-@R8S++50I'S$>!L[+-Z#)6H;`Q?CKXF&MA#JLIX3#SIB2U+V`B6@3_AK_Q@'>Y"N0ABE1I9I;RV\_>0R`0LB?JFW`3C;:D:8ST^0/N6[`^P1\W,_V]<^04?X5:J]0R><Y'D`O?"_0X1VY.0FB`H-;8^@=@[PS<`C.&H_7T`.`F_OC0Y+``$L[I09BI31O;UURNW3H*ETT*ETT*ETT)ATT)ATT)A^T*H>T*H>T*H>T)D>T)D>T)D<R8=J',8/31EM74B:**EQG3TF#5P#3?R*.Y%A]@F8A34_**0)G(,EI]C3@R**\%QT!FHM34?"*0YG'K,MF?S@%E(K:8Y!E]A3@Q""[76/!*!-&CQ=4"*$!5H!Q/!E`A#4Q=+P!%HM!4?!)0JR6Y!E`A#4S"BS&^6[*L7C8(QT2S0)\(]4A?R]05=DS/R`%Y(M@$=H)]DM>"/!M[EU/1-]DJY(RQ0)[(.TE?R_.Y()`DY63`1NZXJGF;*=>D?!S0Y4%]BI=J:(A-D_%R0);(;76Y$)`B-4S'B[6E?!S0Y4%ARK)M,W-S9[$2S1A-$X`^<L&_F;*,L&?J<F\64;G[W61XE?LG5&VUV=658346ZKMW6<6:KEV1@4E67I62,;);X$JKR_O7NK'N;1.N26P3&L1Z<>;'PH0(X7[H\8;LT7;D^8KN92CU7KWU8#[V7#QUH]]VG]W?(Q.HV/=(QN.T[:LDWT]`,Y:@$^^P@N_@$T`O4G]P\[Z;`A`_0X_!:[/_[H!.^OA2*WOV/A!!!!! 6 | 1.0.0.0 7 | true 8 | true 9 | %Q#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!6,0%.M>8.U:8)_$1I]4G&N:4Z1:7Y],UZB<75_$1I]4H6N27RU=TYY0#^/>7V&<(2T0AU+0&5T-DY.#DR/97VF0E:P=G6H=G^V<G1A1W^M<X)],UZB<75_$1I]6G&M0D%S/$1V-45T0#^797Q_$1I],V5T-DY.#DR6-T)_$1I]4G&N:4Z#97.L:X*P>7ZE)%.P<'^S0#^/97VF0AU+0&:B<$YR.D=X.T)R.4QP6G&M0AU+0#^6-T)_$1I]1WRV=X2F=DY.#DR/97VF0E:J<'QA5'&U>'6S<DQP4G&N:4Y.#DR/>7V&<(2T0DA],UZV<56M>(-_$1I]64A_$1I]4G&N:4Z3<X=A-$QP4G&N:4Y.#DR797Q_-4)X0#^797Q_$1I],V5Y0AU+0&5Y0AU+0%ZB<75_5G^X)$%],UZB<75_$1I]6G&M0D%S.TQP6G&M0AU+0#^6/$Y.#DR6/$Y.#DR/97VF0F*P>S!S0#^/97VF0AU+0&:B<$YR-D=],V:B<$Y.#DQP64A_$1I]64A_$1I]4G&N:4Z3<X=A-TQP4G&N:4Y.#DR797Q_-4)X0#^797Q_$1I],V5Y0AU+0&5Y0AU+0%ZB<75_5G^X)$1],UZB<75_$1I]6G&M0D%S.TQP6G&M0AU+0#^6/$Y.#DR6/$Y.#DR/97VF0F*P>S!V0#^/97VF0AU+0&:B<$YR-D=],V:B<$Y.#DQP64A_$1I]64A_$1I]4G&N:4Z3<X=A.DQP4G&N:4Y.#DR797Q_-4)X0#^797Q_$1I],V5Y0AU+0&5Y0AU+0%ZB<75_5G^X)$=],UZB<75_$1I]6G&M0D%S.TQP6G&M0AU+0#^6/$Y.#DQP1WRV=X2F=DY.#DR*-49_$1I]4G&N:4Z8;72U;$QP4G&N:4Y.#DR797Q_-4QP6G&M0AU+0#^*-49_$1I]26=_$1I]4G&N:4Z.<W2F0#^/97VF0AU+0%.I<WFD:4Z$<X"Z0#^$;'^J9W5_$1I]1WBP;7.F0E^S0#^$;'^J9W5_$1I]1WBP;7.F0E6Y9WRV=WFW:3"0=DQP1WBP;7.F0AU+0%.I<WFD:4Z#;81A1WRF98)],U.I<WFD:4Y.#DR$;'^J9W5_4G^U)%.P=(E],U.I<WFD:4Y.#DR$;'^J9W5_4G^U)%^S0#^$;'^J9W5_$1I]1WBP;7.F0EZP=C"&?'.M>8.J>G5A4X)],U.I<WFD:4Y.#DR$;'^J9W5_4G^U)%*J>#"$<'6B=DQP1WBP;7.F0AU+0&:B<$YQ0#^797Q_$1I],U680AU+0%6-0AU+0%ZB<75_5X2Z<'5],UZB<75_$1I]1WBP;7.F0F.P<'FE0#^$;'^J9W5_$1I]1WBP;7.F0E2B=WA],U.I<WFD:4Y.#DR$;'^J9W5_2'^U0#^$;'^J9W5_$1I]1WBP;7.F0E2B=WAA2'^U0#^$;'^J9W5_$1I]1WBP;7.F0E2B=WAA2'^U)%2P>$QP1WBP;7.F0AU+0&:B<$YQ0#^797Q_$1I],U6-0AU+0%6-0AU+0%ZB<75_2GFM<#"3>7RF0#^/97VF0AU+0%.I<WFD:4Z&>G6O)%^E:$QP1WBP;7.F0AU+0%.I<WFD:4Z8;7ZE;7ZH0#^$;'^J9W5_$1I]6G&M0D!],V:B<$Y.#DQP25Q_$1I]25Q_$1I]4G&N:4Z&<G1A1W&Q=TQP4G&N:4Y.#DR$;'^J9W5_2'6G986M>$QP1WBP;7.F0AU+0%.I<WFD:4Z'<'&U0#^$;'^J9W5_$1I]6G&M0D!],V:B<$Y.#DQP25Q_$1I],U.M>8.U:8)_$1I!!!!! 10 | true 11 | %Q#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!6$0%.M>8.U:8)_$1I]4G&N:4Z1:7Y],UZB<75_$1I]4H6N27RU=TYY0#^/>7V&<(2T0AU+0&5T-DY.#DR/97VF0E:P=G6H=G^V<G1A1W^M<X)],UZB<75_$1I]6G&M0D%R/$-U-T9Y0#^797Q_$1I],V5T-DY.#DR6-T)_$1I]4G&N:4Z#97.L:X*P>7ZE)%.P<'^S0#^/97VF0AU+0&:B<$YR.D=X.T)R.4QP6G&M0AU+0#^6-T)_$1I]1WRV=X2F=DY.#DR/97VF0E:J<'QA5'&U>'6S<DQP4G&N:4Y.#DR/>7V&<(2T0DA],UZV<56M>(-_$1I]64A_$1I]4G&N:4Z3<X=A-$QP4G&N:4Y.#DR797Q_-T%],V:B<$Y.#DQP64A_$1I]64A_$1I]4G&N:4Z3<X=A-4QP4G&N:4Y.#DR797Q_-T%],V:B<$Y.#DQP64A_$1I]64A_$1I]4G&N:4Z3<X=A-DQP4G&N:4Y.#DR797Q_-T%],V:B<$Y.#DQP64A_$1I]64A_$1I]4G&N:4Z3<X=A-TQP4G&N:4Y.#DR797Q_-T%],V:B<$Y.#DQP64A_$1I]64A_$1I]4G&N:4Z3<X=A.$QP4G&N:4Y.#DR797Q_-T%],V:B<$Y.#DQP64A_$1I]64A_$1I]4G&N:4Z3<X=A.4QP4G&N:4Y.#DR797Q_-T%],V:B<$Y.#DQP64A_$1I]64A_$1I]4G&N:4Z3<X=A.DQP4G&N:4Y.#DR797Q_-T%],V:B<$Y.#DQP64A_$1I]64A_$1I]4G&N:4Z3<X=A.TQP4G&N:4Y.#DR797Q_-T%],V:B<$Y.#DQP64A_$1I],U.M>8.U:8)_$1I]34%W0AU+0%ZB<75_6WFE>'A],UZB<75_$1I]6G&M0D-],V:B<$Y.#DQP34%W0AU+0%680AU+0%ZB<75_47^E:4QP4G&N:4Y.#DR$;'^J9W5_1W^Q?4QP1WBP;7.F0AU+0%.I<WFD:4Z0=DQP1WBP;7.F0AU+0%.I<WFD:4Z&?'.M>8.J>G5A4X)],U.I<WFD:4Y.#DR$;'^J9W5_1GFU)%.M:7&S0#^$;'^J9W5_$1I]1WBP;7.F0EZP>#"$<X"Z0#^$;'^J9W5_$1I]1WBP;7.F0EZP>#"0=DQP1WBP;7.F0AU+0%.I<WFD:4Z/<X)A28BD<(6T;8:F)%^S0#^$;'^J9W5_$1I]1WBP;7.F0EZP>#"#;81A1WRF98)],U.I<WFD:4Y.#DR797Q_-$QP6G&M0AU+0#^&6TY.#DR&4$Y.#DR/97VF0F.U?7RF0#^/97VF0AU+0%.I<WFD:4Z4<WRJ:$QP1WBP;7.F0AU+0%.I<WFD:4Z%98.I0#^$;'^J9W5_$1I]1WBP;7.F0E2P>$QP1WBP;7.F0AU+0%.I<WFD:4Z%98.I)%2P>$QP1WBP;7.F0AU+0%.I<WFD:4Z%98.I)%2P>#"%<X1],U.I<WFD:4Y.#DR797Q_-$QP6G&M0AU+0#^&4$Y.#DR&4$Y.#DR/97VF0E:J<'QA5H6M:4QP4G&N:4Y.#DR$;'^J9W5_28:F<C"0:'1],U.I<WFD:4Y.#DR$;'^J9W5_6WFO:'FO:TQP1WBP;7.F0AU+0&:B<$YQ0#^797Q_$1I],U6-0AU+0%6-0AU+0%ZB<75_27ZE)%.B=(-],UZB<75_$1I]1WBP;7.F0E2F:G&V<(1],U.I<WFD:4Y.#DR$;'^J9W5_2GRB>$QP1WBP;7.F0AU+0&:B<$YQ0#^797Q_$1I],U6-0AU+0#^$<(6T>'6S0AU+!!!!!! 12 | %Q#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!""<5F.31QU+!!.-6E.$4%*76Q!!$'!!!!0\!!!!)!!!$%!!!!!K!!!!!AZ%982B2X*J:#ZM>GRJ9B:"9H.U=G&D>#"&6E6/6#ZM>G.M98.T!!!!!!#1%Q#!!!!Q!!!)!!1!!!!!"!!$!$Q!P!!@1)!#!!!!!!%!!1!'`````Q!!!!!!!!!!!!!!!!#J(9:MXJN#HB`&?HZFXB1!!!!-!!!!%!!!!!/<$EIS1::T3K?JTK\_V2"2V"W-W9]!MA4JA!G9\0B#@A!!%!!!!!!!/X%/:+OG\U_=,F2)EC]`UA!!!!!!!!!!!!!!%/SDX&@!*VJ^E1$Z'C_??+U!!!!%!!!!!!!!!'-!!5R71U-Y2'&U95>S;71O<(:M;7)[17*T>(*B9X1A26:&4F1O<(:D<'&T=TJ"9H.U=G&D>#"&6E6/6#ZD>'Q!!!!!!!!"!!*735R#!!!!!&"53$!!!!!&!!%!!1!!!!!#!!-!!!!!!A!"!!!!!!!7!!!!#HC=9W"G9"*A%'!59!!!!09!.Q!!!!!!(Q!!!-RYH'.AQ!`_!Q%"*41(".T!$-1M1-Q+!%(J#!5!!!!!3!!"6EF%5TB%982B2X*J:#ZM>GRJ9DJ"9H.U=G&D>#"&6E6/6#ZM>G.M98.T/E&C=X2S97.U)%6725Z5,G.U<!!!!!!!!!!!!Q!!!"-!!!!*?*RD9'"A:'1!!A!!&!!$!!!!!!Q4!)!!!!!%-4-O-!!!!!!-%Q#!!!!!"$%T,D!!!!!!$"-!A!!!!!1R-SYQ!!!!!!Q4!)!!!!!%-4-O-!!!!!!-%Q#!!!!!"$%T,D!!!!!!$1!!!!!!!!!!!!!!!!!!!!!!!!#!`````Y!!!!'!!!!"A!!!!9!!!!'!!!!"A!!!!9!!!!'!!!!"A!!!!9!!!!'!!!!"A'!!!9'9!!''"A!"G!'!!;!!1!'Q!-!"L!.!!;-/Q!'A^5!"I#L!!;!V1!'A+M!"I$6!!;!KQ!'A.5!"G#O!!99W!!'"O!!"A'!!!@````]!!!1!````````````````````````````````````````````!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!``]!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!$``Q!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!0``!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!``]!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!$``Q!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!0``!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!``]!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!$``Q!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!0``!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!``]!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!$``Q!!!!!!!!!!O<E!!!!!!!!!!!!!!!!!!!!!!!!!!0``!!!!!!!!O>(&S^'Z!!!!!!!!!!!!!!!!!!!!!!!!``]!!!!!O>(&P\_`P]P2O1!!!!!!!!!!!!!!!!!!!!$``Q!!O>(&P\_`P\_`P\`,U<E!!!!!!!!!!!!!!!!!!0``!-P&P\_`P\_`P\_`P\_`S^%!!!!!!!!!!!!!!!!!``]!R=7`P\_`P\_`P\_`P\``SQ!!!!!!!!!!!!!!!!$``Q$&S]P&P\_`P\_`P\`````&!!!!!!!!!!!!!!!!!0``!-8,S]P,R<_`P\```````]5!!!!!!!!!!!!!!!!!``]!R=P,S]P,S]82````````R1!!!!!!!!!!!!!!!!$``Q$&S]P,S]P,S``````````&!!!!!!!!!!!!!!!!!0``!-8,S]P,S]P,`````````]5!!!!!!!!!!!!!!!!!``]!R=P,S]P,S]P`````````R1!!!!!!!!!!!!!!!!$``Q$&S]P,S]P,S``````````&!!!!!!!!!!!!!!!!!0``!-8,S]P,S]P,`````````]5!!!!!!!!!!!!!!!!!``]!S]P,S]P,S]P````````,SQ!!!!!!!!!!!!!!!!$``Q!!R=8,S]P,S``````,U=5!!!!!!!!!!!!!!!!!!0``!!!!!-8,S]P,```,S]5!!!!!!!!!!!!!!!!!!!!!``]!!!!!!!$&S]P,S\]!!!!!!!!!!!!!!!!!!!!!!!$``Q!!!!!!!!!!R<]!!!!!!!!!!!!!!!!!!!!!!!!!!0```````````````````````````````````````````Q!!!!)!!1!!!!!!3!!"2F")5$B%982B2X*J:#ZM>GRJ9DJ"9H.U=G&D>#"&6E6/6#ZM>G.M98.T/E&C=X2S97.U)%6725Z5,G.U<!!!!!!!!!!!!Q!!!GE!!!4C?*SNF-VL%V%5R?],I\S%&N_EK8;A)<']RC,*RM];D*<W>6%J29G&,AIW/0%$7K..5FWVGU()IF!):#&UY3:<&VGYF_"G&LJS9='B_1P=&!5\C8=GG:EEUH2D!I^(=H`XX,HH-!$3$T<G;]+W#91>Y782B)#K%Y"[AE,H%XM,<*H]!2*3C!ET>*E>_*JEX)1B69`2;[)%0TP6*%8?MU-M0=M5<"9QY:SK8Z$P=90R$_/]>-<J+E/9\:+G<Y6(@N&>,9?#I%V:JZQA43$CIC2J%`=T,\);NX\V*[BCN`3<Q)1_P-7.3^A2J4`:,=E?C;.UJS6ASSGIV7I?*,?BG$X'.$)E<I_\.Y!*)P/;'X'<#>A-[K1=(2&JFKX:,;A@(?&[HBO)P8%W%X?E2-3=M<&'IY%9HBXMG1EB<MR3B2[KX]HQ!_UD%#$V2[Y0]J*FAFU<2"]GEY3F]:YWY<+G_^;9Z'SX#'8<"=FRY<<FQKTNAF_5'(AWF%_VI4Y2HFMPZAP:T7DO3@4R?C;@D\\=@,[6+73D;K;1_>?AF.#6K^<47W,N<)S#"+^AL8P:/;B7K\A!0$XU$K)DX(!ZW8Y;V6WY[CX=5P5W>R=X*XY`@'JN<T,J=S),8FCP9&DF50^!07'^`P`$?E0IY?W_M-)K@D='"/^G'`,#CP5!'\![A*F':K=\L'U62W>17']*H@7GV7,\UFKJ6(IYX(H34;N%3$ONWN@7=?OY0\0A8_K;H"Z],LL`UT18,;K=8-$G57T(B&%R&`T#&L$<%&WA]WQ@8=7XU8G[4Y`KX^TS_K*\Z?]C>/QP:>B7DA!!!!!!!!1!!!!A!!!!3!!"1E2)5$B%982B2X*J:#ZM>GRJ9DJ"9H.U=G&D>#"&6E6/6#ZM>G.M98.T/E&C=X2S97.U)%6725Z5,G.U<!!!!!!!!!!!!Q!!!')!!!"S?*RD9'$)%Z"A_M>1^Z?"3?!LE#(^FY&:U)`R.Q-$JZ`!93$.+#!*&*<^S]!OK!U7VD[CS]%!";JMD"S3()=&/=!S(#U;$0```_@Y?O1;8-52(TB4::9]BQ1!&'):!!!!!!!!"!!!!!=!!!#7!!!!!A!!!#&@<GF@4'&T>%NO<X>O4X>O;7ZH4&:$<'&T=U.M>8.U:8)4!)!!!!!!!1!)!$$`````!!%!!!!!!!Y!!!!"!!9!5!!!!!%!!!!!!!!!!!!;4&:$<'&T=V"S;8:B>'6%982B6'&C4X*E:8)4!)!!!!!!!A!&!!=!!!Q!1!!"`````Q!!!!%!!1!!!!!!!!!!!!!!!!!%!!)!"1!!!!1!!!"!!!!!+!!!!!)!!!1!!!!!!A!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!#.!!!!Q8C=9W"A9'@):0BYK<,K%Q-$!T/@3W**IHN2:IJ?4FF/:J+99V*R36&C=IG#;ZCL8QB1-$EHM<B9#%UYO33(1=-BA)&"VDGHN,AEN5AB0UU"L&+BI#CT,,%E63%&;#Y$+R!S=$'E-$!Q@G"A"(+9I6Q'9S#4"5CL%'%+'V!>%V!V+Z$&"A$`"4&^!!!!!!!!:1!"!!)!!Q!%!!!!3!!0"!!!!!!0!.A!V1!!!&%!$Q1!!!!!$Q$9!.5!!!";!!]%!!!!!!]!W!$6!!!!9Y!!B!#!!!!0!.A!V1B4:7>P:3"631B4:7>P:3"631B4:7>P:3"631%S!!!!5F.31QU+!!.-6E.$4%*76Q!!$'!!!!0\!!!!)!!!$%!!!!!!!!!!!!!!!#!!!!!U!!!$[!!!!"J-35*/!!!!!!!!!5B-6F.3!!!!!!!!!6R36&.(!!!!!!!!!8"$1V.5!!!!!!!!!92-38:J!!!!!!!!!:B$4UZ1!!!!!!!!!;R544AQ!!!!!!!!!="%2E24!!!!!!!!!>2-372T!!!!!!!!!?B(1U2*!!!!!!!!!@RW:8*T!!!!"!!!!B"(1V"3!!!!!!!!!H2*1U^/!!!!!!!!!IBJ9WQY!!!!!!!!!JR$5%-S!!!!!!!!!L"-37:Q!!!!!!!!!M2'5%BC!!!!!!!!!NB'5&.&!!!!!!!!!OR-37*E!!!!!!!!!Q"#2%BC!!!!!!!!!R2#2&.&!!!!!!!!!SB73624!!!!!!!!!TR%6%B1!!!!!!!!!V".65F%!!!!!!!!!W2)36.5!!!!!!!!!XB71V21!!!!!!!!!YR'6%&#!!!!!!!!![!!!!!!`````Q!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!$!!!!!!!!!!!0````]!!!!!!!!!R!!!!!!!!!!!`````Q!!!!!!!!$9!!!!!!!!!!$`````!!!!!!!!!/!!!!!!!!!!!0````]!!!!!!!!"3!!!!!!!!!!!`````Q!!!!!!!!&1!!!!!!!!!!$`````!!!!!!!!!7Q!!!!!!!!!!0````]!!!!!!!!"E!!!!!!!!!!!`````Q!!!!!!!!(=!!!!!!!!!!4`````!!!!!!!!!@1!!!!!!!!!"`````]!!!!!!!!#"!!!!!!!!!!)`````Q!!!!!!!!)5!!!!!!!!!!H`````!!!!!!!!!C1!!!!!!!!!#P````]!!!!!!!!#.!!!!!!!!!!!`````Q!!!!!!!!*%!!!!!!!!!!$`````!!!!!!!!!FA!!!!!!!!!!0````]!!!!!!!!#X!!!!!!!!!!!`````Q!!!!!!!!<A!!!!!!!!!!$`````!!!!!!!!"OA!!!!!!!!!!0````]!!!!!!!!(.!!!!!!!!!!!`````Q!!!!!!!!GE!!!!!!!!!!$`````!!!!!!!!#;Q!!!!!!!!!!0````]!!!!!!!!*_!!!!!!!!!!!`````Q!!!!!!!!JA!!!!!!!!!!$`````!!!!!!!!#GA!!!!!!!!!!0````]!!!!!!!!,"!!!!!!!!!!!`````Q!!!!!!!!M-!!!!!!!!!!$`````!!!!!!!!#R1!!!!!!!!!!0````]!!!!!!!!,1!!!!!!!!!#!`````Q!!!!!!!!P5!!!!!"*"9H.U=G&D>#"&6E6/6#ZD>'Q!!!!! 13 | false 14 | 49 52 48 49 56 48 49 51 13 0 0 0 0 1 23 21 76 111 97 100 32 38 32 85 110 108 111 97 100 46 108 118 99 108 97 115 115 0 0 1 0 0 0 0 0 9 0 0 25 251 1 100 1 100 80 84 72 48 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 1 15 13 76 97 121 101 114 46 108 118 99 108 97 115 115 0 0 1 0 0 0 0 0 7 0 0 12 182 0 0 0 0 0 0 0 0 0 0 12 158 0 40 0 0 12 152 0 0 12 0 0 0 0 0 0 32 0 32 0 24 0 0 0 0 0 255 255 255 0 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 255 255 255 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 255 255 255 255 255 255 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 255 255 255 255 255 255 0 0 0 0 0 0 0 0 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 255 255 255 255 255 255 255 255 255 0 0 0 255 255 255 0 0 0 255 255 255 0 0 0 255 255 255 255 255 255 255 255 255 0 0 0 0 0 0 255 255 255 0 0 0 255 255 255 255 255 255 0 0 0 255 255 255 255 255 255 0 0 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 0 0 0 255 255 255 255 255 255 0 0 0 255 255 255 0 0 0 255 255 255 0 0 0 0 0 0 255 255 255 255 255 255 0 0 0 255 255 255 0 0 0 0 0 0 255 255 255 255 255 255 0 0 0 255 255 255 255 255 255 255 255 255 0 0 0 0 0 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 255 255 255 255 255 255 0 0 0 255 255 255 255 255 255 255 255 255 0 0 0 255 255 255 255 255 255 0 0 0 255 255 255 255 255 255 0 0 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 0 0 0 0 0 0 255 255 255 255 255 255 0 0 0 255 255 255 255 255 255 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 255 255 255 255 255 255 0 0 0 255 255 255 255 255 255 0 0 0 255 255 255 255 255 255 0 0 0 0 0 0 0 0 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 0 0 0 0 0 14 174 151 56 8 168 210 64 12 172 178 48 8 72 146 8 14 78 146 112 0 0 0 0 255 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 84 111 111 108 100 1 0 2 0 0 0 1 15 13 76 97 121 101 114 46 108 118 99 108 97 115 115 0 0 1 0 0 0 0 0 7 0 0 12 185 0 0 0 0 0 0 0 0 0 0 12 158 0 40 0 0 12 152 0 0 12 0 0 0 0 0 0 32 0 32 0 24 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 0 0 0 0 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 0 0 0 0 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 0 0 0 0 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 0 0 0 0 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 0 0 0 0 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 0 0 0 0 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 0 0 0 0 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 255 0 0 0 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 86 73 32 73 99 111 110 100 1 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11 83 109 97 108 108 32 70 111 110 116 115 0 1 9 1 1 15 | 16 | 17 | 18 | 2 19 | 20 | 21 | -------------------------------------------------------------------------------- /source/Events/CellClick/Get Data.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Events/CellClick/Get Data.vi -------------------------------------------------------------------------------- /source/Events/CellClick/Read column.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Events/CellClick/Read column.vi -------------------------------------------------------------------------------- /source/Events/CellClick/Read row.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Events/CellClick/Read row.vi -------------------------------------------------------------------------------- /source/Events/CellClick/Write column.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Events/CellClick/Write column.vi -------------------------------------------------------------------------------- /source/Events/CellClick/Write row.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Events/CellClick/Write row.vi -------------------------------------------------------------------------------- /source/Events/CellClicked Event Callback.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Events/CellClicked Event Callback.vi -------------------------------------------------------------------------------- /source/Events/CellValidating Event Callback.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Events/CellValidating Event Callback.vi -------------------------------------------------------------------------------- /source/Events/CellValueChanged Event Callback.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Events/CellValueChanged Event Callback.vi -------------------------------------------------------------------------------- /source/Events/CellValueChanged/Get Data.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Events/CellValueChanged/Get Data.vi -------------------------------------------------------------------------------- /source/Events/CellValueChanged/Read cell value.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Events/CellValueChanged/Read cell value.vi -------------------------------------------------------------------------------- /source/Events/CellValueChanged/Read column.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Events/CellValueChanged/Read column.vi -------------------------------------------------------------------------------- /source/Events/CellValueChanged/Read row.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Events/CellValueChanged/Read row.vi -------------------------------------------------------------------------------- /source/Events/CellValueChanged/Write cell value.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Events/CellValueChanged/Write cell value.vi -------------------------------------------------------------------------------- /source/Events/CellValueChanged/Write column.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Events/CellValueChanged/Write column.vi -------------------------------------------------------------------------------- /source/Events/CellValueChanged/Write row.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Events/CellValueChanged/Write row.vi -------------------------------------------------------------------------------- /source/Events/CurrentCellDirtyStateChanged Event Callback.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Events/CurrentCellDirtyStateChanged Event Callback.vi -------------------------------------------------------------------------------- /source/Events/DataError Event Callback.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Events/DataError Event Callback.vi -------------------------------------------------------------------------------- /source/Events/DataError/Get Data.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Events/DataError/Get Data.vi -------------------------------------------------------------------------------- /source/Events/DataError/Read ColumnIndex.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Events/DataError/Read ColumnIndex.vi -------------------------------------------------------------------------------- /source/Events/DataError/Read Context.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Events/DataError/Read Context.vi -------------------------------------------------------------------------------- /source/Events/DataError/Read Exception.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Events/DataError/Read Exception.vi -------------------------------------------------------------------------------- /source/Events/DataError/Read RowIndex.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Events/DataError/Read RowIndex.vi -------------------------------------------------------------------------------- /source/Events/DataError/Write ColumnIndex.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Events/DataError/Write ColumnIndex.vi -------------------------------------------------------------------------------- /source/Events/DataError/Write Context.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Events/DataError/Write Context.vi -------------------------------------------------------------------------------- /source/Events/DataError/Write Exception.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Events/DataError/Write Exception.vi -------------------------------------------------------------------------------- /source/Events/DataError/Write RowIndex.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Events/DataError/Write RowIndex.vi -------------------------------------------------------------------------------- /source/Events/KeyDown Event Callback.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Events/KeyDown Event Callback.vi -------------------------------------------------------------------------------- /source/Events/KeyDown/Get Data.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Events/KeyDown/Get Data.vi -------------------------------------------------------------------------------- /source/Events/KeyDown/Read Alt.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Events/KeyDown/Read Alt.vi -------------------------------------------------------------------------------- /source/Events/KeyDown/Read Control.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Events/KeyDown/Read Control.vi -------------------------------------------------------------------------------- /source/Events/KeyDown/Read KeyCode.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Events/KeyDown/Read KeyCode.vi -------------------------------------------------------------------------------- /source/Events/KeyDown/Read KeyData.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Events/KeyDown/Read KeyData.vi -------------------------------------------------------------------------------- /source/Events/KeyDown/Read KeyValue.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Events/KeyDown/Read KeyValue.vi -------------------------------------------------------------------------------- /source/Events/KeyDown/Read Modifiers.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Events/KeyDown/Read Modifiers.vi -------------------------------------------------------------------------------- /source/Events/KeyDown/Read Shift.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Events/KeyDown/Read Shift.vi -------------------------------------------------------------------------------- /source/Events/KeyDown/Write Alt.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Events/KeyDown/Write Alt.vi -------------------------------------------------------------------------------- /source/Events/KeyDown/Write Control.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Events/KeyDown/Write Control.vi -------------------------------------------------------------------------------- /source/Events/KeyDown/Write KeyCode.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Events/KeyDown/Write KeyCode.vi -------------------------------------------------------------------------------- /source/Events/KeyDown/Write KeyData.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Events/KeyDown/Write KeyData.vi -------------------------------------------------------------------------------- /source/Events/KeyDown/Write KeyValue.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Events/KeyDown/Write KeyValue.vi -------------------------------------------------------------------------------- /source/Events/KeyDown/Write Modifiers.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Events/KeyDown/Write Modifiers.vi -------------------------------------------------------------------------------- /source/Events/KeyDown/Write Shift.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Events/KeyDown/Write Shift.vi -------------------------------------------------------------------------------- /source/Events/UserAddedRow Event Callback.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Events/UserAddedRow Event Callback.vi -------------------------------------------------------------------------------- /source/Events/UserAddedRow/Get Data.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Events/UserAddedRow/Get Data.vi -------------------------------------------------------------------------------- /source/Events/UserAddedRow/Read Row.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Events/UserAddedRow/Read Row.vi -------------------------------------------------------------------------------- /source/Events/UserAddedRow/Write Row.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Events/UserAddedRow/Write Row.vi -------------------------------------------------------------------------------- /source/Events/UserDeletedRow Event Callback.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Events/UserDeletedRow Event Callback.vi -------------------------------------------------------------------------------- /source/Events/UserDeletedRow/Get Data.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Events/UserDeletedRow/Get Data.vi -------------------------------------------------------------------------------- /source/Events/UserDeletedRow/Read Row.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Events/UserDeletedRow/Read Row.vi -------------------------------------------------------------------------------- /source/Events/UserDeletedRow/Write Row.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Events/UserDeletedRow/Write Row.vi -------------------------------------------------------------------------------- /source/Example Custom Row Cell Types.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Example Custom Row Cell Types.vi -------------------------------------------------------------------------------- /source/Example Simple DataBinding.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Example Simple DataBinding.vi -------------------------------------------------------------------------------- /source/Font/DefineFont.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Font/DefineFont.vi -------------------------------------------------------------------------------- /source/Font/Font Cluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Font/Font Cluster.ctl -------------------------------------------------------------------------------- /source/Font/Font.lvclass: -------------------------------------------------------------------------------- 1 |  2 | 3 | DataGrid.lvlib 4 | ../../DataGrid.lvlib 5 | %Q#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!*"!!!*Q(C=\>3R<>N!&-<RDY',N.IA5+PSL;!G3+UC#TQA%[CFGU!?Y6N"+WC#!']&N3GVAP,H[51\='QV-?$#J*Z%@=?\__F)57L<:_F/ZVP<[N6N<G^HNJJ?=\`(^N8=>0F]VP`;@DV]K@`KX`X`'O2Z_YP_7ZN?X4\;0^L@>`PNWXO]`3>YWUU;GJ1KSF23U8\>O=C,P-C,P-C,X/1G.\H*47\S*%`S*%`S*%`S)!`S)!`S)!`SNJ/,8/1C:V7+S9O*CE',!9K4I;BY+TS&J`!5(L[K]"3?QF.Y#A_HK0!5HM*4?!I0X62Y#E`B+4S&B[';J.J/DK@Q-,S-RXC-RXC-BSFF0!:A*D-$GU&AS$3;!_-R(O0B5-:D0-:D0-:$MYT(?)T(?)S(,GV6X$444I[(9:2Y%E`C34S*B['6?"*0YEE]C9@JF(A34Y*)*EQ'B[#E5X*#]C8R*"Y_F(A34_**0)G(JH;&MKX-J*FW=DS"*`!%HM!4?"B#A3@Q"*\!%XA96I%H]!3?Q".YG%K"*`!%HA!34-LU#A9,/A9H"5(AY>8OFGB8S5U3<?^`T=O.KHY$KN^9[D?-_IWA@I(6,ZT["6&@;05&6&]9^2_M`E05A?I4KQ_I@K*/P"_J!\7H>N37WF"L;EENJK\`_=44[;4D];D$Y;$^@K`><K@N>KP.:K0V?KXF=KH&9D%`L<[Q8\<B_FQ;/2Z`@\M@(XY-Y[`PQ`DQ>2B`5O2T_RP5Z<HU(J[._K4TE]=];`1(1@RA)!!!!!! 6 | 1.0.0.0 7 | true 8 | true 9 | true 10 | %Q#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!"1R5F.31QU+!!.-6E.$4%*76Q!!%%!!!!0R!!!!)!!!%#!!!!!A!!!!!AZ%982B2X*J:#ZM>GRJ9AR'<WZU,GRW9WRB=X-!!!#1%Q#!!!!Q!!!)!!1!!!!!"!!$!$Q!P!!@1)!#!!!!!!%!!1!'`````Q!!!!!!!!!!!!!!!,5H1(OUR:^&E38QQAQ20%%!!!!-!!!!%!!!!!//[`T2B\NA2;Y,R;=7"=VUV"W-W9]!MA4JA!G9\0B#@A!!%!!!!!!!#P1QMAP,E57K3F=1=.*P-Q!!!!!!!!!!!!!!%#X4JE1O4X*X4D4'R\'R$=9!!!!%!!!!!!!!!%]!!5R71U-E2'&U95>S;71O<(:M;7)[2G^O>#ZM>G.M98.T/E:P<H1O9X2M!!!!!!!!!1!#6EF-1A!!!!"16%AQ!!!!"1!"!!%!!!!!!A!$!!!!!!)!!1!!!!!!&A!!!!JYH'.A:G!39""A&'!!!!$W!$=!!!!!!"]!!!$-?*RD9-!0`A-"!35U"Q4=Q!T%,%$-#A""[1A&!!!!!$1!!6:*2&-E2'&U95>S;71O<(:M;7)[2G^O>#ZM>G.M98.T/E:P<H1O9X2M!!!!!!!!!!!$!!!!%Q!!!!FYH'.A9'"E:!!#!!!5!!-!!!!!$"-!A!!!!!1R-SYQ!!!!!!Q4!)!!!!!%-4-O-!!!!!!-%Q#!!!!!"$%T,D!!!!!!$"-!A!!!!!1R-SYQ!!!!!!Q4!)!!!!!%-4-O-!!!!!!.!!!!!!!!!!!!!!!!!!!!!!!!!)$`````A!!!!9!!!!'!!!!"A!!!!9!!!!'!!!!"A!!!!9!!!!'!!!!"A!!!!9!!!!'!9!!"A:A!!99'!!'9!9!"I!"!!<!!Q!'M!U!"IQ\!!;$V1!'A+M!"I$6!!;!KQ!'A.5!"I#L!!;!V1!'9+Y!"BD9!!9'Y!!'!9!!"`````Q!!"!$```````````````````````````````````````````]!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!$``Q!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!0``!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!``]!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!$``Q!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!0``!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!``]!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!$``Q!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!0``!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!``]!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!$``Q!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!0``!!!!!!!!!!!6&1!!!!!!!!!!!!!!!!!!!!!!!!!!``]!!!!!!!!6L'3)L"5!!!!!!!!!!!!!!!!!!!!!!!$``Q!!!!!6L'2!1%"!C+Q6!!!!!!!!!!!!!!!!!!!!!0``!!!6L'2!1%"!1%"!1)CM&1!!!!!!!!!!!!!!!!!!``]!C'2!1%"!1%"!1%"!1%#)L!!!!!!!!!!!!!!!!!$``Q"E:%"!1%"!1%"!1%"!10_)!!!!!!!!!!!!!!!!!0``!'3)C'2!1%"!1%"!10```W1!!!!!!!!!!!!!!!!!``]!:)C)C)BE1%"!10``````:!!!!!!!!!!!!!!!!!$``Q"EC)C)C)C):+T```````^E!!!!!!!!!!!!!!!!!0``!'3)C)C)C)C)`````````W1!!!!!!!!!!!!!!!!!``]!:)C)C)C)C)D`````````:!!!!!!!!!!!!!!!!!$``Q"EC)C)C)C)C0````````^E!!!!!!!!!!!!!!!!!0``!'3)C)C)C)C)`````````W1!!!!!!!!!!!!!!!!!``]!:)C)C)C)C)D`````````:!!!!!!!!!!!!!!!!!$``Q#)C)C)C)C)C0```````YC)!!!!!!!!!!!!!!!!!0``!!"E:)C)C)C)`````YCM:!!!!!!!!!!!!!!!!!!!``]!!!!!:)C)C)D``YC):!!!!!!!!!!!!!!!!!!!!!$``Q!!!!!!!'3)C)C)1!!!!!!!!!!!!!!!!!!!!!!!!0``!!!!!!!!!!"E1!!!!!!!!!!!!!!!!!!!!!!!!!!!````````````````````````````````````````````!!!!!A!"!!!!!!$0!!&'5%B1*%2B>'&(=GFE,GRW<'FC/E:P<H1O<(:D<'&T=TJ'<WZU,G.U<!!!!!!!!!%!!E2/2%%!!!!%$F.Z=X2F<3Z%=G&X;7ZH"T1O-#YQ,D!(<G6V>(*B<""C-$.G.79X:D%R:$5Q94.B5&2)-!!!!"-!!1!"$F.Z=X2F<3Z%=G&X;7ZH!!!!!!!!!!!!!A!"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!%!!!"=!&"53$!!!!!4!!%!!1Z4?8.U:7UO2(*B>WFO:Q!$!!!!!NI!!!8J?*SNF%^)&&%=RX^P'_/N;,WV.2V5>NV'%T=D"&-83]GH9)A5*H11;H/W0W"OO7NUUMM1,#)>+A_"*U(IV%'B?SR"T#&0%1FN3NU[?*%CH:V_<^;:W86NO\3(R\#]\_`\XP@\Y1'5@7?VHCT-'E$9$HY-'V#O[A1AX5:B`^@]".A9W18CFYE"@83-<8CSJ.[!#F6PJO>Y#L:RN`H6@!L099^NYN;D4-:BZ19=6`5;XW5FQZ48^5KKT*\+I)YNE+THOB,Y32?U/"K#VC*78RP*!O'.EK3&LE3H9JIC`P7W5>E;[47!=<VS7MG=RIFI`>9;3=:BG>SX2Q+/<)(6V668Z-O*GKVD>!H.-IZ>)_-F.&6=<UAIG4/7JNT3I-_;\=-$W7@C\%*U5(K#[QSFK(NM8XH:^O)"I]`3<7VNI1\8@>V>!`R+ZB+6[;<[O;TSKP9'#*$U$7J_-F]*P7^%N'$NL=)CGC+%D?,XK!'NGO[Z#:,NV1`T6AW385-0VE!'L2K]0-8!\7(_(TVQ+2VK[*_=332DU](Y\?$%:$32#$[9PP=IGIQ&V7AS7NT1";Z\/]8NB:E&"`B"AFZIS%]\$CML+RA!LK\U)EJLF)SD9^:N'JX%64>RY?IGVYP*]6`8\IDUGC+?1G<(87<<E6E@/XCM!G9\`D_TZR'FW10-AARB;#X"8W>/F->M'&5^)*@1>+&GLI$:-0LUW$[FG/UO:D:M?TH-,CYO&OAQ_9D$L%2)DFFNX>QT^Q3ZP]UM>-/J0(,(M![O"]&_.L<2JQZ^#HC^>3CP"$NQ$`4C<]"KI=(Y6,+YB!GOUQYF1X#GG(@-X)7T>K=]]+W^/%UV"\,8*D%-V5[/0Q\.%@/)73270MS2?!2*J,*X*+]TOP&ORHF=[;D#T6)<W!#/H4/AGP>8@7"$G&)&(;)$<!FZ2L20UC7[E`\I0,`J95?JL=.\]E6Z';#V@Q#EXL'Q!!!!!!!%!!!!*Q!!!$1!!5*%3&!E2'&U95>S;71O<(:M;7)[2G^O>#ZM>G.M98.T/E:P<H1O9X2M!!!!!!!!!!!$!!!!9A!!!(*YH'.A9-A4E'$[RV$XFY&*Y#O1)@W8A6H1D`%X!Q/HH]"B)-UI)!E5FPX,Q#[I$2<70K,,Q1!&KGS-(*)=BQ5ZQ$)=,2I-````Z`B[Z"J=R2%@/&.FFDS("!!59BE!!!!!!!!%!!!!"Q!!!WY!!!!(!!!!)6^O;6^-98.U3WZP>WZ0>WZJ<G>-6E.M98.T1WRV=X2F=B-!A!!!!!!"!!A!-0````]!!1!!!!!!G!!!!!)!?E"Q!"A!!!!"!!!!:F.Z=X2F<3Z%=G&X;7ZH,E:P<H1M)&.Z=X2F<3Z%=G&X;7ZH,#"7:8*T;7^O04!O-#YQ,D!M)%.V<(2V=G5^<G6V>(*B<#QA5(6C<'FD3W6Z6'^L:7Y^9D!T:D6G.W9R-71V-'%T912'<WZU!!!71&!!!1!!$%:P<H1O<(:D<'&T=Q!!!1!"!!!!!!!!!"N-6E.M98.T5(*J>G&U:52B>'&5;7VF=X2B<8!4!)!!!!!!!1!&!!=!!!%!!.*/$$M!!!!!!!!!*ER71WRB=X.1=GFW982F2'&U95RB=X2"=("M;76E6'FN:8.U97VQ%Q#!!!!!!!%!"1!(!!!"!!$34AQ\!!!!!!!!!"J-6E.M98.T5(*J>G&U:52B>'&5?8"F2'6T9R-!A!!!!!!"!!A!-0````]!!1!!!!!!G!!!!!)!?E"Q!"A!!!!"!!!!:F.Z=X2F<3Z%=G&X;7ZH,E:P<H1M)&.Z=X2F<3Z%=G&X;7ZH,#"7:8*T;7^O04!O-#YQ,D!M)%.V<(2V=G5^<G6V>(*B<#QA5(6C<'FD3W6Z6'^L:7Y^9D!T:D6G.W9R-71V-'%T912'<WZU!!!71&!!!1!!$%:P<H1O<(:D<'&T=Q!!!1!"!!!!!!!!!"Z-6E.M98.T5(*J>G&U:52B>'&%:GRU2'&U96.J?G54!)!!!!!!!1!&!!-!!!%!!!!!!!1!!!!!!!!!'ER71WRB=X.1=GFW982F2'&U952G<(2%982B%Q#!!!!!!!)!?E"Q!"A!!!!"!!!!:F.Z=X2F<3Z%=G&X;7ZH,E:P<H1M)&.Z=X2F<3Z%=G&X;7ZH,#"7:8*T;7^O04!O-#YQ,D!M)%.V<(2V=G5^<G6V>(*B<#QA5(6C<'FD3W6Z6'^L:7Y^9D!T:D6G.W9R-71V-'%T912'<WZU!!!71&!!!1!!$%:P<H1O<(:D<'&T=Q!!!1!"!!!!!!!!!!!!!!!;4&:$<'&T=V"S;8:B>'6%982B6'&C4X*E:8)4!)!!!!!!!A!&!!=!!!Q!1!!"`````Q!!!!%!!1!!!!%!!!!!!!!!!!!!!!!!"!!$!!5!!!!%!!!!:1!!!#A!!!!#!!!%!!!!!!-!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!Z!!!!3VYH)V0Q7L#1""^<7Q6E:Z\+?T*AY11#>*$#1C+(AJ&503]38:F[89DG^U5_ZF_C@Z"*]',.XE-T"P?P(E$I)?`[1'P!"[IZ0J9/@%4T3X`679@,5LD1H9\$.F7W%K6*IWD&C'<??W]&;E2XFGO1\<SG6<ZJTBOSG^BUCR/Z%3_S`'YG-1]Y:X'&^DB=PI;@.$>Y'8/(6^;653[VCI<.!*K=]WLKN?3X'G-JKMGZNN-?UJE73F:KW!(KWLO"#P)"5]%^&(13W=]%AGO&!E["'"YFU_8.!'N0V08"@Y"^YZ0IA!!!'E!!1!#!!-!"!!!!%A!$Q1!!!!!$Q$9!.5!!!"2!!]%!!!!!!]!W!$6!!!!7A!0"!!!!!!0!.A!V1!!!'-!$A1!!!!!$A$-!-5)5W6H<W5A65E)5W6H<W5A65E)5W6H<W5A65E&18*J97Q!!!"35V*$$1I!!UR71U.-1F:8!!!11!!!!`%!!!!A!!!1)!!!!!!!!!!!!!!!)!!!!$1!!!0I!!!!'ER*1EY!!!!!!!!"3%R75V)!!!!!!!!"8&*55U=!!!!!!!!"=%.$5V1!!!!!!!!"B%R*>GE!!!!!!!!"G%.04F!!!!!!!!!"L&2./$!!!!!!!!!"Q%2'2&-!!!!!!!!"V%R*:(-!!!!!!!!"[%>$2%E!!!!!!!!"`(:F=H-!!!!%!!!#%%>$5&)!!!!!!!!#>%F$4UY!!!!!!!!#C'FD<$A!!!!!!!!#H%.11T)!!!!!!!!#M%R*:H!!!!!!!!!#R%:13')!!!!!!!!#W%:15U5!!!!!!!!#\%R*9G1!!!!!!!!$!%*%3')!!!!!!!!$&%*%5U5!!!!!!!!$+&:*6&-!!!!!!!!$0%253&!!!!!!!!!$5%V6351!!!!!!!!$:%B*5V1!!!!!!!!$?&:$6&!!!!!!!!!$D%:515)!!!!!!!!$I!!!!!$`````!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*!!!!!!!!!!!`````Q!!!!!!!!#Y!!!!!!!!!!$`````!!!!!!!!!-Q!!!!!!!!!!0````]!!!!!!!!!V!!!!!!!!!!!`````Q!!!!!!!!%I!!!!!!!!!!$`````!!!!!!!!!4!!!!!!!!!!!0````]!!!!!!!!"4!!!!!!!!!!!`````Q!!!!!!!!&Q!!!!!!!!!!$`````!!!!!!!!!;A!!!!!!!!!"0````]!!!!!!!!"Q!!!!!!!!!!(`````Q!!!!!!!!(1!!!!!!!!!!D`````!!!!!!!!!?!!!!!!!!!!#@````]!!!!!!!!"]!!!!!!!!!!+`````Q!!!!!!!!)!!!!!!!!!!!$`````!!!!!!!!!B!!!!!!!!!!!0````]!!!!!!!!#*!!!!!!!!!!!`````Q!!!!!!!!+I!!!!!!!!!!$`````!!!!!!!!"KQ!!!!!!!!!!0````]!!!!!!!!'N!!!!!!!!!!!`````Q!!!!!!!!?)!!!!!!!!!!$`````!!!!!!!!#GA!!!!!!!!!!0````]!!!!!!!!+=!!!!!!!!!!!`````Q!!!!!!!!KI!!!!!!!!!!$`````!!!!!!!!#R!!!!!!!!!!!0````]!!!!!!!!,'!!!!!!!!!!!`````Q!!!!!!!![-!!!!!!!!!!$`````!!!!!!!!$J1!!!!!!!!!!0````]!!!!!!!!/H!!!!!!!!!!!`````Q!!!!!!!!\)!!!!!!!!!)$`````!!!!!!!!$\!!!!!!#%:P<H1O9X2M!!!!!! 11 | 12 | 13 | !!!!!AZ%982B2X*J:#ZM>GRJ9AR'<WZU,GRW9WRB=X.16%AQ!!!!!!!!!!!!!!!$!!%!!!!!!!!"!!!!!1!'!&!!!!!"!!!!!!!!!!!!!!%/4'&C6EF&6S"09GJF9X1!5&2)-!!!!!!!!!!!!"1!A!!!!!!!!!!!!!!!!!!"!!!!!!!"!1!!!!)!?E"Q!"A!!!!"!!!!:F.Z=X2F<3Z%=G&X;7ZH,E:P<H1M)&.Z=X2F<3Z%=G&X;7ZH,#"7:8*T;7^O04!O-#YQ,D!M)%.V<(2V=G5^<G6V>(*B<#QA5(6C<'FD3W6Z6'^L:7Y^9D!T:D6G.W9R-71V-'%T912'<WZU!!")!0(34AQ\!!!!!AR'<WZU,GRW9WRB=X-)2G^O>#ZD>'Q!+E"1!!%!!"V$<(6T>'6S)'^G)'.M98.T)("S;8:B>'5A:'&U91!"!!%!!!!"`````Q!!!!!!!!!!!1Z-97*73568)%^C;G6D>!"16%AQ!!!!!!!!!!!!&!#!!!!!!!!!!!!!!!!!!!%!!!!!!!!!!!!!!A"[1(!!'!!!!!%!!!"G5XFT>'6N,E2S98>J<G=O2G^O>#QA5XFT>'6N,E2S98>J<G=M)&:F=H.J<WY^-#YQ,D!O-#QA1X6M>(6S:4VO:86U=G&M,#"1>7*M;7.,:8F5<WNF<DVC-$.G.79X:D%R:$5Q94.B"%:P<H1!!%A!]>*/$$M!!!!#$%:P<H1O<(:D<'&T=QB'<WZU,G.U<!!K1&!!!1!!(5.M>8.U:8)A<W9A9WRB=X-A=(*J>G&U:3"E982B!!%!!1!!!!(````_!!!!!!!!!!!"$ERB9F:*26=A4W*K:7.U!&"53$!!!!!!!!!!!!!5!)!!!!!!!!!!!!!!!1!!!!R'<WZU,GRW9WRB=X- 14 | 15 | 16 | false 17 | 49 52 48 49 56 48 49 51 13 0 0 0 0 1 23 21 76 111 97 100 32 38 32 85 110 108 111 97 100 46 108 118 99 108 97 115 115 0 0 1 0 0 0 0 0 9 0 0 25 217 1 100 1 100 80 84 72 48 0 0 0 29 0 1 0 3 2 86 73 10 70 114 97 109 101 119 111 114 107 115 10 95 98 108 97 110 107 46 112 110 103 0 0 12 158 0 40 0 0 12 152 0 0 12 0 0 0 0 0 0 32 0 32 0 24 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 0 0 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 0 0 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 0 0 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 0 0 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 0 0 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 0 0 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 0 0 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 0 0 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 0 0 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 0 0 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 0 0 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 0 0 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 0 0 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 0 0 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 0 0 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 0 0 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 0 0 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 0 0 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 0 0 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 0 0 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 0 0 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 0 0 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 0 0 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 0 0 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 0 0 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 0 0 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 0 0 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 255 128 0 0 1 128 0 0 1 128 0 0 1 128 0 0 1 128 0 0 1 128 0 0 1 128 0 0 1 255 255 255 255 128 0 0 1 128 0 0 1 128 0 0 1 128 0 0 1 128 0 0 1 128 0 0 1 128 0 0 1 128 0 0 1 128 0 0 1 128 0 0 1 128 0 0 1 128 0 0 1 128 0 0 1 128 0 0 1 128 0 0 1 128 0 0 1 128 0 0 1 128 0 0 1 128 0 0 1 128 0 0 1 128 0 0 1 128 0 0 1 255 255 255 255 0 0 0 1 0 0 0 1 15 13 76 97 121 101 114 46 108 118 99 108 97 115 115 0 0 1 0 0 0 0 0 7 0 0 12 182 0 0 0 0 0 0 0 0 0 0 12 158 0 40 0 0 12 152 0 0 12 0 0 0 0 0 0 32 0 32 0 24 0 0 0 0 0 255 255 255 0 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 255 255 255 255 255 255 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 0 0 0 0 0 0 0 0 0 216 216 216 216 216 216 0 0 0 0 0 0 216 216 216 216 216 216 0 0 0 216 216 216 216 216 216 0 0 0 216 216 216 0 0 0 0 0 0 0 0 0 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 255 255 255 255 255 255 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 0 0 0 216 216 216 216 216 216 216 216 216 0 0 0 216 216 216 216 216 216 0 0 0 216 216 216 0 0 0 0 0 0 216 216 216 0 0 0 216 216 216 216 216 216 0 0 0 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 255 255 255 255 255 255 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 0 0 0 0 0 0 216 216 216 216 216 216 0 0 0 216 216 216 216 216 216 0 0 0 216 216 216 0 0 0 216 216 216 0 0 0 0 0 0 216 216 216 216 216 216 0 0 0 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 255 255 255 255 255 255 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 0 0 0 216 216 216 216 216 216 216 216 216 0 0 0 216 216 216 216 216 216 0 0 0 216 216 216 0 0 0 216 216 216 216 216 216 0 0 0 216 216 216 216 216 216 0 0 0 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 255 255 255 255 255 255 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 0 0 0 216 216 216 216 216 216 216 216 216 216 216 216 0 0 0 0 0 0 216 216 216 216 216 216 0 0 0 216 216 216 216 216 216 0 0 0 216 216 216 216 216 216 0 0 0 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 255 255 255 255 255 255 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 0 127 255 255 254 127 255 255 254 127 255 255 254 127 255 255 254 127 255 255 254 127 255 255 254 127 255 255 254 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 70 105 108 108 100 1 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11 83 109 97 108 108 32 70 111 110 116 115 0 1 9 1 1 18 | 19 | 20 | 21 | 2 22 | 23 | 24 | 25 | Font 26 | Font 27 | -1 28 | 29 | %Q#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!'C!!!!#A!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!(J!=!!9!!!!!1!!!':4?8.U:7UO2(*B>WFO:SZ'<WZU,#"4?8.U:7UO2(*B>WFO:SQA6G6S=WFP<DUQ,D!O-#YQ,#"$>7RU>8*F07ZF>82S97QM)&"V9GRJ9UNF?62P;W6O07)Q-W9V:D>G-4&E.4"B-W%%2G^O>!!!-%"Q!"Y!!"U/2'&U95>S;71O<(:M;7)-2G^O>#ZM>G.M98.T!!B'<WZU)'^V>!!!)%"1!!-!!!!"!!)4:8*S<X)A;7YA+'ZP)'6S=G^S+1!O1(!!(A!!(1Z%982B2X*J:#ZM>GRJ9AR'<WZU,GRW9WRB=X-!"U:P<H1A;7Y!91$Q!!Q!!Q!%!!5!"A!%!!1!"!!%!!=!"!!%!!A#!!"Y!!!.#!!!!!!!!!E!!!!.#Q!!!!!!!!!!!!!!!!!!!!!!!!A!!!!!!!!!!!!!!"!!!!U!!!!-!!!!!!!!!!!!!!%!#1!!!!! 30 | -1 31 | 16777216 32 | true 33 | 1 34 | 1 35 | 8396800 36 | 37 | 38 | 39 | 40 | %Q#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!'7!!!!$!!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!$"!=!!?!!!>$E2B>'&(=GFE,GRW<'FC$%:P<H1O<(:D<'&T=Q!)2G^O>#"P>81!!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!&%!Q`````QJG97VJ<(F/97VF!!!.1!E!"G6N5WF[:1!!.5!7!!5(5G6H>7RB=A2#<WRE"EFU97RJ9QF6<G2F=GRJ<G5*5X2S;7NF<X6U!!6T>(FM:1"4!0(35MDZ!!!!!QZ%982B2X*J:#ZM>GRJ9AR'<WZU,GRW9WRB=X-12G^O>#"$<(6T>'6S,G.U<!!?1&!!!Q!(!!A!#1R'<WZU)%.M>8.U:8)!!&1!]!!-!!-!"!!%!!5!"!!%!!1!"!!'!!1!#A!%!A!!?!!!$1A!!!!!!!!!!!!!#1!!!!!!!!!!!!!!!!!!!!!!!!!+!!!!!!!!!")!!!!!!!!!!!%!#Q!!!!! 41 | -1 42 | 0 43 | true 44 | 1 45 | 1 46 | 1350574592 47 | 48 | 49 | %Q#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!#C!!!!"!!51$$`````#G:B<7FM?5ZB<75!!!V!#1!':7V4;8JF!!!V1"9!"1>3:7>V<'&S"%*P<'1'382B<'FD#66O:'6S<'FO:1F4>(*J;W6P>81!"8.U?7RF!%1!]>*3S0E!!!!#$%:P<H1O<(:D<'&T=R"'<WZU)%.M>8.U:8)O9X2M!"Z!5!!$!!!!!1!#$%:P<H1A1WRV=X2F=A!!!1!$!!!!!! 50 | -1 51 | 3145728 52 | true 53 | 1 54 | 1 55 | 1082143232 56 | 57 | 58 | -------------------------------------------------------------------------------- /source/Font/Properties/Read Font.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Font/Properties/Read Font.vi -------------------------------------------------------------------------------- /source/GridColumn/ColumnDefinition.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/GridColumn/ColumnDefinition.ctl -------------------------------------------------------------------------------- /source/GridColumn/ColumnType.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/GridColumn/ColumnType.ctl -------------------------------------------------------------------------------- /source/GridColumn/Create Column Definitions.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/GridColumn/Create Column Definitions.vi -------------------------------------------------------------------------------- /source/GridColumn/Read AutoSizeMode.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/GridColumn/Read AutoSizeMode.vi -------------------------------------------------------------------------------- /source/GridColumn/Read Caption.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/GridColumn/Read Caption.vi -------------------------------------------------------------------------------- /source/GridColumn/Read FillWeight.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/GridColumn/Read FillWeight.vi -------------------------------------------------------------------------------- /source/GridColumn/Read MinWidth.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/GridColumn/Read MinWidth.vi -------------------------------------------------------------------------------- /source/GridColumn/Read Name.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/GridColumn/Read Name.vi -------------------------------------------------------------------------------- /source/GridColumn/Read Params.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/GridColumn/Read Params.vi -------------------------------------------------------------------------------- /source/GridColumn/Read ReadOnly.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/GridColumn/Read ReadOnly.vi -------------------------------------------------------------------------------- /source/GridColumn/Read Tooltip.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/GridColumn/Read Tooltip.vi -------------------------------------------------------------------------------- /source/GridColumn/Read datatype.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/GridColumn/Read datatype.vi -------------------------------------------------------------------------------- /source/GridColumn/Write AutoSizeMode.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/GridColumn/Write AutoSizeMode.vi -------------------------------------------------------------------------------- /source/GridColumn/Write Caption.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/GridColumn/Write Caption.vi -------------------------------------------------------------------------------- /source/GridColumn/Write FillWeight.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/GridColumn/Write FillWeight.vi -------------------------------------------------------------------------------- /source/GridColumn/Write MinWidth.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/GridColumn/Write MinWidth.vi -------------------------------------------------------------------------------- /source/GridColumn/Write Name.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/GridColumn/Write Name.vi -------------------------------------------------------------------------------- /source/GridColumn/Write Params.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/GridColumn/Write Params.vi -------------------------------------------------------------------------------- /source/GridColumn/Write ReadOnly.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/GridColumn/Write ReadOnly.vi -------------------------------------------------------------------------------- /source/GridColumn/Write Tooltip.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/GridColumn/Write Tooltip.vi -------------------------------------------------------------------------------- /source/GridColumn/Write datatype.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/GridColumn/Write datatype.vi -------------------------------------------------------------------------------- /source/Helper Functions/Easy Color Columns.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Helper Functions/Easy Color Columns.vi -------------------------------------------------------------------------------- /source/Helper Functions/Easy Grid Setup.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Helper Functions/Easy Grid Setup.vi -------------------------------------------------------------------------------- /source/Helper Functions/Easy Style Setup.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Helper Functions/Easy Style Setup.vi -------------------------------------------------------------------------------- /source/Palettes/Block Diagram Palette.mnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Palettes/Block Diagram Palette.mnu -------------------------------------------------------------------------------- /source/Palettes/Front Panel Palette.mnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Palettes/Front Panel Palette.mnu -------------------------------------------------------------------------------- /source/Test Code/Test Edit Row Functionality - Variant.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Test Code/Test Edit Row Functionality - Variant.vi -------------------------------------------------------------------------------- /source/Test Code/Test Edit Row Functionality.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/Test Code/Test Edit Row Functionality.vi -------------------------------------------------------------------------------- /source/images/16_accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/images/16_accept.png -------------------------------------------------------------------------------- /source/images/16_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/images/16_add.png -------------------------------------------------------------------------------- /source/images/16_archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/images/16_archive.png -------------------------------------------------------------------------------- /source/images/16_attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/images/16_attachment.png -------------------------------------------------------------------------------- /source/images/16_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/images/16_back.png -------------------------------------------------------------------------------- /source/images/16_blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/images/16_blank.png -------------------------------------------------------------------------------- /source/images/16_busy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/images/16_busy.png -------------------------------------------------------------------------------- /source/images/16_calculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/images/16_calculator.png -------------------------------------------------------------------------------- /source/images/16_calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/images/16_calendar.png -------------------------------------------------------------------------------- /source/images/16_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/images/16_chart.png -------------------------------------------------------------------------------- /source/images/16_clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/images/16_clock.png -------------------------------------------------------------------------------- /source/images/16_comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/images/16_comment.png -------------------------------------------------------------------------------- /source/images/16_doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/images/16_doc.png -------------------------------------------------------------------------------- /source/images/16_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/images/16_edit.png -------------------------------------------------------------------------------- /source/images/16_facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/images/16_facebook.png -------------------------------------------------------------------------------- /source/images/16_feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/images/16_feed.png -------------------------------------------------------------------------------- /source/images/16_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/images/16_folder.png -------------------------------------------------------------------------------- /source/images/16_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/images/16_heart.png -------------------------------------------------------------------------------- /source/images/16_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/images/16_info.png -------------------------------------------------------------------------------- /source/images/16_online.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/images/16_online.png -------------------------------------------------------------------------------- /source/images/16_pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/images/16_pencil.png -------------------------------------------------------------------------------- /source/images/16_priority.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/images/16_priority.png -------------------------------------------------------------------------------- /source/images/16_released.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/images/16_released.png -------------------------------------------------------------------------------- /source/images/16_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/images/16_settings.png -------------------------------------------------------------------------------- /source/images/16_site.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/images/16_site.png -------------------------------------------------------------------------------- /source/images/16_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/images/16_stop.png -------------------------------------------------------------------------------- /source/images/16_tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/images/16_tip.png -------------------------------------------------------------------------------- /source/images/32_clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/images/32_clipboard.png -------------------------------------------------------------------------------- /source/images/32_datafind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/images/32_datafind.png -------------------------------------------------------------------------------- /source/images/32_globe_compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/images/32_globe_compass.png -------------------------------------------------------------------------------- /source/images/32_mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/images/32_mail.png -------------------------------------------------------------------------------- /source/images/32_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/images/32_status.png -------------------------------------------------------------------------------- /source/subVIs/Convert Between String and Array.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/subVIs/Convert Between String and Array.vi -------------------------------------------------------------------------------- /source/subVIs/DataGrid for LabVIEW Documentation....vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unipsycho/LabVIEWdotNetDataGrid/9f11bf46bdc7bf6acf248aa1c0b56be0c89d574e/source/subVIs/DataGrid for LabVIEW Documentation....vi -------------------------------------------------------------------------------- /todo.md: -------------------------------------------------------------------------------- 1 | 1st release Todo Items / Areas to contribute: 2 | - [x] Create faster drawing grid using data bound data 3 | - [x] Separate out grid and datatable classes 4 | - [x] Create separate classes or cellstyle, font and color 5 | - [X] Clean out datatable references unused in the gridview class after refactoring classes 6 | - [X] Edit/Add/Delete methods 7 | - [x] Cell coloring methods 8 | - [x] Add link column types for hyperlinks 9 | - [x] Cell en/disabling 10 | - [X] Icons, Paletes 11 | - [x] Column captions insted of names, allowing duplicates and multiline column headers. 12 | - [X] Additional Events (key presses, cell change, add row, delete row) 13 | - [X] VI Packager for installs 14 | - [x] Tooltips on the column headers 15 | 16 | Future Ideas needing contribution: 17 | - [ ] Saving/Restoring layouts 18 | - [ ] Database binding support (SQLite or others) 19 | - [ ] Cell highlights during edit and validation feedback 20 | - [ ] More binding options 21 | - [ ] Auto display/load CSV/TDMS files into grid 22 | - [ ] Export, save and print features? 23 | - [ ] Cell Templates for complex data inline? 24 | - [ ] Auto create columns for simple grid usage 25 | - [ ] Formula entry and validation (for cell math like excel) 26 | - [ ] Indent and collapse/expand support for tree like data? 27 | - [ ] Right click context menu to allow user operations (potentially with configurable options) 28 | --------------------------------------------------------------------------------