text stringlengths 43 2.01M |
|---|
Imports Microsoft.VisualBasic
'--------------------------------------------------------------------------------------------------
' Project Trading E-Commerce
'
' Function User Details Control
'
' Date Mar 2007
'
' Author ... |
Imports System
Imports System.Collections.Generic
Imports System.Collections.ObjectModel
Imports System.Linq
Imports DevExpress.Diagram.Core
Imports DevExpress.Xpf.Diagram
Namespace DiagramDemo
Public Class DiagramEventsInfo
Private Shared ReadOnly EAction As New EventArgInfo(Of ItemsActionKind)("Action", ... |
Public Class LogEntry
Enum LogEntryType
Information = 1
Err = 2
Warning = 3
End Enum
Enum LogEntryGroup
General = 1
Settings = 2
Queue = 3
Users = 4
Explorer = 5
End Enum
Private ReadOnly _mType As LogEntryType
Private ReadOnly _mG... |
Imports Autodesk.AutoCAD.Runtime
Imports Autodesk.AutoCAD.ApplicationServices
Imports Autodesk.AutoCAD.DatabaseServices
Imports Autodesk.AutoCAD.Geometry
<CommandMethod("AddPointAndSetPointStyle")> _
Public Sub AddPointAndSetPointStyle()
'' Get the current document and database
Dim acDoc As Document = Application... |
Imports System.Xml
Imports System.Configuration
Imports System.Net
Imports System.Text
Imports System.Text.RegularExpressions
Imports System.IO
Imports System.Security.Cryptography
Imports Uiuc.Library.Premis
Imports Uiuc.Library.Medusa
Imports Uiuc.Library.MetadataUtilities
''' <summary>
''' Represents a... |
Imports System.Numerics
Imports Microsoft.Graphics.Canvas
Imports Microsoft.Graphics.Canvas.Effects
Imports Windows.Storage
Imports Windows.UI
NotInheritable Class App
Inherits Application
Public Const CWIDTH = 320
Public Const CHEIGHT = 240
Public Property Pixels As Color()
Public Event Loaded ... |
Imports System.Data
''' <summary>
''' Employee and Store Email Maintenance Page
''' </summary>
Partial Class Master_Default
Inherits System.Web.UI.Page
#Region "Properties"
''' <summary>
''' Gets or sets the page number details store.
''' </summary>
''' <value>
''' The page number details store... |
Imports Microsoft.VisualBasic
Imports System
Imports System.ComponentModel
Imports System.Windows
Imports System.Linq
Imports System.Windows.Controls
Imports System.Windows.Controls.Primitives
Imports System.Windows.Input
Imports System.Windows.Markup
Imports System.Windows.Media
Imports Drawing = System.Drawing
Import... |
Public Class CoffeeOrderForm
Dim CAPPUCCINO_PRICE As Decimal = 3.5
Dim ESPRESSO_PRICE As Decimal = 3.0
Dim LATTE_PRICE As Decimal = 2.25
Dim ICED_LATTE_PRICE As Decimal = 2.75
Dim ICED_CAPPUCCINO_PRICE As Decimal = 2.75
Dim TAKEOUT_TAX As Decimal = 0.0725
Private Sub GroupBox1_En... |
Public Class SoilHandlingPlanBO
Public Property PermitKey As Integer
Public Property SoilHandlingPlanDescription As String
Public Property ProposedSoilSalvageDepth As List(Of ProposedSoilSalvageDepthDO)
Public Property RedistributionThickness As List(Of RedistributionThicknessDO)
End Class
|
Public Class DebtTrackerReport
Public Property [date] As Date
Public Property amount As Double
Public Property reference As String
Public Property name As String
End Class
|
Public MustInherit Class Operacion
Public MustOverride Sub AcomodarFormulario(ByRef form As RenombrarPage)
Public MustOverride Sub Armar(ByRef form As RenombrarPage)
Public MustOverride Function Operar(ByVal path As String) As String
Public MustOverride Property Nombre As String
Public MustOverrid... |
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class Form1
Inherits System.Windows.Forms.Form
'Form overrides dispose to clean up the component list.
<System.Diagnostics.DebuggerNonUserCode()> _
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
Try
... |
Namespace Helpers
Public Class Utils
Public Shared Function ParseInteger(s As String, defaultValue As Integer) As Integer
Dim result As Integer = defaultValue
Integer.TryParse(s, result)
Return result
End Function
End Class
End Namespace |
Public Class Configuration
Private Shared ReadOnly _items As IDictionary(Of String, String) = New Dictionary(Of String, String)
Shared Sub SetItem(ByVal key As String, ByVal value As String)
AddOrModify(key, value)
End Sub
Shared Sub SetItem(ByVal key As String, ByVal value As Integer)
... |
#Region "Microsoft.VisualBasic::e656c5f56a02ba8248617c76153a5700, mzkit\src\assembly\assembly\MarkupData\mzML\XML\MsData\spectrum.vb"
' Author:
'
' xieguigang (gg.xie@bionovogene.com, BioNovoGene Co., LTD.)
'
' Copyright (c) 2018 gg.xie@bionovogene.com, BioNovoGene Co., LTD.
'
'
... |
Imports System.Security.Cryptography
Imports System.Runtime.Serialization
Imports System.Reflection
Imports MP.Details.IO
Imports MP.Details.Serialize
'Imports MP.Details.Security
Imports MP.Details.Sys
Imports AP = MP.Utils.Common.AppProperties
Namespace Utils
Namespace Common
Public Class MyLog
Public... |
#Region "Microsoft.VisualBasic::af84cd48b8aea6bf935184af1bc0637c, mzkit\src\mzmath\TargetedMetabolomics\LinearQuantitative\PeakAreaMethods.vb"
' Author:
'
' xieguigang (gg.xie@bionovogene.com, BioNovoGene Co., LTD.)
'
' Copyright (c) 2018 gg.xie@bionovogene.com, BioNovoGene Co., LTD.
'... |
Public Class RPG_Dice
Sub New()
Console.Title = "RPG Dice"
Randomize()
RB = New List(Of String)
End Sub
Protected Overrides Sub Finalize()
RB = Nothing
End Sub
Private RC As Integer = 1 'roll count
Private RB As List(Of String) 'roll buffer
Private UI As Inte... |
#Region "Microsoft.VisualBasic::c4c2e5c01056f8c830d295188f3013b6, mzkit\src\mzmath\TargetedMetabolomics\GCMS\QuantifyAnalysis\ReferenceLibrary.vb"
' Author:
'
' xieguigang (gg.xie@bionovogene.com, BioNovoGene Co., LTD.)
'
' Copyright (c) 2018 gg.xie@bionovogene.com, BioNovoGene Co., LTD.
... |
Imports System
Imports System.Data.Entity
Imports System.ComponentModel.DataAnnotations.Schema
Imports System.Linq
Partial Public Class MovilModel
Inherits DbContext
Public Sub New()
MyBase.New("name=MovilModel")
End Sub
Public Overridable Property Hogares As DbSet(Of Hogares)
Public Over... |
' ***********************************************************************
' Author : Elektro
' Modified : 15-March-2015
' ***********************************************************************
' <copyright file="FormDragger.vb" company="Elektro Studios">
' Copyright (c) Elektro Studios. All rights reserved.
' <... |
Imports Microsoft.VisualBasic
Imports System
Imports System.ComponentModel
Imports System.Windows.Forms
Imports Neurotec.Biometrics.Standards
Partial Public Class RawFaceImageOptionsForm
Inherits AddFaceImageForm
Public Enum RawFaceImageOptionsFormMode
Load = 1
Save = 2
End Enum
Public Sub New()
... |
Public Class clsCustomerFeed
Inherits clsCustomer
Sub New(r As SqlClient.SqlDataReader)
Me.New(New DataRecord(r))
End Sub
Sub New(r As DataRow)
Me.New(New DataRecord(r))
End Sub
Sub New()
MyBase.New
End Sub
Sub New(r As DataRecord)
MyBase.New(r)
En... |
Partial Class _Default
Inherits Page
Private Sub GridView1_RowCommand(ByVal sender As Object, ByVal e As GridViewCommandEventArgs) Handles GridView1.RowCommand
' Insert data if the CommandName == "Insert"
' and the validation controls indicate valid data...
If e.CommandName = "Insert"... |
Imports TalentSystemDefaults
Imports TalentSystemDefaults.DataEntities
Imports TalentSystemDefaults.DataAccess.ConfigObjects
Partial Class UpdateModuleConfiguration
Inherits System.Web.UI.Page
Const NEWLINE As String = "<br>"
Const TAB As String = " "
Protected Sub Page_Load(se... |
#Region "Microsoft.VisualBasic::ecafd73a2f8910ec39f1c5c3dcdfca77, mzkit\src\metadb\FormulaSearch.Extensions\AtomGroups\AtomGroupHandler.vb"
' Author:
'
' xieguigang (gg.xie@bionovogene.com, BioNovoGene Co., LTD.)
'
' Copyright (c) 2018 gg.xie@bionovogene.com, BioNovoGene Co., LTD.
'
... |
Imports cv = OpenCvSharp
Imports System.Runtime.InteropServices
Module MinTriangle_Exports
<DllImport(("CPP_Classes.dll"), CallingConvention:=CallingConvention.Cdecl)>
Public Sub MinTriangle_Run(inputPtr As IntPtr, numberOfPoints As Int32, outputTriangle As IntPtr)
End Sub
End Module
Public Class Area_Min... |
Imports System
Imports System.Runtime.InteropServices
Namespace Files.SevenZip.Compression.RangeCoder
<StructLayout(LayoutKind.Sequential)> _
Friend Structure BitTreeDecoder
Private Models As BitDecoder()
Private NumBitLevels As Integer
Public Sub New(ByVal numBitLevels As Integer)
... |
Imports System.Data
Imports System.Data.SqlClient
''' <summary>
''' Lists Personal Information Update
''' </summary>
Partial Class Master_Default
Inherits System.Web.UI.Page
Private GlobalFunctions As New GlobalFunctions
#Region "Main"
#Region "Properties"
Public Property GlobalFunctionsProperty() As Globa... |
Imports Amazon
Imports Amazon.S3
Imports Amazon.S3.Model
Imports System.Configuration
Public Class Amazon_Utils
Public Shared AWSAccessKeyID As String = ConfigurationManager.AppSettings("AWSAccessKey")
Public Shared AWSSecretAccessKeyID As String = ConfigurationManager.AppSettings("AWSSecretKey")
Public... |
Imports System.Runtime.InteropServices
''' <summary>
''' Demonstrates how to toggle two Checkbox columns on a row of a
''' DataGridView bound to a DataTable from a BindingSource control.
''' </summary>
''' <remarks>
''' * If your DataGridView is not bound to a DataSource then simply update
''' the current cell val... |
Public Class frmFindandReplace
Dim txtClientArea As TextBox
Private Sub frmFindandReplace_Load(sender As Object, e As EventArgs) Handles MyBase.Load
Me.Show()
TextBoxSearch.Focus()
End Sub
Private Sub replaceButton_Click(sender As Object, e As EventArgs) Handles replaceButton.Click
... |
Namespace Logging
Public MustInherit Class Device : Implements IEquatable(Of Device)
Private ReadOnly _device_id As Integer = Utility.IdentificationGenerator.GetNext(Of Device)
Public MustOverride Sub AddEntry(entry As Entry)
Public Overrides Function Equals(obj As Object) As Boolean
... |
Namespace ExceptionHandlers
Public Class EmailExceptionHandler
Implements IExceptionHandler
Public ReadOnly Property [Continue] As Boolean Implements IExceptionHandler.Continue
Get
Return True
End Get
End Property
Public Sub Report(ByVal ex ... |
Public Class WaitCursor
Implements System.IDisposable
Private prevCursor As System.Windows.Forms.Cursor
Public Sub New()
prevCursor = System.Windows.Forms.Cursor.Current
System.Windows.Forms.Cursor.Current = Windows.Forms.Cursors.WaitCursor
End Sub
Private disposedValue As Boole... |
Public Class LGT_RECIPE_GROUP_TO
Private _XML_DRUG_RECIPE_GROUP As New XML_DRUG_RECIPE_GROUP
Public Property XML_DRUG_RECIPE_GROUP() As XML_DRUG_RECIPE_GROUP
Get
Return _XML_DRUG_RECIPE_GROUP
End Get
Set(ByVal value As XML_DRUG_RECIPE_GROUP)
_XML_DRUG_RECIPE_GROU... |
'Property Description
'sunrise sunrise (top edge of the sun appears on the horizon)
'sunriseEnd sunrise ends (bottom edge of the sun touches the horizon)
'goldenHourEnd morning golden hour (soft light, best time for photography) ends
'solarNoon solar noon (sun is in the highest position)
'goldenHour evening golde... |
'=============================================================================
'
' Copyright 2008 Siemens Product Lifecycle Management Software Inc. All Rights Reserved.
'
'=============================================================================
'
' ==============================================================... |
Public Class Form1
Public Shared ScaleVal As Integer = 4000
Public Shared Coord_Scale As Double = 0.01
Const MidPtX As Integer = 400
Const MidPtY As Integer = 400
Const XNExt As Integer = -8
Const XPExt As Integer = 9
Const YNExt As Integer = -10
Const YPExt As Integer = 11
... |
Public Class ImportPage
Private _pro As Project
Private Sub btnOpen_Click(sender As Object, e As EventArgs) Handles btnOpen.Click
Dim ov As New OpenFileDialog
ov.Filter = $"*{Project.FILE_EXTENTION}|*{Project.FILE_EXTENTION}"
If ov.ShowDialog = DialogResult.OK Then
txtFileP... |
Imports System.Data.Common
Imports CableSoft.BLL.Utility
Imports System.Web
Public Class DVRData
Inherits BLLBasic
Private _DAL As New DVRDataDAL(Me.LoginInfo.Provider)
Private Const FCurrectTableName As String = "DVRData"
Public Sub New()
End Sub
Public Sub New(ByVal LoginInfo As CableSoft.B... |
Imports Microsoft.VisualBasic
Imports System
Imports System.IO
Imports Neurotec.Biometrics
Imports Neurotec.Biometrics.Client
Imports Neurotec.IO
Friend Class Program
Private Const DefaultAddress As String = "127.0.0.1"
Private Const DefaultAdminPort As Integer = 24932
Private Shared Function Usage() As... |
Public Class Form1
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
Dim nums() As Integer = {1, 2, 2, 3, 4, 5, 5, 5, 6, 7, 7, 7, 7}
Dim al As New ArrayList()
al.AddRange(nums)
'-- แสดงข้อมูลเดิมในอาร์เรย์
Label2.Text = ""
For i = 0 To al.... |
Public Class clsFornecedor
Private _ID As Integer
Private _Codigo As Integer
Private _Nome As String
Private _FoneRes As String
Private _FoneCel As String
Private _Email As String
Private _Endereco As String
Private _Bairro As String
Private _Cidade As String
Private _Observacao... |
' ===================================================================
'
' Copyright (c) 2004 UGS
' Unpublished - All rights reserved
'
'
' ===================================================================
'******************************************************************************... |
Imports System.Configuration
Imports AutoMapper
Imports UGPP.CobrosCoactivo.Entidades
Public Class MaestroTitulosDocumentosDAL
Inherits AccesObject(Of Entidades.MaestroTitulosDocumentos)
Public Property ConnectionString As String
''' <summary>
''' Entidad de conección a la base de datos
''' </sum... |
Imports Microsoft.VisualBasic
Imports System.Data
Imports System.Data.SqlClient
''' <summary>
'''
''' </summary>
Public Class TrainingProfileDAL
''' <summary>
''' Updates the training request.
''' </summary>
''' <param name="strHdnTrainingId">The string HDN training identifier.</param>
''' <param ... |
Imports System.Numerics
''' <summary>
''' 向量帮助类
''' </summary>
Public Class VectorHelper
''' <summary>
''' 返回向量集合的平均位置
''' </summary>
Public Shared Function GetAveratePosition(positions As IEnumerable(Of Vector2)) As Vector2
Dim result As Vector2
Dim x As Single = positions.Sum(Function... |
Imports System
Imports System.Drawing
Imports System.Runtime.InteropServices
Imports System.Windows.Forms
Imports ESRI.ArcGIS.ADF.BaseClasses
Imports ESRI.ArcGIS.ADF.CATIDs
Imports ESRI.ArcGIS.Editor
Imports ESRI.ArcGIS.esriSystem
Imports ESRI.ArcGIS.Framework
Imports ESRI.ArcGIS.Geometry
<ComClass(All_ZipperTask.Clas... |
Public Class Player
'For Distributing Chess pieces to location on the board
Public Sub New(ByRef Side As Boolean)
SetUpChess(Side)
End Sub
Private Sub SetUpChess(ByVal Side As Boolean)
If Side = True Then 'Black Side Chess
For a = 1 To 16
Select Case a
... |
#Region "Microsoft.VisualBasic::ea830019206951f86ac8acc3d3f1fe85, mzkit\src\metadb\Chemoinformatics\Lipid\Chain.vb"
' Author:
'
' xieguigang (gg.xie@bionovogene.com, BioNovoGene Co., LTD.)
'
' Copyright (c) 2018 gg.xie@bionovogene.com, BioNovoGene Co., LTD.
'
'
' MIT License
... |
' Licensed to the .NET Foundation under one or more agreements.
' The .NET Foundation licenses this file to you under the MIT license.
Option Strict On
Option Explicit On
Imports System.ComponentModel
Namespace Microsoft.VisualBasic.ApplicationServices
''' <summary>
''' Abstract class that defines the appl... |
Imports DevExpress.Xpo
Imports System.ComponentModel
Imports DevExpress.Persistent.Base
Public Structure SYSRPO_ArInvoicePayKey
<Persistent("Customer"), Browsable(False)>
Public Customer As String
<Persistent("Invoice"), Browsable(False)>
Public Invoice As String
<Persistent("DocumentType"), Browsa... |
REM Five-question quiz program
REM by Michael Dao
REM Poses 5 questions about (your topic) and
REM corrects user answers and
REM displays running scores and comments about the user's progress.
REM Started: 13/03/2014
Public Class frmQuiz
Private Sub frmQuiz_Load(ByVal sender As System.Object, ByVal e As System.Ev... |
Public Class Articoli
Inherits System.Web.UI.Page
Private bolIns, bolMod, bolDel As Boolean
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
If IsNothing(Session("UserId")) Then
Response.Redirect("Account/Login.aspx")
Exit Sub
... |
Option Explicit On
Public Class Rol
Private Shared Function dsToLst(ds) As List(Of BE.Rol)
Dim result As New List(Of BE.Rol)
For Each r As DataRow In ds.Tables(0).Rows
result.Add(drToObj(r))
Next
Return result
End Function
Private Shared Function drToObj(r As ... |
Public Class InstalledPlugin
Private _name As String
Private _active As Boolean
Private _readonly As Boolean
Public ReadOnly Property Name As String
Get
Return _name
End Get
End Property
Public ReadOnly Property Active As Boolean
Get
... |
Imports System.Resources
Imports System
Imports System.Reflection
Imports System.Runtime.InteropServices
' General Information about an assembly is controlled through the following
' set of attributes. Change these attribute values to modify the information
' associated with an assembly.
' Review the val... |
Option Explicit On
Option Strict On
''' <summary>
''' List項目保持
''' </summary>
''' <remarks></remarks>
Public Class ListItem
Public Property Text As String
Public Property Value As String
End Class
|
Option Explicit On
Option Strict On
Public Class frmView
#Region "Private Declaration"
Private blnStart As Boolean = True
#End Region
#Region "Initialize Form"
Private Sub Form_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Me.Initialization()
End Sub
Pri... |
Imports System.Web.SessionState
Imports System.Web.HttpContext
Imports System.Web
Namespace Helper
Public Class Session
Public ohttpContextCurrent As HttpContext
Public Sub New(ByRef _httpContextCurrent As HttpContext)
Try
If _httpContextCurrent IsNot Not... |
Imports System.Collections.Generic
'===================================================================================================================================
'Projet : Vinicom
'Auteur : Marc Collin
'Création : 23/06/04
'=========================================================================================... |
Imports Microsoft.Win32
Imports System.IO
Module Directories
' Fallout directories
Private _install As String
Private _data As String
Private _mods As String
Private _modcache As String
Private _temp As String
Private _download As String
' Windows directories
Private ... |
Imports Xunit
Namespace W.Tests.Runtime
Public Class MathUnitTests
<Theory>
<InlineData(5, 5)>
<InlineData(-5, 5)>
<InlineData(0, 0)>
<InlineData(42, 42)>
<InlineData(5.5, 5.5)>
<InlineData(-5.5, 5.5)>
<InlineData(Integer.MinValue + 1, Integer.MaxValu... |
Imports System.ComponentModel
Public Class InstalledPlugins
Inherits List(Of InstalledPlugin)
Private _readonly_plugins() As String = {"fallout4.esm"}
Private _plugin_files() As String = {"*.esp", "*.esm"}
' ##### EVENTS #######################################################################... |
Public Class MeetingDetail
Public MeetingTitle As String
Public MeetingCategoryId As Integer
Public MeetingCategoryName As String
Public MeetingDateAdded As Date
Public MeetingStartDate As Date
Public MeetingEndDate As Date
Public MeetingSortOrder As Integer
Public MeetingAgenda As Str... |
Imports System.Drawing
Imports Aspose.Tasks.Saving
'
'This project uses Automatic Package Restore feature of NuGet to resolve Aspose.Tasks for .NET API reference
'when the project is build. Please check https://docs.nuget.org/consume/nuget-faq for more information.
'If you do not wish to use NuGet, you can manually ... |
Public Class Rechnung
Public Property Kunde As String
Public ReadOnly Property Summe As Integer
Public Property RechnungPositionen() As List(Of Positionen)
Public Sub New()
_RechnungPositionen = New List(Of Positionen)
End Sub
Public Sub AddPosition(p As Positionen)
Dim max As I... |
Imports System.Threading
''' <summary>
''' Dialogové okno reprezuntující běh programu, sledovaný proces si okno spustí samo
''' </summary>
Public Class ProgressDialog
Private _image As BitmapImage
''' <summary>
''' Ikona programu
''' </summary>
''' <returns></returns>
Public Property Image
Get
... |
Option Explicit On
Option Strict On
Imports Security
Imports System.Collections.Generic
Partial Class pages_CallDataProcedure
Inherits System.Web.UI.Page
Private mobjCaller As clsDataProcedureCaller
''' <summary>
''' Handles the PreInit event of the Page control. PreInit
''' is where we verify... |
Imports System.Data
Imports vAgenda.Funzioni
Imports System.IO
Partial Public Class RubricaPersona
Inherits vAgenda.Pagina
Private Enum PageState
insert = 2
edit = 4
End Enum
Public Property PersonaCorrente() As DataRow
Get
Return CType(PageSession("PersonaCorrent... |
Public Class dbfk
Private _name As String
Private _col As String
Private _table As String
Public Sub New(ByVal name As String, ByVal col As String, ByVal table As String)
Me._col = col
Me._name = name
Me._table = table
End Sub
Public ReadOnly Property FOREIGNKEY() As St... |
Public Interface iExcelNumbericRef
Property ExcelRef As Integer
End Interface
|
Sub Main()
'set the following flag to True to attach to an existing instance of the program
'otherwise a new instance of the program will be started
Dim AttachToInstance As Boolean
AttachToInstance = False
'set the following flag to True to manually specify the path to ETABS.exe
'this allows for a connect... |
Imports Entidades
Imports System.Data.SQLite
Public Class ADConfiguracion
'Modificar la configuración de la BD.
Public Sub ActualizarTodo(ByVal newConfig As EConfiguracion, ByVal oldConfig As EConfiguracion)
GC.Collect()
Using cnx As New SQLiteConnection(connString)
cnx.Open()
... |
'
' Copyright (c) Clevergy
'
' The SOFTWARE, as well as the related copyrights and intellectual property rights, are the exclusive property of Clevergy srl.
' Licensee acquires no title, right or interest in the SOFTWARE other than the license rights granted herein.
'
' conceived and developed by Marco Fagnano (D.R.... |
''' <summary>Form to create and add a contract</summary>
Public Class ConAdd
'--------------------------------[Variables]--------------------------------
Private ReadOnly MyUser As User
'--------------------------------[Initialization]--------------------------------
Public Sub New(User As User)
... |
Imports System
Imports Microsoft.VisualBasic
Imports ChartDirector
Public Class depthbar
Implements DemoModule
'Name of demo module
Public Function getName() As String Implements DemoModule.getName
Return "Depth Bar Chart"
End Function
'Number of charts produced in this demo module
Pu... |
Imports cv = OpenCvSharp
Imports System.Runtime.InteropServices
Imports System.IO
Module Retina_CPP_Module
<DllImport(("CPP_Classes.dll"), CallingConvention:=CallingConvention.Cdecl)>
Public Function Retina_Basics_Open(rows As Int32, cols As Int32, useLogSampling As Boolean, samplingFactor As Single) As IntPt... |
#Region "Microsoft.VisualBasic::a33567ab4c3c5680b0747273660b5ecc, mzkit\src\metadb\MoNA\Metadata\DataReader.vb"
' Author:
'
' xieguigang (gg.xie@bionovogene.com, BioNovoGene Co., LTD.)
'
' Copyright (c) 2018 gg.xie@bionovogene.com, BioNovoGene Co., LTD.
'
'
' MIT License
... |
Imports System.Windows.Forms
Module Keyboard
Public Sub sendKeyPress(ByVal key As Keys)
sendKeyDown(key)
sendKeyUp(key)
End Sub
Public Sub sendUnicodeKeyPress(ByVal character As Char)
Dim unicode As Integer = AscW(character)
sendUnicodeKeyPress(unicode)
End Sub
P... |
Imports System.Security.Cryptography
Imports Google.Apis.Drive.v2
Imports DotNetOpenAuth.OAuth2
Imports Google.Apis.Authentication.OAuth2
Imports Google.Apis.Authentication.OAuth2.DotNetOpenAuth
Imports Google.Apis.Drive.v2.Data
Imports Google.Apis.Util
Imports System.Net.Mail
Imports System.ComponentModel
Imports Goo... |
Namespace Files
Public Class FileSystemScanner
Public Delegate Sub FileFound_Delegate(sFilName As String)
Public Sub FindAllFiles(ByVal sSearchPath As String, fFileFound As FileFound_Delegate)
InternalScanForFiles(sSearchPath, fFileFound)
End Sub
Private Sub InternalS... |
Public Class UserClass
Dim maintable As String = "tbluser"
Dim mysql As String = String.Empty
Dim ds As DataSet
#Region "Property and variables"
Private _ID As Integer
Public Property ID() As Integer
Get
Return _ID
End Get
Set(ByVal value As Integer)
... |
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
' Deploynment Reporting Services
' Author: Ronaldo Araújo de Farias
' https://github.com/ronaldoaf/DeploymentReportingServices.git
'
' Reference: https://msdn.microsoft.com/en-us/library/reportservice2005... |
Public Class LGT_XML_STOWAGR_TO
Private _XML_DRUG_STOWAGR As New XML_DRUG_STOWAGR
Public Property XML_DRUG_STOWAGR() As XML_DRUG_STOWAGR
Get
Return _XML_DRUG_STOWAGR
End Get
Set(ByVal value As XML_DRUG_STOWAGR)
_XML_DRUG_STOWAGR = value
End Set
End Pr... |
Imports System.Drawing
Imports System.Windows.Forms
Public Class AnimatedButton
Inherits Button
Private Class Frame
Public Sub New(ByVal FrameCount As Integer, ByVal CurrentFrame As Integer, ByVal FrameSize As Size, ByVal ImageStrip As Image)
Me.FrameCount = FrameCount
Me.Cur... |
Public Interface ISuggestionProvider
Function GetSuggestions(ByVal filter As String) As IEnumerable
End Interface
|
Imports CommonUtilities
Imports FantasyHelperObjects
Imports System.Web
Public Class FoxSportsPlayerScraper
Public Players As New ThreadSafeBlockingQueue(Of Player)
Private _rootUrl As String = String.Empty
Private _playersUrl As String = String.Empty
Private _pages As New ThreadSafeBlockingQueue(... |
Imports System.ComponentModel.DataAnnotations
Public Class SecteurActiviteViewModel
Public Property Id As Long
<Required(ErrorMessageResourceType:=GetType(Resource), ErrorMessageResourceName:="champ_Manquant")>
Public Property Libelle As String
Public Property Etat As Boolean = False
Public Pro... |
'------------------------------------------
' FontSizes.vb (c) 2002 by Charles Petzold
'------------------------------------------
Imports System
Imports System.Drawing
Imports System.Windows.Forms
Class FontSizes
Inherits PrintableForm
Shared Shadows Sub Main()
Application.Run(new FontSize... |
'Friend Class cDB_TSFR
' Friend Shared Sub import_server_data(src_cn_str As String, src_type As String, mssql_inst As String, src_qry As String, tgt_db As String, tgt_schema As String,
' tgt_tbl As String, crt_dest_tbl As Boolean, src_pre_sql_cmd As String, batch_size A... |
Public Class ProspectingApplicationBO
Public Property PermitKey As Integer
Public Property PermitID As String
Public Property PermitType As String
Public Property SiteName As String
Public Property ApplicationReceivedDate As Date
Public Property ApplicationStatus As String
Public Property B... |
Imports DevExpress.Data.Filtering
Imports AcurXAF.CriteriaOperatorEx.Extensions
Imports DevExpress.ExpressApp.DC
Namespace CriteriaOperatorEx.Data.Attributes
<AttributeUsage(AttributeTargets.Property Or AttributeTargets.Class, AllowMultiple:=False)>
Public Class CriteriaExAttribute
Inherits Attribute
... |
Public Class ListViewEx
Inherits ListView
Protected Overrides Sub WndProc(ByRef m As Message)
Select Case m.Msg
Case &HA 'WM_ENABLE
' Prevent the message from reaching the control,
' so the colors don't get changed by the default procedure.
... |
Imports System.ComponentModel
Imports System.ComponentModel.DataAnnotations
<MetadataType(GetType(TROLMetadata))>
Partial Public Class TROL
Public Sub New()
End Sub
End Class
Public Class TROLMetadata
<DisplayName("Codice Ruolo")> _
<Required(ErrorMessage:="Il codice ruolo è obbligatorio.")> _
<S... |
Imports Microsoft.VisualBasic
Imports System.Data
Imports System.Data.SqlClient
''' <summary>
'''
''' </summary>
Public Class HolidaysDAL
''' <summary>
''' Gets the holiday type list.
''' </summary>
''' <returns></returns>
Public Function GetHolidayTypeList() As DataTable
Dim LogsDAL As Ne... |
#Region "Microsoft.VisualBasic::a557dbdf3dbadacaa85c1e7503c0b9fd, mzkit\src\assembly\assembly\ASCII\MSN\FileReader.vb"
' Author:
'
' xieguigang (gg.xie@bionovogene.com, BioNovoGene Co., LTD.)
'
' Copyright (c) 2018 gg.xie@bionovogene.com, BioNovoGene Co., LTD.
'
'
' MIT Licen... |
Imports BusinessAccessLayer
Imports Excel = Microsoft.Office.Interop.Excel
Public Class ChangedisputedJobToApproved
Dim UserMessageBox As MessageBoxUser = New MessageBoxUser()
Private Sub ChangedisputedJobToApproved_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Me... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.