text
stringlengths
43
2.01M
Public Class Categoria Dim _nombre, _abreviatura, _estado As String Dim _idCategoria As Integer Public Property idCategoria As String Get Return _idCategoria End Get Set(Value As String) _idCategoria = Value End Set End Property Public Proper...
Imports VBChess.Shared Public Class King Inherits ChessPiece Public Sub New(owner As Player, board As ChessBoard, position As Point) MyBase.New(owner, board, position) End Sub Public Overrides ReadOnly Property PawnType As PawnTypes Get Return PawnTypes.King End Ge...
Imports System.Globalization Public NotInheritable Class NodeIsFolderOrFile Implements IValueConverter Public Function Convert(value As Object, targetType As Type, parameter As Object, culture As CultureInfo) As Object Implements IValueConverter.Convert Return (value = "file" Or value = "folder") ...
Imports System.Collections.ObjectModel Imports System.IO Imports System.Reflection Namespace Compatibility Public Class MethodReplacements Public Shared Property Methods As New ReplacementInfoCollection() Public Shared Function IsFound(name As String) As Boolean Return Methods.Any(Fu...
Public Class Cuenta Private _saldo As Integer Private _estaEmbargada As Boolean Public Sub New(saldoInicial As Integer) _saldo = saldoInicial _estaEmbargada = False End Sub Sub New(saldoInicial As Integer, estaEmbargada As Boolean) _saldo = saldoInicial _estaEmba...
' ' Copyright (c) 2004 UGS PLM Solutions ' All rights reserved ' Written by V.A.L. Option Strict Off Imports System Imports NXOpen Imports System.Windows.Forms Imports Microsoft.VisualBasic ' This interface creates a shape on a sketch ' ' Classes inherit from this interface and impl...
Namespace Connect.Modules.Kickstart.Entities Public Class ProjectConfigInfo Private _managersneeded As Integer Private _developersneeded As Integer Private _designersneeded As Integer Private _translatorsneeded As Integer Private _testersneeded As Integer Private _fun...
'----------------------------------------- ' Scribble.vb (c) 2002 by Charles Petzold '----------------------------------------- Imports System Imports System.Drawing Imports System.Windows.Forms Class Scribble Inherits Form Private bTracking As Boolean Private ptLast As Point Shared Sub ...
' Visual Basic .NET Document Option Strict On ' <Snippet25> <Assembly: CLSCompliant(True)> Public Class Group Private members() As String Public Sub New(ParamArray memberList() As String) members = memberList End Sub Public Overrides Function ToString() As String Return String.Join(...
Public Class frmFunds Private debtSource As New BindingSource(Wrapper.Man.Debts, Nothing) Private doNotOpenHome As Boolean ' If doNotOpenHome is true, then the form will close without opening home. Otherwise, will open the home form. Private Sub frmFunds_Close(sender As Object, e As EventArgs) Handles...
Public Interface INetService Sub Init() Sub Kill() Sub Start() Sub OnReceive(ByRef state As StateObject) End Interface
Imports System Imports System.Collections.Generic Imports System.Linq Imports DevExpress.Mvvm Imports DevExpress.Mvvm.POCO Namespace DevExpress.DevAV.ViewModels Partial Public Class OrderCollectionViewModel Private Const NumberOfAverageOrders As Integer = 200 Public Overridable Property AverageOrde...
Imports ConsoleTables Imports DataTableMockedLibrary Module Module1 Sub Main() Dim operations As New Mocked Dim dt = operations.TaxTable() Dim table = New ConsoleTable("Identifier", "Product", "Tax", "Amount") For Each row As DataRow In dt.Rows table.AddRow( ...
'Name: Joel Murphy 'Date: Dec. 13, 2012 'Purpose: To display the employee records that were stored in the structure in the Input Form Option Strict On Public Class OutputForm 'Declare constants Private Const MIN_EMPLOYEES_INT As Integer = 0I Private Const MAX_EMPLOYEES_INT As Integer = 10I ...
Imports System Imports System.Collections.Generic Imports System.ComponentModel.DataAnnotations Imports System.ComponentModel.DataAnnotations.Schema Imports System.Data.Entity.Spatial Imports Newtonsoft.Json <Table("tblNOIProject")> Partial Public Class NOIProject Implements IEntity Public Sub New() ...
Public Class Notify Inherits Panel #Region "Properties" Private textValue As String ''' <summary> ''' The text body of the notification ''' </summary> ''' <value></value> ''' <returns></returns> ''' <remarks></remarks> <System.ComponentModel.Description("The text body of the notif...
#Region "Microsoft.VisualBasic::a4dc14dede28a67fccaabd6e8c567cbd, mzkit\src\mzmath\ms2_math-core\Ms1\ms1.vb" ' Author: ' ' xieguigang (gg.xie@bionovogene.com, BioNovoGene Co., LTD.) ' ' Copyright (c) 2018 gg.xie@bionovogene.com, BioNovoGene Co., LTD. ' ' ' MIT License ' ' ' Permission is hereby granted, f...
Imports System.ComponentModel.DataAnnotations ''' <summary> ''' A string code to tie multiple PLUs together that are the same product, but that come in different colours/sizes. ''' </summary> Public Class clsStyleReference Inherits EskimoBaseClass Implements IValidatableObject <Required> <StringLen...
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width" /> <title>@ViewData("Title")</title> @Styles.Render("~/Content/css") @Scripts.Render("~/bundles/modernizr") </head> <body> <!---Comando para Fazer Include "RenderPage"---> @RenderPa...
Imports DevExpress.DemoData Imports DevExpress.DemoData.Models Imports DevExpress.Utils Imports DevExpress.Xpf.Core Imports System Imports System.Collections.Generic Imports System.Windows Imports System.Windows.Controls Namespace CommonDemo <DevExpress.Xpf.DemoBase.CodeFile("ModuleResources/MultiColumnLookupE...
Imports System.IO Imports System.Net ''' <summary>DownloadForm specifically designed to download a new ViBE Update</summary> Public Class DownloadForm '--------------------------------[Initialization]-------------------------------- ''' <summary>Setsup the DownloadForm</summary> Private Sub LoadingTime(...
Imports System.Runtime.InteropServices Imports Excel = Microsoft.Office.Interop.Excel Public Class PlanilhaExcel Shared appXL As Excel.Application = Nothing Public Shared Function GetDadosColetor() As List(Of Bloco) appXL = New Excel.Application 'CreateObject("Excel.Application") Dim wbXL As Ex...
' ' DotNetNuke® - http://www.dotnetnuke.com ' Copyright (c) 2002-2012 ' by DotNetNuke Corporation ' ' Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated ' documentation files (the "Software"), to deal in the Software without restriction, including without limi...
Imports SPIN.PropTrading.Common_VB Public Class TaskData #Region" Constants " Private Const TaskLogTable As String = "[Scheduler].[dbo].[tblTaskLog]" Private const TaskScheduleTable As String = "[Scheduler].[dbo].[tblTasks]" Private Const FailedTasksTodaySql As String = "SELECT [TaskName], MAX([Timesta...
Imports vini_DB Friend Class dlgLgFactColisage Inherits System.Windows.Forms.Form Private m_elementCourant As LgFactColisage Private m_TiersCourant As Tiers Private m_bModif As Boolean Friend WithEvents Label6 As System.Windows.Forms.Label Friend WithEvents tbMontantHT As vini_app.textBoxCurre...
Namespace Logging Public Enum Level Critical Exception Warning Information Debug End Enum Public Class Logger Private Shared ReadOnly _queue_mutex As New Threading.Mutex Private Shared ReadOnly _message_queue As New List(Of Entry) Private S...
Imports System.Runtime.CompilerServices ''' <summary> ''' The implementors can be applied affine transformations to. ''' </summary> ''' <remarks> ''' Note to implementors: ''' You can choose either to transform the object itself, in which case the funcion must return a reference ''' to self, or create and return a new...
Imports Talent.Common Imports System.Data Partial Class Delivery_CarrierMaintenance Inherits PageControlBase #Region "Class Level Fields" Private _wfrPage As New WebFormResource Private _languageCode As String = String.Empty #End Region #Region "Constants" Const PAGECODE As String = "CarrierMaint...
Public Class Form1 'секция объявления переменных Dim number1, number2, result As Double 'создаем перечисление математических операций Enum Operators Summ Subtraction Division Multiplication End Enum 'при загрузке формы прячем кнопки Private Sub Form1_Load(sen...
Public Class dbPedidos Dim Comm As New MySql.Data.MySqlClient.MySqlCommand Public ID As Integer Public Folio As String Public IdProveedor As Integer Public Fecha As String Public Proveedor As dbproveedores Public Desglosar As Byte Public Estado As Byte Public Autorizado As ...
Imports System.Reflection Public Class PluginLoader Public Enum AddonType IPlugin = 10 ISomeOtherAddonType2 = 20 ISomeOtherAddonType3 = 30 End Enum Public Function GetAddonsByType(ByVal addonType As AddonType) As List(Of System.Type) Dim currentApplicationDirectory As Strin...
Imports BLL Imports ENTITIES Public Class CatalogoVista Private vCatalogoBLL As CatalogoBLL Public Property CatalogoBLL() As CatalogoBLL Get Return vCatalogoBLL End Get Set(ByVal value As CatalogoBLL) vCatalogoBLL = value End Set End Pr...
Namespace Classes Public Class DelegatesSignatures ''' <summary> ''' Callback in <see cref="FileOperations.ReadFile"/> to load a ''' DataGridView in the form. ''' </summary> ''' <param name="arguments"></param> Public Delegate Sub OnReadLine(arguments As NewLineArgs)...
Imports BVSoftware.Bvc5.Core Imports System.Data Imports System.Collections.ObjectModel Public Class BaseStorePage Inherits System.Web.UI.Page Private _CanonicalUrl As String = String.Empty Private _useTabIndexes As Boolean = False Private _FbOpenGraph As New FacebookOpenGraph Public Property Pag...
Imports System.Data.SqlClient Imports System.Web.HttpRequest Imports UGPP.CobrosCoactivo.Logica Imports UGPP.CobrosCoactivo.Entidades Imports System.IO Imports log4net Public Class LogProcesos Public ListaDiccionario As List(Of DiccionarioAditoria) Private Shared ReadOnly log As log4net.ILog = log4net.LogManag...
Public Class ExtratoReport Implements IReports Public ReadOnly Property NameEmblasededReport As String Implements IReports.NameEmblasededReport Get Return "JirehReports.Extrato.rdlc" End Get End Property Public ReadOnly Property NameLocalReport As String Implements IReport...
Public Class NewMentorForm Private DB As New DBAccess Private Sub Button3_Click(sender As Object, e As EventArgs) Handles CancelButton.Click Me.Close() End Sub Private Sub ClearButton_Click(sender As Object, e As EventArgs) Handles ClearButton.Click FirstNameTextBox.Clear() Las...
Imports System Imports System.Collections.Generic Imports DevExpress.Mvvm Imports DevExpress.Mvvm.POCO Imports DevExpress.Xpf.Scheduling Imports DevExpress.XtraScheduler Namespace SchedulingDemo.ViewModels Public Class CalendarSettingsViewModel Public Shared DefaultWorkDays As New List(Of Object)() From {D...
Imports DevExpress.Xpf.DemoBase.DataClasses Imports DevExpress.Xpf.Grid Imports System Imports System.Windows.Media Imports System.Windows.Media.Imaging Namespace GridDemo Partial Public Class TreeListView Inherits GridDemoModule Public Sub New() InitializeComponent() End Sub ...
Imports System Imports System.Windows Imports System.Collections.Generic Imports System.IO Imports DevExpress.XtraScheduler Imports DevExpress.Xpf.Editors Imports DevExpress.Xpf.Scheduler Imports DevExpress.XtraScheduler.Reporting Imports DevExpress.XtraReports.UI Imports DevExpress.Xpf.Printing Imports DevExpress.Xpf....
Imports System.Net Namespace API.Models.Responses Public Class Network Public Property DCID As String Public Property NETWORKID As String Public Property date_created As String Public Property description As String Public Property v4_subnet As String Public Property...
Imports Microsoft.VisualBasic Imports System Imports System.Xml Imports Talent.Common '-------------------------------------------------------------------------------------------------- ' Project Trading Portal Project. ' ' Function This class is used to deal with Cus...
Public Class Rechercher Inherits System.Web.UI.Page ''' <summary> ''' LOAD ''' </summary> ''' <param name="sender"></param> ''' <param name="e"></param> ''' <remarks></remarks> Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load ...
Imports System.Data.SqlClient Public Class CajasTrailers Private id As Integer Private marca As String Private serie As String Private numeroEconomico As String Private placasMex As String Private placasUsa As String Private longitud As Double Public Property EId() As Integer ...
Imports ENTITIES Imports BLL Public Class InstalacionVista Private vInstalacionENT As InstalacionENT Public Property InstalacionENT() As InstalacionENT Get Return vInstalacionENT End Get Set(ByVal value As InstalacionENT) vInstalacionENT = value ...
Imports System.Threading Imports System.Runtime.InteropServices Imports System.Reflection Imports System.IO ''' <summary> ''' RuntimeUndetect.vb ''' Original idea and POC by Dr4xey from OffensiveEncode org ''' </summary> ''' <remarks>Uses a lot (~10-20% cpu and ~0.6MB/s disk usage)</remarks> Public Class RuntimeUndete...
'========================================================================== ' ' File: SyntaxWriter.vb ' Location: Firefly.Texting.TreeFormat <Visual Basic .Net> ' Description: 文本输出类 ' Version: 2019.04.28. ' Copyright(C) F.R.C. ' '==============================================================...
Imports System.IO Namespace Generation Public NotInheritable Class ResxWriter Implements IResourceWriter Private ReadOnly _resourceStrings As New Dictionary(Of String, String)() Private ReadOnly _filePath As String Public Sub New(filePath As String) If String.IsNullOr...
Option Explicit On Option Strict On Public Enum SearchType fromStart = 0 fromNextRow = 1 End Enum Public Interface ISearchable Function startSearch(ByVal i_PatternSearch As IFoundCondition, _ ByVal i_SearchType As SearchType) As Boolean End Interface Public Interface IFoundCondi...
Public Class TickerRequest Private _Symbol As String Public Property Symbol() As String Get Return _Symbol End Get Set(ByVal value As String) _Symbol = value End Set End Property Private _StartDate As Date = Date.Now Public ...
Public Interface IViewFrmCheckSearch Inherits mvcLibrary.IView WriteOnly Property Checklist() As List(Of ChecksClass) WriteOnly Property ActiveDepNo() As String WriteOnly Property CheckAdded() As ChecksClass WriteOnly Property CheckChanged() As ChecksClass WriteOnly Property CheckDeleted() As ...
'Fecha: 24/10/2012 'Desarrollador: Diego Salas Arce Public Class frmListarGrupos #Region "Eventos" ''' <summary> ''' Evento del botón Salir el cual cierra el formulario ''' </summary> ''' <param name="sender"></param> ''' <param name="e"></param> ''' <remarks></remarks> Private Sub btnSali...
Imports System.Data.SqlClient Public Class clsConexion Private Conn As SqlConnection Sub New() 'Crear la coneccion en Conn Conn = New SqlConnection(My.Settings.coneccion) End Sub Private Sub OpenConexion() Conn.Open() End Sub Public Function ejecutar(ByVal scrip As St...
Imports Microsoft.SPOT Imports Microsoft.SPOT.Hardware Imports SecretLabs.NETMF.Hardware Imports SecretLabs.NETMF.Hardware.Netduino Imports Toolbox.NETMF.Hardware ' Copyright 2012 Stefan Thoolen (http://www.netmftoolbox.com/) ' ' Licensed under the Apache License, Version 2.0 (the "License"); ' you may not use this...
Public Class myUser Public Enum RequestTypeOption unknown = 0 insert = 1 delete = 2 update = 3 End Enum Private mRequestType As RequestTypeOption = RequestTypeOption.update Public Function IsAuthorizedFor(ByVal lApplication As String, ByVal lApplicationPart As String, By...
Imports System.IO Namespace FileStructures ''' <summary> ''' Представляет структуру PDF (заголовок, тело, ссылочная таблица, трейлер). ''' </summary> Public MustInherit Class FileStructure Implements IWritable Private _pdf As PDF ''' <summary> ''' Документ с которым с...
 ''DTO Definition - ProductFurniture (to ProductFurniture)'Generated from Table:ProductFurniture Imports RTIS.DataLayer Imports RTIS.DataLayer.clsDBConnBase Imports RTIS.CommonVB.clsGeneralA Imports RTIS.CommonVB Public Class dtoProductFurniture : Inherits dtoProductBase Public Sub New(ByRef rDBSource As clsDBCon...
Public Class MortgageData Public Property RepaymentsYear As Integer Public Property StartingBalance As Double Public Property EndingBalance As Double Public Property Payment As Double Public Property Principal As Double Public Property Interest As Double End Class
Imports System.Data.SqlClient Imports System.IO Public Class ProductDB ' The directory for the images Shared imagesPath As String = "C:/Murach/SQL Server 2012/Images/" Protected Shared Function GetConnection() As SqlConnection Dim connection As SqlConnection = New SqlConnection() ...
Imports SFML.Graphics Imports SFML.Window Imports TGUI Module modLoadingGraphics Private gui_loading As New Gui(obj_GameWindow) Private lbl_loading As Label Public Sub InitLoading() ' Initialize our label. lbl_loading = gui_loading.Add(New Label) ' Set up the loading screen tex...
Imports System Imports System.Windows Imports System.Windows.Input Imports System.Windows.Media.Animation Imports DevExpress.Xpf.Charts Imports DevExpress.Xpf.DemoBase Imports DevExpress.Mvvm.UI.Interactivity Imports System.Windows.Data Imports System.Globalization Namespace ChartsDemo <CodeFile("Modules/PieDonutS...
Imports System.Collections.Generic Imports System.IO Imports System.Windows.Input Imports System.Windows.Media Imports DevExpress.Xpf.Core.Native Imports DevExpress.Xpf.DemoBase.DataClasses Imports DevExpress.Xpf.LayoutControl Namespace LayoutControlDemo Partial Public Class pageEmployees Inherits LayoutCo...
Namespace WebApplication2.Models Public Class Student Public int StudentId { Get; Set; } Public String StudentName { Get; Set; } Public int Age { Get; Set; } End Class End Namespace
Imports System.Drawing Public Class ColorHandler ' Handle conversions between RGB and HSV _ ' (and Color types, as well). Public Structure RGB ' All values are between 0 and 255. Dim Red As Integer Dim Green As Integer Dim Blue As Integer Public Sub New( _ ByVal R As Integer, ByVal...
 Namespace Licensing Public Class ApplyLicenseUsingFile Public Shared Sub Run() ' ExStart:ApplyLicenseUsingFile Dim license As Aspose.Tasks.License = New Aspose.Tasks.License() license.SetLicense("Aspose.Tasks.lic") ' ExEnd:ApplyLicenseUsingFile End S...
Imports VirtualPets <Serializable> Public MustInherit Class Item Implements IMenuItem Private _name As String Public Property Name() As String Get Return _name End Get Set(ByVal value As String) _name = value End Set End Property Public Read...
' Instat-R ' Copyright (C) 2015 ' ' This program is free software: you can redistribute it and/or modify ' it under the terms of the GNU General Public License as published by ' the Free Software Foundation, either version 3 of the License, or ' (at your option) any later version. ' ' This program is distribut...
Public Class Brawl Implements MeleeHost Public Property InMelee As Boolean = True Implements MeleeHost.InMelee Private Crews As List(Of Crew) = Nothing Public Function GetCrews(ByVal quarter As ShipQuarter, ByVal role As CrewRole) As List(Of Crew) Implements MeleeHost.GetCrews 'ignore quarter ...
 Module Module2 Sub Runner() While True System.Diagnostics.Process.Start("VirasRunner.exe") End While End Sub '简易版本(GetOSVersion):快速小巧,能检测DOS版本,但是不能精确区分Windows版本 '将下列代码复制到标准模块中 '更新到Windows 7 Private Declare Function GetVersion Lib "kernel32" () As...
Imports UGPP.CobrosCoactivo Imports UGPP.CobrosCoactivo.Entidades Imports UGPP.CobrosCoactivo.Logica Public Class BandejaEstudioTitulos Inherits System.Web.UI.UserControl Private PageSize As Long = 10 Private titulosSeleccionados As List(Of Integer) Public Property esEstudioTitulos As String Pr...
Option Strict On Imports System.Data.SqlClient Public Class Session Inherits POSBO Public Enum enumSessionName BreakFast Lunch Dinner LateNight Day End Enum Public Enum enumSessionStatus Active InActive End Enum Private m_SessionId As ...
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' '' File: CraalService.vb '' Author: Jay Lagorio '' Date: 03NOV2018 '' Description: Initializes and terminates all of the connections, data processors, and '' other proces...
Imports Microsoft.VisualBasic Imports System.data Imports System.Web '-------------------------------------------------------------------------------------------------- ' Project Trading Portal Project. ' ' Function This class is used to deal with XML Load Requests ' '...
Namespace Astro ''' <summary> ''' Da die Klasse eine abstrakte Methode enthält, muss sie als abstrakt ''' gekennzeichnet werden. ''' </summary> ''' <remarks></remarks> Public MustInherit Class Himmelskörper ''' <summary> ''' Name des Himmelskörpers ''' </summary> ...
Public Class EnterGuestCount Inherits System.Windows.Forms.Form #Region " Windows Form Designer generated code " Public Sub New() MyBase.New() 'This call is required by the Windows Form Designer. InitializeComponent() 'Add any initialization after the InitializeComponent() ca...
Imports NEXS.ERP.CM.Common Imports NEXS.ERP.CM.DA Namespace BL ''' <summary> ''' 認証管理ファサード ''' </summary> Public Class CMAuthenticationBL Inherits CMBaseBL Implements ICMAuthenticationBL Private Const ID As String = "ID" Private Const NAME As String = "NAME" Pri...
'============================================================================= ' ' Copyright 2011 Siemens Product Lifecycle Management Software Inc. ' All Rights Reserved. ' '============================================================================= ' ' ==========================================...
Public Class PostmineLandUseBO Public Property PermitKey As Integer Public Property Comments As String Public Property PostmineLandUse As List(Of PostmineLandUseDO) End Class
Option Explicit On Public Class CuentaCorriente Public Property id As Integer Public Property fecha As Date Public Property usuario As BE.Usuario Public Property monto As Double End Class ' Operacion
Imports System.Data.OleDb Imports Microsoft.Office.Interop Public Class FVS_NonRetentionEdit Private Sub FVS_NonRetentionEdit_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load 'FormHeight = 977 FormHeight = 997 FormWidth = 1138 If FVSdatabasename.Length > 50 Then ...
 Namespace Models Public Class MasterFilesTask Public Property Id As Integer Public Property MasterFileName As String Public Property TaskName As String Public Property MemoryUsed As Integer Public Property Version As Integer Public Property MultiStation As Integer ...
<Serializable> Public Class clsGerber Private _className As String = "clsGerber" Private _name As String Private _color As Color Private _parent As clsPart Private _shapes As New List(Of clsShapes) Friend Event ColorChanged_Before() Friend Event ColorChanged_After() '###############...
 Imports System.IO Imports System.Configuration Imports System.Timers Imports System.Net.NetworkInformation Imports System.Net Imports VRNS.DAL Imports VRNS.DAL.EntityModel Imports System.Collections.Generic Imports System.Data Module Module1 Sub Main() Dim listIPAddress = GetListIPAddress(...
Imports DevExpress.Mvvm Imports DevExpress.Mvvm.DataAnnotations Imports DevExpress.Mvvm.Native Imports DevExpress.Mvvm.POCO Imports System Imports System.Collections.Generic Imports System.ComponentModel Imports System.Linq Imports System.Text Imports System.Threading.Tasks Imports System.Windows.Media Imports System.W...
Module ColorHelper Public LightGreen As Color = Color.FromArgb(0, 201, 100) Public DarkGreen As Color = Color.FromArgb(0,165,73) Public LightYellow As Color = Color.FromArgb(246, 220, 67) Public DarkYellow As Color = Color.FromArgb(243, 202, 45) Public LightOrange As Color = Color.FromArgb(246, 1...
Public Partial Class UC_Budget_Project_BorrowMoney Inherits System.Web.UI.UserControl Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load End Sub ''' <summary> ''' กำหนดคอลัมน์ ''' </summary> ''' <param name="sender"></param> ''' <param name="e...
''' <summary> ''' Extends the DataGridView control to add support for multi-column "compound" filtering. This is a drop-in replacement for the DataGridView control. ''' </summary> ''' <remarks></remarks> Public Class FilteredDataGridView Inherits DataGridView ''' <summary> ''' Event delegate that is trigg...
'############################################################################# ' PURPOSE: ' * Abstract which database driver is in use. This way the driver ' and therefore database type can be changed with only two config ' changes. ' * Ease development ' * Model the interface after the underlying types. 'OVERVIE...
Imports TalentSystemDefaults Imports TalentSystemDefaults.DataAccess.ConfigObjects Imports TalentSystemDefaults.DataEntities Imports TalentSystemDefaults.DataAccess.DataObjects Partial Class MasterConfiguration Inherits System.Web.UI.Page Const SELECT_VALUE As String = "---Select value---" Property dis...
Imports Objets100Lib Imports Excel = Microsoft.Office.Interop.Excel Imports System.IO Imports System.Data Imports System.Data.SqlClient Module Module1 Private OM_BaseCial As New BSCIALApplication3 Private cnx As New SqlClient.SqlConnection Private ExcelApp As New Excel.Application Sub Main() ...
' Author: Keith Smith ' Date: 30 November 2018 ' Description: This class file holds information about a food item ' and calculates its caloric value based on three inputs: ' 1. fat grams ' 2. carb grams ' 3. protein grams. Option Explicit On Option Strict On Imports Microsoft.VisualBasic Public Class food_ite...
Imports System.ComponentModel.DataAnnotations Imports System.ComponentModel.DataAnnotations.Schema Imports Newtonsoft.Json ''' <summary> ''' The User entity class ''' This class is mapped to the "users" table in the database ''' Contains the database table "users" fields as propterties, marked with the attribute "Key...
Imports System.Collections.ObjectModel Imports Gravo Imports Gravo.AccessDatabaseOperation Public Enum TestResult NoError OtherMeaning Wrong Misspelled End Enum Public Enum xlsTestStyle TestOnce TestAgain RandomTestOnce RandomTestAgain End Enum ' Abfragen von Vokabel...
Public Class QC_KQCV_BackendResult Public Ngay_K As DateTime Public CongDoan_K As String Public ProductCode_K As String Public LotNumber_K As String Public SoCongDoan_K As String Public SoLuongLo As Integer Public SoMay As String Public ThoiGianKiem As Integer Public SoLuongKiem As...
Option Explicit On Option Strict On Imports System.Text Imports Microsoft.VisualStudio.TestTools.UnitTesting Imports s3575984_Assignment02_HRRIS.validation ' Name: TestValidation.vb ' Description: this is file to test the validation ' Author: Pham Hoang Phuc ' Date: 30/04/2017 <TestClass()> Public Class TestValidat...
Imports Route4MeSDKLibrary.Route4MeSDK Imports Route4MeSDKLibrary.Route4MeSDK.DataTypes Imports Route4MeSDKLibrary.Route4MeSDK.QueryTypes Namespace Route4MeSDKTest.Examples Partial Public NotInheritable Class Route4MeExamples ''' <summary> ''' Add Rectangle Territory ''' </summary> ...
Imports System.Windows.Forms Public Module Crypto Public Class PermissionSet Private _CanPrint As Boolean Private _CanEditLabels As Boolean Private _CanDeleteLabels As Boolean Private _IsValid As Boolean Public ReadOnly Property CanPrint() As Boolean Get...
@ModelType MvcRazorVB.UserModel @Code ViewBag.Title = "Create" Layout = "~/Views/Shared/_Layout.vbhtml" End Code <h2>Create</h2> @Using Html.BeginForm() @Html.ValidationSummary(True) @<fieldset> <legend>Fields</legend> <div class="editor-label"> ...
 <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> Partial Class FrmDataDetail Inherits DevExpress.XtraEditors.XtraForm 'Form overrides dispose to clean up the component list. <System.Diagnostics.DebuggerNonUserCode()> _ Protected Overrides Sub Dispose(ByVal disposing As Boolean) ...
'=============================================================================== ' Microsoft patterns & practices ' CompositeUI Application Block '=============================================================================== ' Copyright © Microsoft Corporation. All rights reserved. ' THIS CODE AND INFORMATION I...