text stringlengths 43 2.01M |
|---|
#Region "Microsoft.VisualBasic::8bfaca5b5afa6584ccb3a41541f6d188, mzkit\src\visualize\MsImaging\Plot\RGBMSIPlot.vb"
' Author:
'
' xieguigang (gg.xie@bionovogene.com, BioNovoGene Co., LTD.)
'
' Copyright (c) 2018 gg.xie@bionovogene.com, BioNovoGene Co., LTD.
'
'
' MIT License
... |
'Name: Joel Murphy
'Date: Dec. 13, 2012
'Purpose: Able to enter employee information and it is stored in a structure for the output form
Option Strict On
Public Class InputForm
'Declare a structure
Friend Structure EmployeeInfo
Dim NameString As String
Dim NumberString As String
... |
Public Class fmMsGrRestricciones
Inherits MetroFramework.Forms.MetroForm 'Inherits System.Windows.Forms.Form
Public rsc As System.Resources.ResourceManager
Private pNoDoc As String, pTipo As String, pAccion As String, pCorrelativo As String
Friend WithEvents btnGuardar1 As MetroFramework.Controls.Metro... |
Imports System.Data
Imports System.Data.SqlClient
Imports System.Text
Public Class SocketRepository
Inherits Repository
Private ReadOnly _connection As SqlConnection
Private ReadOnly _roomRepository As RoomRepository
Sub New(connection As SqlConnection)
Me._connection = connection
Me... |
Imports System.Windows
Namespace MVVMDemo.Behaviors
Public Class KeyToCommandViewModel
Private privatePersons As PersonInfo()
Public Property Persons() As PersonInfo()
Get
Return privatePersons
End Get
Private Set(ByVal value As PersonInfo())
... |
Public Interface IAccount
'Текущая сумма на счете
ReadOnly Property CurentSum() As Integer
'Метод для добавления денег на счет
Sub Put(sum As Integer)
'Метод для снятия денег со счета
Sub Withdraw(sum As Integer)
'Процент начислений
ReadOnly Property Procentage() As Integer
End Interfac... |
Public Class Program
#Region " Frequenly-Used Images "
' This utility uses the same graphics across multiple forms. To minimize the size
' of the executable, these images are reused.
Public Shared Gps As Image = My.Resources.Gps
Public Shared WarningShield = My.Resources.WarningShield
Public ... |
Imports System.Data
Imports vAgenda.Funzioni
Imports System.IO
Partial Public Class DomandeConvalidaStati
Inherits vAgenda.Pagina
Private Property IdOperatore() As Integer
Get
Return CType(PageSession("IdOperatore"), Integer)
End Get
Set(ByVal value As Integer)
... |
Partial Public Class ErrorWindow
Inherits ChildWindow
Public Sub New(ByVal e As Exception)
InitializeComponent()
If e IsNot Nothing Then
ErrorTextBox.Text = e.Message + Environment.NewLine + Environment.NewLine + e.StackTrace
End If
End Sub
Public Sub New(ByVal... |
Public Class DepositDAL
Inherits CableSoft.BLL.Utility.DALBasic
Implements IDisposable
Public Sub New()
End Sub
Public Sub New(ByVal Provider As String)
MyBase.New(Provider)
End Sub
''' <summary>
''' 取得查詢可選付款種類SQL[CD078A2,CD032] ; SQL參數:BPCode,CitemCode
''' </summary>
... |
Imports System.IO
Public Class Logger
' Property variables
Private _logFile As StreamWriter
Private _startDateTime As Date
Private _logFileName As String
Private _fromPath As String
Private _toPath As String
Private _message As String
' Constants
Private Const LOG_FILE As String ... |
Public Class clsConvertir
Private expresionSalida As String
'Convierte la expresion infija a una expresion postfija
Public Function fnConvierte(expresion As String) As String
Dim expresionInfija As String = expresion
expresionSalida = ""
Dim tokens() As String = expresionI... |
#Region "Microsoft.VisualBasic::faba8430c9585a626cf67d1b28930e5f, mzkit\src\assembly\assembly\mzPack\mzWebCache\Cache.vb"
' Author:
'
' xieguigang (gg.xie@bionovogene.com, BioNovoGene Co., LTD.)
'
' Copyright (c) 2018 gg.xie@bionovogene.com, BioNovoGene Co., LTD.
'
'
' MIT Li... |
Partial Class UserControls_UpdateDetailsConfirmation_AddAutoMembership
Inherits ControlBase
Private _languageCode As String = Talent.Common.Utilities.GetDefaultLanguage
Private ucr As New Talent.Common.UserControlResource
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Ha... |
'-----------------------------------------------
' SysInfoColumns.vb (c) 2002 by Charles Petzold
'-----------------------------------------------
Imports System
Imports System.Drawing
Imports System.Windows.Forms
Class SysInfoColumns
Inherits Form
Shared Sub Main()
Application.Run(New SysIn... |
' **********************************************
' ****
' ****** Class
' ****
' **********************************************
'
Imports System.IO
Public Class DeviceRadonReport
' **********************************************
' ****
' ****** Constructor
' ****
' *************************... |
Namespace Classes
Public Class Person
Public Property FirstName As String
Public Property MiddleName As String
Public Property LastName As String
Public Property Street() As String
Public Property City As String
Public Property State As String
Public Property... |
Namespace AW.Types
Partial Public Class ProductReview
Implements ITitledObject, INotEditableOncePersistent
Public Property ProductReviewID() As Integer
#Region "ReviewerName"
Public Property mappedReviewerName As String
Friend myReviewerName As TextString
<DemoProperty(Order:=1)>
Public Re... |
Imports System.Net.Mail
Public Class SendEmail
Private _Subject As String
Private _MailTo As String
Private _HTMLString As String
Public Property MailTo() As String
Get
Return _MailTo
End Get
Set(value As String)
_MailTo = value
End Set
End ... |
#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, includ... |
' 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 distributed in th... |
Imports System.Linq
Imports System.Text
Imports DevExpress.ExpressApp
Imports DevExpress.ExpressApp.SystemModule
Imports DevExpress.XtraPrinting
Imports DevExpress.XtraGrid
Imports DevExpress.XtraGrid.Views.Grid
''' <summary>
''' This controller modifies the behavior of the ListView Export functionality to ensure that... |
' Klassenblock
Namespace _01_01_Blockstruktur
Public Module Modulblock
Public Class Klassenblock
Public Shared Sub Unterprogrammblock()
' Schleifenblock
Do
' Bedingter Anweisungsblock
If True Then
... |
Imports System.Data.Entity.ModelConfiguration
Imports StudentSection.DomainClasses
Namespace DataLayer
Public Class CoachConfiguration
Inherits EntityTypeConfiguration(Of Coach)
Public Sub New()
Me.Property(Function(t) t.Username).HasMaxLength(25)
Me.Property(Function(t) t... |
Imports System.Security.Cryptography
Public NotInheritable Class EncryptionDecryption
Private TripleDes As New TripleDESCryptoServiceProvider
Private Function TruncateHas(ByVal key As String, ByVal length As Integer) As Byte()
Dim sha1 As New SHA1CryptoServiceProvider
Dim keybyte() As Byte = Sy... |
Public Class frmViewSavedPasswords
Private Sub frmViewSavedPasswords_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
'it loads the saved passwords whenever you open this form
rtfSavedURL.Text = My.Settings.PasswordSaver
rtfSavedURL.Enabled = False
En... |
Imports System.Collections.Specialized
Imports BioNovoGene.Analytical.MassSpectrometry.Math.Spectra.Xml
Imports Microsoft.VisualBasic.Data.IO
Imports Microsoft.VisualBasic.Linq
Imports Microsoft.VisualBasic.MIME.application.json
Imports Microsoft.VisualBasic.My.JavaScript
Imports Microsoft.VisualBasic.Net.Http
Import... |
Public Class CWin
Private Declare Function GetPrivateProfileString Lib "kernel32" Alias "GetPrivateProfileStringA" (ByVal lpApplicationName As String, ByVal lpKeyName As Long, ByVal lpDefault As String, ByVal lpReturnedString As String, ByVal nSize As Long, ByVal lpFileName As String) As Integer
Private Declare Fu... |
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class FrmReportList
Inherits DevExpress.XtraEditors.XtraForm
'Form overrides dispose to clean up the component list.
<System.Diagnostics.DebuggerNonUserCode()> _
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
... |
Imports System.Text
Public Class Widget
Public Sub New(ByVal type As String, ByVal name As String, ByVal index As Integer)
Me.type = type
Me.name = name
Me.index = index
End Sub
Protected Overrides Sub Finalize()
Console.WriteLine("Finalize called for widget with index {0} ... |
' CodeContracts
'
' Copyright (c) Microsoft Corporation
'
' All rights reserved.
'
' MIT License
'
' 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 with... |
Public Class Circulo
Inherits Figura
Private _Radio As UShort
Sub New()
MyBase.New()
_Radio = Nothing
End Sub
Public Property Radio() As UShort
Get
Return _Radio
End Get
Set(value As UShort)
_Radio = value
End Set
End Pr... |
Imports System.Data.SqlClient
Partial Public Class EditSOLICITUDES_CAMBIOESTADO
Inherits System.Web.UI.Page
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
'Evaluates to true when the page is loaded for the first time.
If IsPostBack = False Then
... |
'
' Copyright (c) 2013-2013, John Mettraux, jmettraux@gmail.com
'
' 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 limitation the rights
' to use, copy... |
<Serializable()> _
Public Class DELoyaltyList
Private _loyaltyList As Generic.List(Of DELoyalty)
Public Property LoyaltyList As Generic.List(Of DELoyalty)
Get
Return _loyaltyList
End Get
Set(ByVal value As Generic.List(Of DELoyalty))
_loyaltyList = value
... |
Public Class ReceiptDetail
Public Property id As String
Public Property code As String
Public Property barcode As String
Public Property description As String
Public Property qty As Double
Public Property vat As Double
Public Property costPriceVatIncl As Double
Public Property costPrice... |
Public Class ComentarioProductoENT
Private vId As Integer
Public Property Id() As Integer
Get
Return vId
End Get
Set(ByVal value As Integer)
vId = value
End Set
End Property
Private vIdUsuario As Integer
Public Property IdUsuari... |
Public Partial Class UC_Welfare_Details
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="dao"></param>
''' <remarks... |
Imports System
Imports System.Collections.Generic
Imports System.Collections.ObjectModel
Imports System.Globalization
Imports System.Windows
Imports System.Windows.Data
Imports System.Windows.Input
Imports System.Windows.Media.Imaging
Imports System.Xml.Linq
Imports DevExpress.Mvvm
Imports DevExpress.Mvvm.DataAnnotatio... |
Imports Impacta.Dominio
Imports Impacta.Infra.Apoio
Imports Impacta.Infra.Repositorios.SistemaDeArquivos
Imports System.IO
Imports System.Configuration
Public Class ClientesForm
Implements IFormularioComErrorProvider
Private ReadOnly Property Caminho As String
Get
Return Config... |
Imports DevExpress.Xpf.DemoBase
Imports System.Data.Entity
Imports System.IO
Namespace GridDemo
Public Class PersonsDataContext
Inherits DbContext
Public Shared ReadOnly FileName As String = Path.GetFullPath("PersonData.db")
Public Sub New()
MyBase.New(SQLiteDataBaseGenerator.C... |
Imports System.Collections.Generic
Imports Grasshopper.Kernel
Imports Rhino.Geometry
Imports Rhino.Display
Imports System.Drawing
Imports Grasshopper
Public Class CustomSprite
Inherits GH_Component
''' <summary>
''' Each implementation of GH_Component must provide a public
''' constructor without a... |
Imports Microsoft.VisualBasic
Imports BVSoftware.Bvc5.Core
Public Class CheckForPriceBelowCost
Inherits BusinessRules.ProductTask
Public Overrides Function TaskName() As String
Return "Check for Price Below Cost"
End Function
Public Overrides Function TaskId() As String
Return "4EDA0... |
Public Class AStarFinder
Public allowDiagonal As Boolean
Public dontCrossCorners As Boolean
Public weight As Integer
Public diagonalMovement As DiagonalMovement
Public Sub New()
allowDiagonal = False
dontCrossCorners = True
weight = 1
diagonalMovement = DiagonalMovem... |
Imports System.Windows
Imports System.Windows.Controls
Imports System.Windows.Media
Imports Microsoft.VisualStudio.Text
Imports Microsoft.VisualStudio.Text.Editor
Imports Microsoft.VisualStudio.Text.Formatting
Imports System.Math
Imports System.Text
''' <summary>
''' CodeboxAdornment places red boxes behind all the "... |
Imports System.Data.OleDb
Public Class clsDuplicataAvulso
Private nCodigoCliente As Integer
Private nNumeroDocumento As String
Private nNotaFiscal As String
Private nControle As String
Private nDataEmissao As Date
Private nParcelas As Single
Private nVenc1 As String
Private nV... |
' Visual Basic .NET Document
Option Strict On
Module Example
Public Sub Main()
' <Snippet8>
Dim date1 As Date = #09/08/2009#
Console.WriteLine(date1.ToString("%M")) ' Displays 9
' </Snippet8>
End Sub
End Module
|
Option Infer On
Imports System.Collections.Generic
Imports Snap, Snap.Create
Public Class DeleteCategory : Inherits Snap.UI.BlockForm
' The various members of a DeleteCategory dialog object
Dim categoryListBlock As UI.Block.ListBox ' A ListBox block to show all categories in work part
Dim dele... |
Public Class WeySoiyaSettings
Private Encode_ As Text.Encoding
''' <summary>
''' エンコードの形式
''' </summary>
''' <value></value>
''' <returns></returns>
''' <remarks></remarks>
Public ReadOnly Property Encoding() As Text.Encoding
Get
Return Encode_
End Get
E... |
#Region "Microsoft.VisualBasic::56d77b1dc7b4d51b209a4075684da8ea, Rscript\Library\mzkit.quantify\Visual.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, fr... |
Public Class fPointCardLoss
'------------------------------------
' DBアクセス関連
'------------------------------------
Private oConn As OleDb.OleDbConnection
Private oCommand As OleDb.OleDbCommand
Private oDataReader As OleDb.OleDbDataReader
Private oPointData() As cStructureLib.sPoint
Pri... |
Imports StudentSection.DomainClasses
Public Interface IExcelScheduleRepository
Inherits IEntityRepository(Of ExcelSchedule)
End Interface
|
Imports System
Imports System.Collections.Generic
Imports System.Data
Imports System.Data.Entity
Imports System.Linq
Imports System.Net
Imports System.Web
Imports System.Web.Mvc
Imports StudentSection.DataLayer
Imports StudentSection.DomainClasses
Imports StudentSection.Services
Imports Microsoft.AspNet.Identity
Name... |
Imports System.Text.RegularExpressions
Namespace Web
Public Class TypeParse
''' <summary>
''' 判断对象是否为Int32类型的数字
''' </summary>
''' <param name="Expression"></param>
''' <returns></returns>
Public Shared Function IsNumeric(ByVal expression As Object) As Boolea... |
Public Class KzDrawingStyleCollection
Inherits List(Of KzDrawingStyle)
Public Overloads Sub AddRange(styles As IEnumerable(Of KzDrawingStyle), replace As Boolean)
For Each style In styles
Me.Add(style, replace)
Next
End Sub
Public Overloads Sub Add(item As KzDrawingStyle, ... |
Imports System.Collections.ObjectModel
Public Class Playlist
Private Property _playlistAll As ObservableCollection(Of PlaylistItem) = New ObservableCollection(Of PlaylistItem)()
Private Property _playlistFiltered As ObservableCollection(Of PlaylistItem) = New ObservableCollection(Of PlaylistItem)()
Privat... |
Module Messages
Sub WarningAtLine(Msg As String, LinNo As Integer)
Dim Msg1 As String = Msg + " At line " + LinNo.ToString
MessageBox.Show("Warning: " + Msg1, _
"Warning", MessageBoxButtons.OK, _
MessageBoxIcon.Exclamation, _
M... |
Imports System.Collections.Generic
Imports System.Linq
Imports System.Web
Imports System.Web.UI
Imports System.Web.UI.WebControls
Imports Facebook
Namespace FVK_Demo
Partial Public Class InvitedFriends
Inherits System.Web.UI.Page
Protected Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs... |
Public Class frmPedidosProveedor
Public Modo As Globales.ModoParaFormas = Globales.ModoParaFormas.Edicion
Public PedidoProveedor As CMDataSet.N_PedidosProveedor_ResumenRow
Private Sub frmPedidosProveedor_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
'permiso... |
#Region "Microsoft.VisualBasic::4743eebc16e983885f434b34a0a5c6e1, mzkit\src\assembly\ProteoWizard.Interop\Extensions.vb"
' Author:
'
' xieguigang (gg.xie@bionovogene.com, BioNovoGene Co., LTD.)
'
' Copyright (c) 2018 gg.xie@bionovogene.com, BioNovoGene Co., LTD.
'
'
' MIT Lic... |
Imports ESRI.ArcGIS.Framework
Imports ESRI.ArcGIS.ArcMapUI
Imports ESRI.ArcGIS.Geometry
Imports ESRI.ArcGIS.esriSystem
Imports ESRI.ArcGIS.Display
Imports ESRI.ArcGIS.Carto
Imports ESRI.ArcGIS.Geodatabase
Imports ESRI.ArcGIS.EditorExt
'**
'Nom de la composante : tooSelectReseau.vb
'
'''<summary>
'''Commande qui perme... |
Public Class frmHelp
' 14.01.2016, fixed spelling mistake
Private Sub frmHelp_Load(sender As Object, e As EventArgs) Handles MyBase.Load
Dim strTempText As String = ""
strTempText = strTempText & " APM Log Analyser is Free to use, but if you" & vbNewLine
strTempText = strTempTex... |
'nexIRC 3.0.23
'06-13-2013 - guideX
Option Explicit On
Option Strict On
Public Class clsScript
Enum eMathFunction
mNotFound = 0
mAdd = 1
mSubtract = 2
mMultiply = 3
End Enum
Enum eStorageType
sNotFound = 0
sSubParam = 1
sVariable = 2
sIRC_SET... |
Imports System.Security.Cryptography
Imports System.Web.Security
Imports System.Web.Configuration
Imports BudgeteerDAL
Public Class Security
Public Const minimumSecurityQuestions As Integer = 3
Public Enum authenticationReturnType
Success = 0
InvaidUserName = 1
InvalidPassword = 2
... |
Imports System.Text
Imports Microsoft.VisualStudio.TestTools.UnitTesting
Imports AutoNumeric
Imports MathNet.Numerics.LinearAlgebra
Imports MathNet.Numerics.LinearAlgebra.Matrix(Of Double)
Imports AutoNumericTester.common
Imports System.Diagnostics
<TestClass()> Public Class htmEdgeElementaryTest
Enum ... |
Imports System.Collections.Generic
Imports System.Linq
Imports System.Web
Imports System.Web.UI
Imports System.Web.UI.WebControls
Imports SelectPdf
Namespace SelectPdf.Samples
Partial Public Class html_to_pdf_converter_links
Inherits System.Web.UI.Page
Protected Sub Page_Load(sender As Object, e A... |
Imports System.Data.SqlClient
Imports Cerberus
Public Class ExportarInformacion
Implements InterfaceTablas
Public IdExportarInformacion As Integer
Public nombreExportacion As String
Public pk_as As String
Public sql As String
Public ptp As String
Public tabla As String
Private Ambien... |
Namespace BusinessObject.商品.価格変更
Public Class スケジュール
Inherits CollectionBase
Private m_リスト As New List(Of 予定)
Public Sub 追加する(項目 As 予定)
予定は一意である(項目)
m_リスト.Add(項目)
End Sub
Private Sub 予定は一意である(予定 As 予定)
If 予定を検索する(予定.商品ID, 予定.価格区分, 予定.適... |
@Code
ViewBag.Title = "Modals"
Layout = "~/Views/Shared/_Layout.vbhtml"
End Code
@section Styles
<style>
.example-modal .modal {
position: relative;
top: auto;
bottom: auto;
right: auto;
left: auto;
display: block;
... |
Imports System.Data
Imports System.ServiceModel
Imports System.ServiceModel.Activation
Imports System.ServiceModel.Web
Imports Seasar.Quill
Imports NEXS.ERP.CM.Common
Imports NEXS.ERP.CM.BL
''' <summary>
''' 共通検索AJAXサービス
''' </summary>
<ServiceContract(Namespace:="")>
<AspNetCompatibilityRequirements(RequirementsMo... |
Option Explicit On
Option Strict On
Imports Microsoft.VisualBasic
Module SampleMain
Sub Main()
Const text1 As String = "This is a demo" & ControlChars.CrLf & "This is a test of the diff implementation, with some text that is deleted." & ControlChars.CrLf & ControlChars.CrLf & vbTab & "- a 1st bullet poi... |
'---------------------------------------------------------------------------
' Author : Nguyễn Khánh Tùng
' Company : Thiên An ESS
' Created Date : Friday, July 24, 2009
'---------------------------------------------------------------------------
Imports System
Imports System.Data
Imports System.Data.SqlClient
Imports... |
Imports System.Windows.Forms
Public Class dlgWebBrowser
Private m_bFermetureAuto As Boolean
Public Property FermetureAuto() As Boolean
Get
Return m_bFermetureAuto
End Get
Set(ByVal value As Boolean)
m_bFermetureAuto = value
End Set
End Property
P... |
Imports LyriX.Document.ObjectModel
Imports System.ComponentModel
Namespace Document
''' <summary>
''' 用于读取 LyriX 包所包含的信息。
''' </summary>
Public NotInheritable Class LyriXPackage
Inherits DataContainer
''' <summary>
''' LyriX 包的默认小写后缀名“lrcx”,不包括点。
''' </summary>
... |
Imports devDept.Eyeshot
Imports devDept.Eyeshot.Entities
Imports devDept.Eyeshot.Labels
Imports devDept.Geometry
Imports devDept.Graphics
Imports System.Drawing
Class DrawLight
Private Type As Integer = -1
' 0: point, 1:spot, 2: directional, 3: directional Stationary
Private NumLight As Integer = -1
'... |
'---------------------------------------------
' ExplorerLike.vb (c) 2002 by Charles Petzold
'---------------------------------------------
Imports System
Imports System.Drawing
Imports System.Windows.Forms
Class ExplorerLike
Inherits Form
Private filelist As FileListView
Private dirtree As Dir... |
Imports System.Xml.Serialization
Namespace Data
Public Class DataMappingItem
#Region "Field"
Private _Name As String
Private _MapFrom As String
Private _MapTo As String
#End Region
#Region "Properties"
<XmlAttribute("Name")> _
Public Property Name() As String
Ge... |
Public Class frmConverter
'Variable Declaration for Various Currencies
Dim Nigerian_Naira As Double = 360.0
Dim US_Dollar As Double = 1.0
Dim Indonesian_Rupiah As Double = 13.0
Dim Philippine_Peso As Double = 52.46
Dim Indian_Rupee As Double = 64.88
Dim Canadian_Dollar As Double = 1.29
... |
Module modDU32_Checks_v3_3
Public Sub DU32_Checks_v3_3()
' DU32 7 Structure is bependent on the AP Firmware Version Number being used.
'Firmware 2.9.x (Switch Off and Uncheck the DU32 button)
' static struct AP_System{
' uint8_t GPS_light : 1; // 1 // Solid... |
Public Class EmployeeManagements
Private Sub ModifyEmployee_FormClosed(sender As Object, e As FormClosedEventArgs) Handles Me.FormClosed
Application.Exit()
End Sub
Private Sub ModifyEmployee_Load(sender As Object, e As EventArgs) Handles MyBase.Load
Me.Location = AdminPage.Location
... |
Friend Interface IConnection
Function GetStatus() As ConnectionStatus
Sub Open()
Sub Close()
Function ExecuteQuery(query As String) As ISqlResult
Sub ExecuteNonQuery(query As String)
End Interface
|
Imports System
Imports System.Collections.Generic
Imports System.Collections.ObjectModel
Imports System.IO
Imports System.Reflection
Imports System.Xml.Serialization
Imports DevExpress.DemoData.Utils
Imports DevExpress.Mvvm
Imports DevExpress.Mvvm.POCO
Imports DevExpress.Xpf.DemoBase.Helpers
Namespace DockingDemo.View... |
'
' Created by SharpDevelop.
' User: Doka
' Date: 18/06/2017
' Time: 00:15
'
' To change this template use Tools | Options | Coding | Edit Standard Headers.
'
Public Partial Class MainForm
Enum FsModifiers
None = 0 'aucune touche
Alt = 1
end Enum
Declare Auto ... |
Imports Talent.eCommerce
Imports System.Data
'--------------------------------------------------------------------------------------------------
' Project Trading E-Commerce
'
' Function User Controls - Advanced Search Type 3
'
' Date Feb 2... |
Imports System.ComponentModel
Public Class clsPOItemEditor
Private pPurchaseOrder As dmPurchaseOrder
Private pPOItem As dmPurchaseOrderItem
Private pStockItem As dmStockItem
Public Sub New(ByVal vPurchaseOrder As dmPurchaseOrder, ByVal vPOItem As dmPurchaseOrderItem)
pPurchaseOrder = vPurchaseOrder
... |
Namespace DomainClasses
Public Interface IObjectWithState
Property State As State
End Interface
End Namespace
|
Imports System
Imports System.Collections.ObjectModel
Imports DbExtensions
Namespace Northwind
<Table(Name:="Shippers")>
Public Class Shipper
<Column>
Property CompanyName As String
<Column>
Property Phone As String
<Column(IsPrimaryKey:=True, IsDbGenerated:=True)>
Proper... |
Option Explicit On
Imports SAPbobsCOM
Imports SAPbouiCOM
Module modCreateNewJob
Public Function DoCreateNewJobItemEvent(ByRef pVal As SAPbouiCOM.ItemEvent, ByRef BubbleEvent As Boolean, ByRef sErrDesc As String) As Boolean
DoCreateNewJobItemEvent = False
Dim oNewJobForm As SAPbouiCOM.Form = Nothi... |
Imports DCS.PlaycardBase.CardData
Imports DCS.PlaycardBase.Core.CardDomain
Namespace Domain.Sales.Fulfillment
Public Class CardOperation
Private _counterTransaction As CounterTransaction
Private _operationType As CardOperationTypesEnum
Private _card As CardInfo
Private _newStatusId... |
Public Partial Class Index5
Inherits System.Web.UI.Page
Dim wcfProxy As BudgeteerService.BudgeteerClient = New BudgeteerService.BudgeteerClient
Private Sub Page_Init(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Init
wcfProxy = DirectCast(Session("Budgeteer.ClientProxy"), Budget... |
'==========================================================================
'
' File: NumericOperations.vb
' Location: Firefly.Core <Visual Basic .Net>
' Description: 数值操作
' Version: 2010.11.25.
' Copyright(C) F.R.C.
'
'========================================================================... |
Option Strict On
Public Class Boat
Private mstrMake As String
Private mintModel As Integer
Public Sub New(ByVal bvstrMake As String, ByVal bvintModel As Integer)
subSetMake(bvstrMake)
Me.prpModel = bvintModel
End Sub
Public Function funGetMake() As String
Retu... |
'+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
'* Copyright (C) 2013-2016 NamCore Studio <https://github.com/megasus/Namcore-Studio>
'*
'* This program is free software; you can redistribute it and/or modify it
'* under the terms of the GNU General Public License as publis... |
Public Class UDM_ExConfigBooking
Public ID_K As String
Public ShipTo1 As String
Public ULD As Integer
Public MinULD As Integer
Public MaxULD As Integer
Public BaseHeight As Decimal
Public Length As Decimal
Public Width As Decimal
Public Height As Decimal
P... |
Imports DotNetNuke.Framework
Imports DotNetNuke.Web.Client.ClientResourceManagement
Public Class ModuleBase
'Inherits DotNetNuke.Entities.Modules.UserUserControlBase
Inherits DotNetNuke.Entities.Modules.PortalModuleBase
#Region " Properties "
Private _security As ContextSecurity
Public Property Security() As Cont... |
'==============================================================================
'BSD License
'-----------
'Copyright (c) 2014, and Kevin Fodor, All rights reserved.
'Redistribution and use in source and binary forms, with or without
'modification, are permitted provided that the following conditions are met... |
Module mdlCommon
Public gDBType As Integer
Public Enum DatabaseType As Byte
SQLServer = 0
Oracle9i = 1
End Enum
End Module
|
Partial Class UI_WebControls_Application_Common_InLineAlert
Inherits System.Web.UI.UserControl
Public Enum Type
Information
Warning
Critical
End Enum
Public Sub DisplayAlert(ByVal pTitle As String, ByVal pType As Type, ByVal pMessage As String)
Me.Visible =... |
Imports Route4MeSDKLibrary.Route4MeSDK.QueryTypes
Imports System.Collections.Generic
Imports System.Runtime.Serialization
Namespace Route4MeSDK.DataTypes
<DataContract>
Public Class AddressForGeocoding
Inherits GenericParameters
<DataMember(Name:="rows", EmitDefaultValue:=False)>
Publ... |
'RIEmail
'
'Application uses EMAILPKG to determine who receives the emails and the
' content of the emails.
'
' 5/2010 - Schedule
' OverdueActions - emails sent every Friday
' OverdueProjects - emails sent every Monday
' Change sub routines to have more robust error handling.
' The Parameters are
' str... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.