Click here to Skip to main content
15,886,110 members
Articles / Programming Languages / Visual Basic

A Study of Gage Repeatability and Reproducibility for Automated Measuring Systems using VB.NET

Rate me:
Please Sign up or sign in to vote.
5.00/5 (11 votes)
24 Jan 2015CPOL6 min read 52.8K   1.3K   5  
Gage R&R using VB.NET.
'Author  : Syed Shanu
'Company : Telstar-Hommel
'Date    : 2007-06-22
'Description :This Class is  created for Datagrid column and row no return for changing the coloumn color,
Option Strict Off
Option Explicit On 

Imports Microsoft.VisualBasic
Imports System

Namespace ThetaMLA


    Public Class DataGridEnableEventArgs
        Inherits EventArgs
        Private _column As Integer
        Private _row As Integer
        Private _enablevalue As Boolean
        'Fields
        'Constructors
        'Methods
        Public Sub New(ByVal row As Integer, ByVal col As Integer, ByVal val As Boolean)
            MyBase.New()
            _row = row
            _column = col
            _enablevalue = val

        End Sub
        Public Property Column() As Integer
            Get

                Return _column

            End Get
            Set(ByVal Value As Integer)

                _column = Value

            End Set
        End Property
        Public Property Row() As Integer
            Get

                Return _row

            End Get
            Set(ByVal Value As Integer)

                _row = Value

            End Set
        End Property
        Public Property EnableValue() As Boolean
            Get

                Return _enablevalue

            End Get
            Set(ByVal Value As Boolean)

                _enablevalue = Value

            End Set
        End Property
    End Class
End Namespace


By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Team Leader
India India
Microsoft MVP | Code Project MVP | CSharp Corner MVP | Author | Blogger and always happy to Share what he knows to others. MyBlog

My Interview on Microsoft TechNet Wiki Ninja Link

Comments and Discussions