text
stringlengths
43
2.01M
Module RichTextBoxExModule ' see if keystrokes are given for special characters Public Sub CheckForSpecialCharacters(tb As TextBox, e As KeyEventArgs) Dim InsertionText As String = "" If Not e.Control Then Exit Sub ' [Ctrl] not pressed End If ' else check key combination Select Case e.KeyCod...
Imports System.Runtime.InteropServices Module GUIEffect Structure MARGINS Public Left, Right, Top, Bottom As Integer End Structure <DllImport("dwmapi.dll", PreserveSig:=True)> Private Function DwmSetWindowAttribute(hwnd As IntPtr, attr As Integer, ByRef attrValue As Integer, attrSize As Inte...
Module modCTUN_Checks_v3_1 Public Sub CTUN_Checks_v3_1() 'This part only check the correct data structure of the data line 'and prepares the variables ready for the MainAnalysis which 'is called directly after by this code. ' THIS CODE MUST ONLY BE CALLED AFTER THE DATA LINE HAS B...
Imports DevExpress.DemoData.Models Imports System Imports System.Collections.Generic Imports System.Linq Namespace GridDemo Public NotInheritable Class GroupIntervalData Private Sub New() End Sub Public Shared rnd As New Random() Public Shared ReadOnly Property Invoices() As List(...
Option Strict On Public Class Car 'Variable Declarations Private Shared countNum As Integer 'Stores the total number of entries. Shared Private identificationNum As Integer = 0 'Store the id number of the car Private make As String = String.Empty 'Stores the make of the car Pri...
<TestClass()> Public Class 必須文字列クラステスト 'テスト用パラメーター Private Const m_テスト値1 As String = "日本" Private Const m_テスト値2 As String = " 今日の天気は " <TestMethod()> <TestCategory("基本テスト")> Public Sub 必須文字列クラス基本テスト() '必須文字列クラスを生成する時は、値となる文字列を設定する。 Dim 必須の文字列1 As New SampleApplication.PrimitiveObject...
Imports System.IO Public Class frmMain 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 InitializeCom...
Imports cv = OpenCvSharp Imports System.Runtime.InteropServices Imports CS_Classes ' https://docs.opencv.org/3.0-beta/doc/py_tutorials/py_feature2d/py_surf_intro/py_surf_intro.html Public Class Surf_Basics_CS : Implements IDisposable Dim radio As New OptionsRadioButtons Dim sliders As New OptionsSliders D...
Imports RTIS.CommonVB Public Class clsPurchaseOrderInfo Private pPurchaseOrder As dmPurchaseOrder Private pPOItemInfos As colPOItemInfos Private pPOItem As dmPurchaseOrderItem Private pStockItem As dmStockItem Private pBuyerName As String Private pSupplierContactName As String Private pTotalNetValueInf...
Imports System.Windows.Forms Imports System.Timers Imports MediaPortal.Configuration Imports MediaPortal.Dialogs Imports MediaPortal.Player Imports MediaPortal.GUI.Library Imports TvControl Imports TvDatabase Imports myTvNiveauChecker.MediaPortal.TvDatabase Imports myTvNiveauChecker.Settings Imports myTvNiveauCheck...
Imports System.Xml Imports System.IO Imports System.Xml.Serialization Public Class InstrumentXMLSerializationForm Sub New() ' This call is required by the designer. InitializeComponent() LoadForm() ' Add any initialization after the InitializeComponent() call. End Sub ...
Imports DevExpress.Xpf.Core Imports System.Windows Imports System.Windows.Controls Imports System.Windows.Media Namespace RibbonDemo Public Class ThemedContentControl Inherits ContentControl #Region "static" Public Shared ReadOnly IsHoverStateProperty As DependencyProperty = DependencyPrope...
#Region "License" ' The MIT License (MIT) ' ' Copyright (c) 2017 Richard L King (TradeWright Software Systems) ' ' 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, includi...
' This example shows how new documents can be added. ' ' Documentation: https://docs.basex.org/wiki/Clients ' ' (C) BaseX Team 2005-23, BSD License Imports System Imports System.IO Module CreateExample Sub Main() Try ' create session Dim session As New Session("localhost", 1984, "admin"...
Imports System.Runtime.InteropServices Imports System.Drawing.Drawing2D Public Class frmVLCDrawing #Region "Properties" Private _DrawSubtitles As Boolean = False 'Temporary property Public Property DrawSubtitles As Boolean Get Return _DrawSubtitles End Get Set(value As B...
Imports Route4MeSDKLibrary.Route4MeSDK Imports Route4MeSDKLibrary.Route4MeSDK.DataTypes Imports Route4MeSDKLibrary.Route4MeSDK.QueryTypes Namespace Route4MeSDKTest.Examples Partial Public NotInheritable Class Route4MeExamples ''' <summary> ''' The example refers to the process of creating an optim...
Namespace Infrastructure Module Ini Private Declare Function GetPrivateProfileString Lib "Kernel32.Dll" Alias "GetPrivateProfileStringA" _ (ByVal sSection As String, ByVal sKey As String, ByVal sDefa As String, ByVal sRetStr As String, ByVal iSize As Integer, ByVal sIniFile As String ) As ...
'''' '''Lance Brown '''Test1 '''6/8/20 ''' ' -------------------------------------------------------------------------------- ' Options ' -------------------------------------------------------------------------------- Option Strict On Public Class frmMain Private Sub frmMain_Load(sender As Object, e As EventAr...
''' <summary> ''' A page that allows a user to edit or delete an address within his online resume ''' </summary> ''' <remarks> ''' Completed: 08/23/2007 ''' Author: Bill Hedge ''' Modifications: None ''' </remarks> Public Class EditAddress Inherits System.Web.UI.Page #Region "Private Members" Private _ID As ...
Option Strict On Imports System.IO Public Class frmTextEditor Private Sub OpenToolStripMenuItem_Click_1(sender As Object, e As EventArgs) Handles OpenToolStripMenuItem.Click Dim OpenFileDialog1 = New OpenFileDialog() If OpenFileDialog1.ShowDialog() = DialogResult.OK Then Try...
'Thief Fan Mission Manager is released under the GPL 3.0 license. 'The licence text can be viewed in the gpl-3.0.txt file or at 'http://www.gnu.org/licenses/gpl.html Imports System.Windows.Forms Imports System.Data Imports System.IO Imports Thief_Fan_Mission_Manager.MyAppSettings Public Class dlgSetup Private Co...
Module Module1 Sub Main() Dim choice As String Dim choosing As Boolean choosing = True Do While choosing = True Console.Write("Which Challenge: ") choice = Console.ReadLine() If choice = "" Then choosing = False If choice = "1" Then C...
Namespace Core Public Partial Class Instance #Region " Public Shared Methods " Public Shared Function Create_Instance( _ ByVal _db As System.Data.IDbConnection, _ ByVal _option As [Option] _ ) As Instance ' -- Create New Instance -- Dim new_Instance As New Instance() new_Instance.Option...
Public Class MainForm Private Sub Btn_Exit_Click(sender As Object, e As EventArgs) Handles Btn_Exit.Click ' Close this form Me.Close() End Sub Private Sub btn_Reset_Click(sender As Object, e As EventArgs) Handles btn_Reset.Click ' Clear this Form of all data For Each c In...
Imports Microsoft.VisualBasic <Serializable()> _ Public Class ShoppingCart Private PID As String Private CompanyProductName As String Private Number As Integer Private Price As Decimal Private DateAdded As DateTime Public Property ProductID() As String Get Return PID ...
'============================================================================== 'Project: Lab 2 'Title: Yahtzee 'File Name: Yahtzee.sln, .exe 'Date Completed: 12/2/2018 ' 'Author: Van Quach, Margaret Alcock, Dylan E Parker, Tyler R Little 'Course: CS 115, Section ...
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' ' ' Filename: GeoFunction.vb ' Project: jaktools ' Version: 0.2 ' Author: Simone Giacomoni (jaksg82@yahoo.it) ' http://www.vivoscuola.it/us/simone.giacomoni/devtools/index.html ' ' Description: the function to...
Public Class Cls_XML ''' <summary> ''' อ่าน ค่า XML ''' </summary> ''' <returns></returns> ''' <remarks></remarks> Public Function ReadXml(ByVal path As String) As String Dim StrData As String Dim objXMLDoc As New System.Xml.XmlDocument() objXMLDoc.Load(path) 'xml data ...
Imports Microsoft.VisualBasic Imports System.Collections.Generic Imports MB.TheBeerHouse.DAL Namespace MB.TheBeerHouse.BLL.Articles Public Class Category Inherits BaseArticle ' ========== ' Private Variables ' ========== Private _title As String = "" Private _import...
Public Class Consumer Public Id As String Private SourceLog As Log Private Offset As Long Public Sub New(id As String, sourceLog As Log) Me.Id = id Me.SourceLog = sourceLog End Sub Public Async Function ExecuteAsync() As Task Dim command As Command Dim messag...
Public Class GpsSource Implements IGpsSource Private _port As New IO.Ports.SerialPort Private _thread As New Threading.Thread(AddressOf ReadThread) Public Event GpsUpdate(data As GpsData, raw As String) Implements IGpsSource.GpsUpdate Private Sub ReadThread() Do Try ...
Option Strict Off Option Explicit On Friend Class threeDGrapher ' this class is responsible for maintaining a ' 3d graph. It needs to keep track of the current ' viewing angles. An object calls the draw object ' method to draw a particular object. Note that ' the object (i.e. a line) to be drawn should give ' ...
Public Class PopupHelper Public Function ShowInputBox(ByVal strPrompt As String, Optional ByVal intTYpe As Int32 = 1, Optional ByVal strTitle As String = "", Optional ByVal StrDefault As String = "") As String Dim oPopup As New ApplicationMessageBox oPopup.Prompt = strPrompt oPopup.Type = i...
' ' Created by SharpDevelop. ' User: Admin ' Date: 02/01/2007 ' Time: 23:16 ' ' To change this template use Tools | Options | Coding | Edit Standard Headers. ' Imports System Imports System.Drawing Imports System.Windows.Forms Namespace q Public Class FrmConfirm Inherits System.Windows.Forms.For...
Public Class Comprobante #Region "VARIABLES" Private mensajesValue As New List(Of Mensaje) Private claveAccesoValue As String = String.Empty #End Region #Region "PROPERTIES" Public Property ClaveAcceso() As String Get Return claveAccesoValue End Get Set(ByVal value ...
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _ Partial Class FrmMaterialAndSubMaterial Inherits DevExpress.XtraEditors.XtraForm 'Form overrides dispose to clean up the component list. <System.Diagnostics.DebuggerNonUserCode()> _ Protected Overrides Sub Dispose(ByVal disposing As...
'------------------------------------------------------------ '- File Name : modMain.vb - '- Part of Project: Assign9 - '------------------------------------------------------------ '- Written By: Nathan Gaffney - '- ...
Imports System.IO Public Class frmMain 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 InitializeCom...
Public Class vprofesores Dim idprofesor As Integer Dim nombre, apellido, domicilio, telefono As String 'seter y geteer Public Property gidprofesor Get Return idprofesor End Get Set(value) idprofesor = value End Set End Property Public ...
<ExportCodeFixProvider(LanguageNames.VisualBasic, Name:=NameOf(HungarianNotationCodeFixProvider)), [Shared]> Public Class HungarianNotationCodeFixProvider Inherits CodeFixProvider Private Const title As String = "Remove Hungarian Notation" Public NotOverridable Overrides ReadOnly Property FixableDiagnosticIds As ...
'=============================================================================== ' EntitySpaces 2010 by EntitySpaces, LLC ' Persistence Layer and Business Objects for Microsoft .NET ' EntitySpaces(TM) is a legal trademark of EntitySpaces, LLC ' http://www....
Imports System Imports PermutationLibrary Module PermutorShowcaseVB Sub Main() Dim PERMUTATION_SIZE As Integer = 1 Dim INPUT_VARARRAY() As Char = {"a", "b", "c", "d", "e"} Dim ALLOW_DUPLICATES As Boolean = True 'SetInputAsAlphabet(INPUT_VARARRAY) Dim permutor As New Permuto...
'--------------------------------------------------------------------------------------------------- ' copyright file="CustomerOrder.vb" company="CitrusLime Ltd" ' Copyright (c) CitrusLime Ltd. All rights reserved. ' copyright '-------------------------------------------------------------------------------------------...
Imports Microsoft.EntityFrameworkCore Imports System.Collections.Generic Public Class DoKUser Public Property UserName As String Public Property ScreenName As String Public Property DateCreated As DateTime End Class Public Class DoKUserContext Inherits DbContext
Imports System.ComponentModel.DataAnnotations Imports System.ComponentModel.DataAnnotations.Schema Namespace JhonyLopez.EmetraApp2017090.Model Public Class Neighbor #Region "Campos" Private _NIT As String Private _DPI As Integer Private _FirstName As String Private _LastName As Stri...
Imports System.Data.SqlClient Namespace DataObjects.TableObjects ''' <summary> ''' Provides the functionality to manage data from the table tbl_forgotten_password based on business functionality ''' </summary> <Serializable()> _ Public Class tbl_forgotten_password Inherits DBObjectBase #R...
Imports System.Runtime.CompilerServices Imports System.Data.Common Public Module DbCommandExtensions <Extension()> Public Function AddParameter(Of T)(ByVal cmd As DbCommand, ByVal name As String, ByVal value As T) As DbCommand cmd.AddParameter(name, value, DbTypeLookup.GetDbType(GetType(T))) ...
'Copyright 2014 Fariz Luqman ' ' Licensed under the Apache License, Version 2.0 (the "License"); ' you may not use this file except in compliance with the License. ' You may obtain a copy of the License at ' ' http://www.apache.org/licenses/LICENSE-2.0 ' ' Unless required by applicable law or agreed to i...
'**Update HelpBO** to include a list of AttachmentBO for the Templates property (we don't need to display the user name so just leave it blank instead of looking up from registration). Public Class HelpBO Public Property TOCID As Integer Public Property ParentTOCID As Integer Public Property ScreenTitle A...
Public Class Form1 Dim WithEvents Grid As New ReverseGrid Dim Turn As CellStatus = CellStatus.Black '今どっちの順番か Dim PlayerColor As CellStatus = CellStatus.Black 'プレイヤーの色 Dim Computer As New CpuLevel3(Grid, CellStatus.White) '■Start ''' <summary>ゲームを開始します。</summary> ''' <param name="PlayerC...
Imports BVSoftware.Bvc5.Core Partial Class BVModules_Controls_ProductMainImage Inherits System.Web.UI.UserControl 'Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load 'End Sub Protected Sub Page_PreRender(ByVal sender As Object, ByVal e As System.EventArgs) H...
Public Class DBO_Articulos_ArticulosCertificadosTipos Private m_Articulo_ArticuloCertificadoTipoID As Int32 Private m_ArticuloID As Nullable(Of Int32) Private m_ArticuloCertificadoTipoID As Nullable(Of Int32) Private m_Observaciones As String Private m_FechaModificacion As date Private m_UsuarioModif...
Imports System Imports System.Collections.Generic Partial Public Class HistoriqueMouvement Public Property Id As Long Public Property JournalCaisseId As Long Public Property CollecteurId As Long Public Property ClientId As Long Public Property TraitementId As Long? Public Property Latitude As ...
Public class Cpu Public Property Opcode as Byte Public Property Id as String Public Property State as CpuState End Class
Imports System.Net Imports System.Net.Sockets Imports System.Net.NetworkInformation Imports System.Text Imports System.ComponentModel ''' <summary> ''' The BarcodeReceiver receives barcodes from the scanner app ''' and raises an event when a barcode has been received. ''' </summary> ''' <remarks></remarks> Public Cla...
Imports System.ComponentModel.DataAnnotations Imports System.ComponentModel.DataAnnotations.Schema <Table("Categorias")> Public Class Categoria Property CategoriaId As Int32 <Required> Property CategoriaNombre As String <Required> Property EstaActiva As Boolean 'Navigation Property Overri...
Public Class Credit 'Parties privés Private taux As Double = 0 Private dure As Double = 0 Private capitale As Double = 0 '------------------------ Private mensualite As Double = 0 Sub New() End Sub Sub New(ByVal monTaux As Double, ByVal maDure As Double, ByVal monCa...
Imports cv = OpenCvSharp Imports System.Runtime.InteropServices Module Salience_Exports <DllImport(("CPP_Classes.dll"), CallingConvention:=CallingConvention.Cdecl)> Public Function Salience_Open() As IntPtr End Function <DllImport(("CPP_Classes.dll"), CallingConvention:=CallingConvention.Cdecl)> P...
Option Explicit On Imports System.Text Imports System.Xml Imports System.Net Imports System.IO Imports System.Security.Cryptography.HMACSHA256 Public Class cBufferAmazonCSV Private Const PROGRAM_NAME As String = "Amazon" Private Const COLUMN_CNT As Integer = 43 Private CHARSET As System.Text.Encoding =...
'Adam Boswell 'RCET 0265 'Asg 3-6 'Shipping Cost Calculator Program 'https://github.com/boswadam/AMB-VS-F19/tree/master/Assignments_3/Asg%203-6/Asg%203-6 Option Explicit On Option Strict On Public Class shippingCalc Dim lbs As Double Dim oz As Double Dim shipCost As Double 'Dims all my variables C...
' In App.xaml: ' <Application.Resources> ' <vm:ViewModelLocator xmlns:vm="clr-namespace:WirePicking" ' x:Key="Locator" /> ' </Application.Resources> ' ' In the View: ' DataContext="{Binding Source={StaticResource Locator}, Path=ViewModelName}" ' ' You can also use Blend to do all ...
'Programmer: Samantha Naini 'Date: 3/15/2012 'Exercise: 4-4-22 pg.152 'Program Purpose: Create a program processing someone's major, year, and languages selected. Option Strict On Option Explicit On Public Class frmQuestionnaire Private Sub btnRecord_Click(ByVal sender As System.Object, ByVal e As System.EventA...
Imports System.IO Imports System.Xml.Serialization Namespace Settings Public Class SettingsManager Private Const _fileName As String = "CogentSettings.xml" Private _path As String = "" Public Sub New() _path = FileIO.SpecialDirectories.AllUsersApplicationData + "\" + _fileName...
Public Class clsValoresespecificaciones #Region "Atributos" Private ParametroID As Integer Private EspecificacionID As Integer Private LegislacionID As Integer Private Nombre As String Private Obligatoriedad As Boolean Private Minimo As Double Private Maximo As Double Private Periodicid...
Imports CryptoNS = System.Security.Cryptography Imports HashAlgo = System.Security.Cryptography.HashAlgorithm Imports System.Collections.Generic Imports System.Linq Imports System.Text Imports System.IO Namespace Crypto Enum HashAlgorithm SHA1 End Enum Module HashHelper Public Delegate Fun...
Imports CommonDemo.Helpers Imports DevExpress.Mvvm.POCO Imports DevExpress.Xpf.Core Imports System Imports System.Collections.ObjectModel Imports System.ComponentModel Imports System.Windows.Media Namespace CommonDemo.TabControl.WebBrowser Public Class WebBrowserMainViewModel Public Overridable Property Ta...
Public Class frmMain Sub DoRequest() If InvokeRequired Then Invoke(New MethodInvoker(AddressOf DoRequest)) Else If (TextBox1.Text = Nothing) Then DisplayMessage("Please input a Request URL.") Exit Sub End If If...
'====================================== ' Copyright EntitySpaces, LLC 2005 - 2006 '====================================== Imports System.Data Imports NUnit.Framework 'using Adapdev.UnitTest; Imports System.Linq Imports EntitySpaces.Interfaces Imports EntitySpaces.DynamicQuery Imports BusinessObjects Namespace Test...
Public Class Customer Public Sub New() Me.New("", 0) 'Me.Name = "" 'Me.id = 0 'BirthDay = Nothing End Sub Public Sub New(Name As String, id As Integer) Me.New(Name, id, Nothing) 'Me.Name = Name 'Me.id = id 'BirthDay = Nothing End Sub Pu...
Imports System Imports System.Threading Imports System.Diagnostics Imports System.Security.Principal Namespace Security Friend Class CustomPrincipal Implements IPrincipal Private m_User As IIdentity Private m_OldPrincipal As IPrincipal Private m_UserManager As IUserManager P...
Module modStructures Public Structure MapRec Dim Title As String Dim BorderingMap() As Integer Dim SizeX As Integer Dim SizeY As Integer Dim AttributesX As Integer Dim AttributesY As Integer Dim LayerCount As Byte Dim Layers() As LayerRec D...
Imports Microsoft.Xna.Framework Imports Microsoft.Xna.Framework.Graphics Imports Microsoft.Xna.Framework.Input ''' <summary> ''' Represents a complete dialog which is made up of one or multiple DialogueSegments ''' </summary> Public Class Dialogue ''' <summary> ''' Array which cotains all DialogueSegments of ...
Imports System Imports System.Collections.ObjectModel Imports System.Linq Imports System.Windows Imports DevExpress.Mvvm Imports DevExpress.Mvvm.DataAnnotations Imports DevExpress.Mvvm.POCO Namespace BarsDemo Public Class MVVMBarViewModel Public ReadOnly Property MessageBoxService() As IMessageBoxService ...
'========================================================================== ' ' File: RLE.vb ' Location: Firefly.Compressing <Visual Basic .Net> ' Description: RLE算法类 ' Version: 2010.06.23. ' Copyright(C) F.R.C. ' '========================================================================== ...
Public Class AdHocSavedSearchBO Public Property ReturnFields As List(Of AdHocQueryFieldBO) Public Property SearchName As String Public Property WhereClause As String Public Property UserToken As String End Class
Public Class ValeDesconto Dim Ação As New TrfGerais Private Operation As Byte Const INS As Byte = 0 Const UPD As Byte = 1 Const DEL As Byte = 2 Private Sub ValeDesconto_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load End Sub Private ...
Imports System Imports System.Collections.Generic Imports System.Linq Imports System.Text Namespace ChartsDemo Public Class PricesModel #Region "Data" Private Const PointCount As Integer = 1500 Private Shared data_Renamed As List(Of PricesModel) Public Shared ReadOnly Property Da...
Imports Seagull.BarTender.Print Imports Seagull.BarTender.Print.Database Imports Seagull.BarTender.Print.Message Imports System Imports System.IO Imports System.Data.SqlClient Imports System.Data Imports System.Text Imports System.ComponentModel Imports System.Runtime.InteropServices.Marshal Imports System.Runtime.In...
Public Class ctrlHotSpot Public ContainerClass As PointingSticker Public Title As String Public Brush As SolidBrush Public Pen As Pen = Pens.Red Public Event HotSpot_Updated(ByVal hotSpot As ctrlHotSpot) Public Sub New() ' This call is required by the designer. Initialize...
Imports System.Data.SqlClient Public Class Embarques Private idEmbarcador As Integer Private idProducto As Integer Private idVariedad As Integer Private idEnvase As Integer Private idTamano As Integer Private idEtiqueta As Integer Private fecha As Date Private fecha2 As Date Publ...
Imports System.Runtime.CompilerServices Imports System.Reflection Imports LSW.Exceptions Namespace Extension Public Module DataSetLinqHelper <Extension()> _ Public Function CopyToDataTable(Of T)(source As IEnumerable(Of T)) As DataTable Return New ObjectShredder(Of T)().Shred(source, N...
Imports System.Configuration Imports AutoMapper Imports UGPP.CobrosCoactivo.Entidades Public Class TareaObservacionDAL Inherits AccesObject(Of Entidades.TareaObservacion) Public Property ConnectionString As String ''' <summary> ''' Entidad de conección a la base de datos ''' </summary> Dim db...
Imports System.Windows.Forms Friend Class DialogOpcions Private sPiSelectedHost As String = "" Public tPuConfiguracio As Configuracio Private bPiInit As Boolean = False Private Enum eCols Studio Cam Host IP SourcePort TargetPort Protocol Total End Enum Private Sub Mostrar...
Imports System.Collections.Generic Imports System.Runtime.Serialization Namespace Route4MeSDK.DataTypes <DataContract> Public NotInheritable Class AddressGeocoded <DataMember(Name:="address", EmitDefaultValue:=False)> Public Property geocodedAddress As Address <DataMember(Name:="membe...
'============================================================================= ' Copyright © 2011 Point Grey Research, Inc. All Rights Reserved. ' ' This software is the confidential and proprietary information of Point ' Grey Research, Inc. ("Confidential Information"). You shall not ' disclose such Confidential Info...
Imports Automation Imports Automation.Components.CommandStateMachine Imports Automation.Components.Services ''' <summary> ''' Availiable for clamp-on-fly , static clamp , clamp 4 side ''' </summary> ''' <remarks></remarks> Public Class clampModule Inherits systemControlPrototype Implements IFinishab...
Imports DevExpress.XtraPrinting.BarCode.Native Imports System Imports System.Collections.Generic Imports System.Linq Namespace EditorsDemo Public Class LinearBarCodeViewModel Public Sub New() Me.BarCodeSymbology = BarCodeSymbology.Code128 Me.Text = "101" Me.BarCodeModule...
Imports Microsoft.VisualBasic.ApplicationServices Public Class Info Private Sub Start_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Me.Left = Me.Owner.Left + Me.Owner.Width / 2 - Me.Width / 2 Me.Top = Me.Owner.Top + Me.Owner.Height / 2 - Me.Height / 2 ...
Imports Microsoft.VisualBasic Imports System Imports System.Data Imports System.Linq Imports System.Windows.Forms Imports Syncfusion.Windows.Forms.Tools Imports System.Data.SqlServerCe Namespace WF_TreeNavigatorDirectory Partial Public Class Form1 Inherits Form Public Sub New() InitializeComponent() dataBa...
Imports System.Windows.Forms Module TemplateMethod Sub Main() Dim objDebitsProcessor As New DebitsProcessor() Dim objCreditsProcessor As New CreditsProcessor() Console.WriteLine("Increment the Training Expense account by $10.50...") objDebitsProcessor.SetAmount(10.5D) objDe...
' 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...
Imports BVSoftware.BVC5.Core Imports BVSoftware.BVC5.Core.Orders Imports System.IO Imports System.Text Imports BVSoftware.CredEx Partial Class CredExPostBack Inherits System.Web.UI.Page Protected Sub CredExPostBack_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load If Not Page...
#Region "Microsoft.VisualBasic::cfc4822cbf1fa8148eb74eddf2de360b, mzkit\src\mzmath\MoleculeNetworking\Networking.vb" ' Author: ' ' xieguigang (gg.xie@bionovogene.com, BioNovoGene Co., LTD.) ' ' Copyright (c) 2018 gg.xie@bionovogene.com, BioNovoGene Co., LTD. ' ' ' MIT License...
Public Class SplashWindow Public Sub New(msg As String) ' This call is required by the designer. InitializeComponent() Me.textbox_msg.Text = msg ' Add any initialization after the InitializeComponent() call. End Sub End Class
Public Class Bloco Public Property nomeArquivo As String Public Property comprimento As String Public Property profundidade As String Public Property altura As String Public Property peso As String Public Property medidas As String End Class
Imports System Imports Microsoft.SPOT Imports Microsoft.SPOT.Hardware Imports Toolbox.NETMF Imports Toolbox.NETMF.NET ' Copyright 2012 Stefan Thoolen (http://www.netmftoolbox.com/) ' ' Licensed under the Apache License, Version 2.0 (the "License"); ' you may not use this file except in compliance with the License. ...
Imports System.ComponentModel.DataAnnotations Public Class clsChargeArea Inherits EskimoBaseClass Property ID As Integer Property Description As String Property Charges As List(Of clsChargeNumber) End Class Public Class clsChargeNumber Inherits EskimoBaseClass Property ScopeNumber As Integer ...
Public Interface IClient Sub ParticipantDisconnection(name As String) Sub ParticipantReconnection(name As String) Sub ParticipantLogin(client As User) Sub ParticipantLogout(name As String) Sub BroadcastMessage(sender As String, message As String) Sub UnicastMessage(sender As String, message As ...
Imports System.Windows Imports MySql.Data.MySqlClient Imports DTO Public Class SuaSachDAL Shared con As MySqlConnection = New MySqlConnection(ConnectionDTO.Connection) ''' <summary> ''' cập nhập lại thông tin sách ''' </summary> ''' <param name="MaSach"></param> ''' <param name="TenSach"></para...
Imports System.Data.SqlClient Namespace DataObjects.TableObjects ''' <summary> ''' Provides the functionality to manage data from tbl_country ''' </summary> <Serializable()> _ Public Class tbl_country Inherits DBObjectBase #Region "Class Level Fields" ''' <summary> ''' I...