text
stringlengths
43
2.01M
Imports System.Linq Imports DevExpress.Persistent.BaseImpl Imports DevExpress.Xpo Imports DevExpress.ExpressApp Imports DevExpress.ExpressApp.Model ''' <summary> ''' Represents a job associated with a quote ''' </summary> ''' <remarks></remarks> Public Class Job Inherits XPObject ''' <summary> ''' Defaul...
Public Class ULabelNumericUpDownInput Public Enum eInputType Number End Enum Public Property DecimalPlace As Integer Get Return NumericUpDownValue.DecimalPlaces End Get Set(value As Integer) NumericUpDownValue.DecimalPlaces = value ...
Imports System Imports Microsoft.VisualBasic Imports ChartDirector Public Class ticks Implements DemoModule 'Name of demo module Public Function getName() As String Implements DemoModule.getName Return "Tick Density" End Function 'Number of charts produced in this demo module Public F...
Imports System.Collections Imports System.Text Imports System.Xml Imports System.Xml.Serialization Imports System.IO Public Class MyAppSettings Private MyAppSettingsHashTable As New Hashtable Private MyAppSettingsFile As String Public Sub New(Optional ByVal SettingsFileFolder As String = "", Optional By...
Imports Microsoft.VisualBasic Imports System Imports System.Collections.Specialized Imports System.Windows.Forms Imports Neurotec.Biometrics Imports Neurotec.Devices Partial Public Class IrisesSettingsPage Inherits Neurotec.Samples.SettingsPageBase #Region "Public constructor" Public Sub New() Initial...
Public Class Ciudad Private _idCiudad As Integer Private _nombreC As String Private _estadoC As Integer Public Sub New() End Sub Public Sub New(ByVal idC As Integer, ByVal nombreCiu As String, ByVal estadoCiu As Integer) Me.IdCiudad = idC Me.NombreC = nombreCiu Me.Est...
''' <summary> ''' Main Form of game. ''' </summary> Public Class MainForm Inherits System.Windows.Forms.Form 'Form Controls Private timerTime As System.Windows.Forms.Timer Private groupboxMenu As System.Windows.Forms.GroupBox Private buttonNew As System.Windows.Forms.Button Private buttonQuit As System.Windows.For...
'=============================================================================== ' EntitySpaces Studio by EntitySpaces, LLC ' Persistence Layer and Business Objects for Microsoft .NET ' EntitySpaces(TM) is a legal trademark of EntitySpaces, LLC ' http://w...
''' <summary> ''' Correspond au formulaire affichant les options ''' </summary> Public Class Options ''' <summary> ''' Appelé quand le timer est activé/désactivé dans les options ''' </summary> Private Sub ModifierTempsJeu_Click() Handles ModifierTempsJeu.CheckedChanged TimerChooseLabel.Enabled...
Imports System.Web.UI.Design Imports System.ComponentModel Imports System.ComponentModel.Design Imports System.Text Imports System.Web.UI Namespace ServerControl.VB Public Class MultiRegionControlDesigner Inherits System.Web.UI.Design.WebControls.CompositeControlDesigner Protected _currentView As...
Imports System.Globalization Imports System.Net Imports System.Net.Mail Public NotInheritable Class Mail Private Sub New() End Sub Private Shared sender As New MailAddress("service.store@outlook.com", "Store") ''' <summary></summary> Public Shared Async Sub Send(Recipient As String, Header As S...
Public Enum Effect none blind bounce clip drop explode fade fold highlight puff pulsate scale shake size slide transfer End Enum
 Imports DotNetNuke Imports DotNetNuke.Services.Exceptions Namespace Connect.Modules.Kickstart Public Class Settings Inherits SettingsBase #Region "Base Method Implementations" Public Overrides Sub LoadSettings() Try If (Page.IsPostBack = False) Then ...
Imports System.Xml.Serialization Imports System.IO Module XmlMain Sub Main() 'Create the customer and set the first name Dim cust As New Customer() cust.FirstName = "Homer" 'Initialize XML Serializer to serialize a customer type Dim xs As New XmlSerializer(GetType(Customer)) ...
Public Interface IVcsProvider Function GetCommitInfo(ByVal username As String, ByVal password As String, ByVal repositoryUrl As String, ByVal revision As String) As CommitInfo End Interface
'====================================== ' Copyright EntitySpaces, LLC 2005 - 2006 '====================================== Imports System.Collections.Generic Imports System.Text Imports NUnit.Framework 'using Adapdev.UnitTest; Imports BusinessObjects Imports EntitySpaces.Interfaces Namespace Tests.Base <TestFixture...
Imports System Imports System.Collections.Generic Imports System.ComponentModel.DataAnnotations Imports System.ComponentModel.DataAnnotations.Schema Imports System.Data.Entity.Spatial <Table("Movil.Viviendas")> Partial Public Class Viviendas Public Sub New() Hogares = New HashSet(Of Hogares)() Vivi...
'--Imports Diccionarios.My Imports Microsoft.VisualBasic Imports Microsoft.VisualBasic.ApplicationServices Imports Microsoft.VisualBasic.CompilerServices Imports System Imports System.Collections Imports System.ComponentModel Imports System.Diagnostics Imports System.Drawing Imports System.Drawing.Imaging Imports Syst...
Imports System Imports System.Collections Imports System.Diagnostics Imports System.Windows.Forms Imports System.IO Imports System.Xml Imports System.Threading Imports MapInfo.MiPro.Interop Namespace MapInfoDataDrivenPages Public Class Controller '' strings for dock persistence xml file Private C...
Imports Microsoft.VisualBasic Imports System Imports System.Collections.Generic Imports System.ComponentModel Imports System.IO Imports System.Windows.Forms Imports Neurotec.Biometrics.Standards Partial Public Class ValidateForm Inherits Form #Region "Private fields" Private _path As String Private _...
Imports System <AttributeUsage(AttributeTargets.Method Or AttributeTargets.Field)> Class CalculationAttribute Inherits System.Attribute Public Property Id() As String Public Property Name() As String Public Property CalculationType() As String Public Property CalculationDataType() As String End Cl...
Public Class QuestRewards Dim dItemNumLbl As New Dictionary(Of NumericUpDown, Label) Dim dItemLblNum As New Dictionary(Of Label, NumericUpDown) Dim currentQuest As Quest Dim dItemBoxes As New Dictionary(Of NumericUpDown, NumericUpDown) Dim dItemChoiceBoxes As New Dictionary(Of NumericUpDown, Numeri...
Imports Microsoft.VisualBasic Imports System.Data.SqlClient Imports System.Data Imports Talent.eCommerce '-------------------------------------------------------------------------------------------------- ' Project Trading E-Commerce ' ' Function Talent ' ' Dat...
Imports ENTITIES Imports MAPPER Public Class MultidiomaBLL Public Sub AgregarTraduccion(ByRef QueObjeto As Object) MultidiomaMAP.AgregarTraduccion(QueObjeto) End Sub Public Sub ModificarTraduccion(ByRef QueObjeto As Object) MultidiomaMAP.ModificarTraduccion(QueObjeto) End ...
Imports System.Collections.ObjectModel Public Class iniClass Dim myINI As New INI_RW Public Sub New(ByVal iniPath As String) Me.iniFilePath = iniPath Me.Sections = myINI.INIReadSectionNames(Me.iniFilePath) End Sub #Region " Propertys " Private m_filepath As String = "" Public P...
Option Strict On 'プロジェクトのプロパティでも設定可能 'Imports System.Data.OleDb 'Imports System.Text.RegularExpressions Public Class cDataCalcDBIO Private pConn As OleDb.OleDbConnection Private pCommand As OleDb.OleDbCommand Private pDataReader As OleDb.OleDbDataReader Private pMessageBox As cMessageLib.fMess...
Public Interface Entity ReadOnly Property Icon As Bitmap Property Location As Point Property Speed As Integer Sub Update(go As GameBase) End Interface
Imports System.Drawing Imports System.Windows.Forms Namespace ClockControl Public Partial Class ClockControl Inherits Control #Region "Construct the clock" Public Sub New() InitializeComponent() 'Set the double buffered to true to reduce flickering of th...
@ModelType IEnumerable(Of WEB_APP_GESTION_HORAIRE.Emplacement) @Code ViewData("Title") = "Emplacements" End Code <h2>Emplacements</h2> <p> @Html.ActionLink("Ajouter", "CreerEmplacement") </p> <table class="table"> <tr> <th> Emplacement </th> <th> Entreprise ...
Imports System.Runtime.CompilerServices <Assembly: InternalsVisibleTo("AutoNumericTester")> ''' <summary> ''' Offer basic facilities to build/traverse a kinematic graph ''' </summary> ''' <remarks></remarks> Public Class kinematicGraphBase ''' <summary> ''' Given source frame(from) and destion...
'todo 'tbl_fees_relations 'fee apply type differnt id 'fee code DDFEE 'fee category direct debit 'so if basket is applicable for direct debit fees 'insert tbl_basket_fees from this class for the card type code for example visa debit card 'this has to be processed like booking fee like card Namespace TalentBasketFees ...
Imports Client.World.Network Namespace World Public Delegate Sub PacketHandler(packet As InPacket) <AttributeUsage(AttributeTargets.Method, AllowMultiple := True, Inherited := False)> _ Public NotInheritable Class PacketHandlerAttribute Inherits Attribute Public Property Command() As WorldCommand Get Re...
#Region "Microsoft.VisualBasic::3800e26f172d0ca652799d13276d4456, mzkit\src\metadb\FormulaSearch.Extensions\AtomGroups\FragmentAnnotationHolder.vb" ' Author: ' ' xieguigang (gg.xie@bionovogene.com, BioNovoGene Co., LTD.) ' ' Copyright (c) 2018 gg.xie@bionovogene.com, BioNovoGene Co., LTD. ...
'=============================================================================== ' Microsoft patterns & practices ' CompositeUI Application Block '=============================================================================== ' Copyright © Microsoft Corporation. All rights reserved. ' THIS CODE AND INFORMATION I...
Imports System.Runtime.Serialization Imports System.ComponentModel <DataContract()> Public MustInherit Class ObservableObject Implements INotifyPropertyChanged #Region "Events" Public Event PropertyChanged(ByVal sender As Object, ByVal e As System.ComponentModel.PropertyChangedEventArgs) Implements System.Co...
Imports BVSoftware.Bvc5.Core Imports System.Collections.Generic Imports System.Collections.ObjectModel Public MustInherit Class BaseProductAdminPage Inherits BaseAdminPage Protected WithEvents _ProductNavigator As New Content.NotifyClickControl Protected MustOverride Function Save() As Boolean Priva...
Imports MathNet.Numerics.LinearAlgebra Imports System.Text Imports AutoNumeric.utilities Public Class measuredDataPair Friend Enum cascadeDefinitionsEnum As Byte JACOBIAN = 0 MEASURES EXPECT = 2 End Enum ''' <summary> ''' 3x1 ''' </summary> ''' <value><...
#Region "License" ' The MIT License (MIT) ' ' Copyright (c) 2017-2019 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, i...
Public Class Student Public Sub New(ByVal name As String, ByVal subject As String, ByVal year As Integer, ByVal marks() As Double) _name = name _subject = subject _year = year _marks = marks End Sub Public Property Year() As Integer Get Return _year ...
Imports System.Xml.Serialization Imports System Imports System.Collections Imports System.Collections.Generic Namespace Layout Public Class LayoutManager Private _Layouts As New List(Of LayoutItem) Public Property Layouts() As List(Of LayoutItem) Get Return _Layouts ...
'****************************************************************************' ' ' ' Download evaluation version: https://bytescout.com/download/web-installer ' ' ' ' Si...
Imports System.Net Imports System.Text.RegularExpressions Imports System.IO Public Class Form1 Public Function IsProcessRunning(name As String) As Boolean 'here we're going to get a list of all running processes on the computer For Each clsProcess As Process In Process.GetProcesses() I...
'+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ '* 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...
' Licensed to the .NET Foundation under one or more agreements. ' The .NET Foundation licenses this file to you under the MIT license. Imports System.Globalization Namespace Microsoft.VisualBasic.CompilerServices ' Purpose: various helpers for the vb runtime functions Friend NotInheritable Class Utils ...
''' <summary> ''' Classe Ligne de facture Hobivin ''' Créée à partir de ligneCommande ''' </summary> ''' <remarks></remarks> Public Class LgFactHBV Inherits Persist Private m_num As Integer 'Numéro d'ordre de ligne Private m_oProduit As Produit 'Produit Commandé Private m_idFac...
Imports System.Collections.Generic Imports System.Linq Imports DevExpress.DevAV.Common.ViewModel Imports DevExpress.DevAV.DevAVDbDataModel Imports DevExpress.Mvvm.DataAnnotations Imports DevExpress.Mvvm.POCO Imports DevExpress.DevAV.Common Imports DevExpress.Mvvm.DataModel Namespace DevExpress.DevAV.ViewModels Pub...
Imports Cognex.VisionPro Imports Cognex.VisionPro.Implementation.Internal Imports Cognex.VisionPro.ToolBlock Imports Cognex.VisionPro.ImageFile Public Class UserControl_CognexVision Private WithEvents ref_CogVision As CognexVision = Nothing Public Sub Reference(ByRef refCog As CognexVision) ...
Imports BUSLayer Imports DTO Public Class frmChinhSuaKhachHangGUI Public Sub New() ' This call is required by the designer. InitializeComponent() ' Add any initialization after the InitializeComponent() call. txtDienThoai.Enabled = False txtEmail.Enabled = False t...
' ' DotNetNuke® - http://www.dotnetnuke.com ' Copyright (c) 2002-2010 ' 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...
Public Class ctlRipper Private WithEvents cDrive As CDDrive Private WithEvents cInfo As CDDBNet Private WithEvents cArtwork As AppleNet Private WithEvents cCDText As New ReadCdTextWorker Private Delegate Sub CallBack(Obj As Object) Private mWriter As Mp3Writer Private lLastRev As Integer Private Const ...
'--------------------------------------------------------------------------- ' Author : Nguyen Khanh Tung ' Company : Thiên An ESS ' Created Date : Friday, August 29, 2008 '--------------------------------------------------------------------------- Imports System Namespace Entity Public Class CoSoDaoTao #Region "...
Imports System.ComponentModel.DataAnnotations Public Class OperatorArguments Implements iControllerArguments ''' <summary> ''' Optional. Can return only Male Operators, or only Female one. ''' </summary> ''' <returns></returns> Property Gender As clsOperator.OperatorGenderEnum? ''' <sum...
Imports RsStructure Public Class ClassGenerator Private vgArgs As New ClassArgs ''' <summary> ''' Constructor, recebe argumentos ''' </summary> ''' <param name="iArgs"></param> ''' <remarks></remarks> Public Sub New(ByVal iArgs As ClassArgs) vgArgs = iArgs End Sub '...
Imports Microsoft.EnterpriseManagement.HealthService Imports System.Collections.Generic Imports System.Diagnostics Imports System.Xml Imports Microsoft.Win32 <MonitoringModule(ModuleType.Condition)> <ModuleOutput(True)> Public Class EncodeJSONData ' Portion of Code Sourced from https://scommm.codeplex.com/ ...
Imports System.ComponentModel Public Class YearChooser Inherits DockPanel Implements INotifyPropertyChanged #Region "Properties" Public Event PropertyChanged As PropertyChangedEventHandler Implements INotifyPropertyChanged.PropertyChanged Public SystemChange As Boolean Private _currentyear As Inte...
Imports System.Collections Imports System.Collections.Generic Imports System.Data Imports System.Diagnostics Imports System.Text Namespace SubscriptionBridge Public Class AuthenticationAPI Public Function VerifyAccountCredentialsRequest(ByVal User As String, ByVal Token As String, ByVal Email As String,...
Imports Microsoft.VisualStudio.TestTools.UnitTesting Imports OpenQA.Selenium Imports OpenQA.Selenium.Firefox Public Class Accessibility Shared Function AriaRequiredPresent(ByVal WebBrowser As IWebDriver, ByVal ControlName As String) As Boolean Return WebBrowser.FindElement(By.Id(ControlName)).GetAttribut...
Imports T4 Imports T4.API ''' <summary> ''' Main form for logging in additional users. ''' </summary> ''' <remarks></remarks> Public Class frmMain #Region " Properties " ''' <summary> ''' Reference to the api host. ''' </summary> ''' <remarks></remarks> Private WithEvents moHost As Host '''...
Public Class DeleteUser Private SQL As New SqlControl Private Sub FetchUsers() 'refresh users list clbUsers.Items.Clear() 'add params and run query SQL.AddParam("@users", "%" & txtFilter.Text & "%") SQL.ExecQuery("select username " & "from members...
Imports System.Data.SqlClient Namespace Classes Public Class DataOperations Private Shared ConnectionStringWorks As String = "Data Source=.\SQLEXPRESS;" & "Initial Catalog=NorthWindAzureForInserts;" & "Integrated Security=Tr...
#Region "Microsoft.VisualBasic::d9b25d3eed3358524d383e2fdb072054, mzkit\Rscript\Library\mzkit\math\Math.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...
Imports ENTITIES Imports BLL Public Class EstadoPedidoVista Private vEstadoPedidoENT As EstadoPedidoENT Public Property EstadoPedidoENT() As EstadoPedidoENT Get Return vEstadoPedidoENT End Get Set(ByVal value As EstadoPedidoENT) vEstadoPedidoENT = va...
' Copyright (c) 2013-15 Arumsoft ' All rights reserved. ' ' Created: 21/01/2013. Author: Cloudcoder ' ' This source is subject to the Microsoft Permissive License. http://www.microsoft.com/en-us/openness/licenses.aspx ' ' THE CODE IS PROVIDED ON AN "AS IS" BASIS WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPL...
Imports System.IO Partial Class control_AlbumLangControl Inherits System.Web.UI.UserControl Protected Sub Page_Init(sender As Object, e As System.EventArgs) Handles Me.Init Dim _FileBrowser As New CKFinder.FileBrowser() _FileBrowser.BasePath = ResolveClientUrl("~/ckfinder") & "/" _Fil...
'Friend = internal 'Todo: OO - Abstração (classes de negócio - entidades) Public Class Cliente Inherits Pessoa 'Public Nome As String 'property tab Const idadeMinima As Integer = 18 Public Property Renda As Decimal Public Property DataNascimento As DateTime 'Nullable(Of DateTim...
Public Class ChequePreLancarAvulso 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 btFechar_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btFechar.Click Me.Close()...
Public Class classConfigVars ' $SUBTITLE: 'Arrays passed between parts of CONFIG.BAS 17.3' ' $PAGE 'DEFINT A-Z '************************************************************************** Public DefaultPathname As String = "C:\RBBS" Public ConfigFilename As String = "RBBS-PC.DEF" Public Cons...
Imports System.Runtime.InteropServices Imports System.Numerics 'famous test cases include the four fours problem https://en.wikipedia.org/wiki/Four_fours 'http://www.murderousmaths.co.uk/books/4x4ans.htm 'https://www.cut-the-knot.org/arithmetic/funny/4_4.shtml 'could calibrate advanced math fo example Euler's number ...
'--------------------------------------------- ' SimpleButton.vb (c) 2002 by Charles Petzold '--------------------------------------------- Imports System Imports System.Drawing Imports System.Windows.Forms Class SimpleButton Inherits Form Shared Sub Main() Application.Run(New SimpleButton(...
Public Class Form1 Private Sub btnGo_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnGo.Click ' Display some text in the list box. lstOutput.Items.Add("Hello from the btnGo_Click procedure.") lstOutput.Items.Add("Now I am calling the DisplayMessage procedure.")...
 Namespace Miscellaneous Public Class HandleExceptions Public Shared Sub Run() ' ExStart:HandleExceptions Dim project As Project Try Dim dataDir As String = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.FullName) ...
Imports BasesParaCompatibilidad.DataGridViewExtension Public Class frmSelectorArticulo Private formatoID As Integer Private tipoArticulo As String Private subtipoArticulo As String Private idExcluido As Integer Private dtb As BasesParaCompatibilidad.DataBase Public Sub New(ByVal tipoArticulo As...
Public Sub ExtractCommentsToNewDoc() 'Original source Macro created 2007 by Lene Fredborg, DocTools 'amended by Phil Thomas May 2012 [URL="http://www.grosvenorsc.com"]www.grosvenorsc.com[/URL] 'with help from Frosty at VBAExpress.com 'The macro creates a new document 'and extracts all comment...
Imports System Imports Microsoft.VisualBasic Imports ChartDirector Public Class threedbubble3 Implements DemoModule 'Name of demo module Public Function getName() As String Implements DemoModule.getName Return "3D Bubble Chart (3)" End Function 'Number of charts produced in this demo modu...
Imports System.Data Imports System.Data.SqlClient Imports Microsoft.VisualBasic Public Class DbObject Protected Shared Function GetConnection() As SqlConnection Dim conn = New SqlConnection(ConfigurationManager.ConnectionStrings(0).ConnectionString) conn.Open() Return conn End Functi...
Imports System Imports System.Collections.Generic Imports System.ComponentModel Imports System.Text Imports System.Web Imports System.Web.UI.WebControls.WebParts Imports System.Web.UI Imports System.Web.UI.WebControls <DefaultProperty("Text")> _ Public Class Translator_VB Inherits WebPart Private pStrText As...
Imports System.IO.Pipes Imports Taas.BackEnd Imports Taas.Common Imports Taas.Common.IPC Imports Taas.Common.Logging Public Enum TaskState Invalid = -1 Initializing Initialized Disposed Executing Finished Failed Paused Aborting Aborted End Enum Public Class TaskServer : Implem...
Public Class SWConstructBMP Private _permitid As Int32 Private _piid As Int32 Private _swbmpid As Byte Private _swbmpname As String Private _swbmpothername As String Private _swbmpqty As Integer Public Property IsDeleted As Boolean = False #Region "Public Properties" Public Property P...
'=================================================================================================================================== 'Projet : Vinicom 'Auteur : Marc Collin 'Création : 23/06/04 '============================================================================================================================...
Public Class Grupos 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 Dim Autorizado As Boolean Private Sub FecharBT_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles FecharBT.Click ...
Imports System.Data Imports System.Text Imports System.Web Imports Talent.Common Imports Talent.Common.TalentDataObjects Imports TCUtilies = Talent.Common.Utilities Imports TEBUtilities = Talent.eCommerce.Utilities Imports System.Collections.Generic Imports System.Web.HttpUtility Namespace Talent.eCommerce ''' <s...
Imports BVSoftware.Bvc5.Core Imports System.Data Partial Class BVAdmin_Content_UrlRedirect_Edit Inherits BaseAdminPage Protected Sub Page_PreInit1(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.PreInit Me.PageTitle = "Edit URL Redirect" Me.CurrentTab = AdminTabType.Content ...
Imports System Imports Microsoft.VisualBasic Imports ChartDirector Public Class cylinderlightbar Implements DemoModule 'Name of demo module Public Function getName() As String Implements DemoModule.getName Return "Cylinder Bar Shading" End Function 'Number of charts produced in this demo ...
Option Explicit On Option Strict On Option Compare Text 'Jemika Smith 'RCET0265 'Spring2020 'Simple Calculator 'https://github.com/smitjemi/JKS-VS-S20 Module SimpleCalculator Sub Main() Dim userMessage As Integer Dim userMessage2 As Integer Dim userMessage3 As String Dim quitProgr...
Imports System Imports System.Collections.Generic Imports System.IO Imports System.Text Namespace CodeSamples Public Class Install Public Sub InstallLicenseFileFromEmbeddedResources() 'HOW TO INSTALL LICENSE FILE '==================== 'After purchase of developer license you will receive Inetlab.SMPP.li...
Imports Microsoft.Win32 Public Class clsRegistry Public Shared Function addSubKey(ByVal sBaseKey As Microsoft.Win32.RegistryHive, _ ByVal sSubKeyName As String, _ ByVal sNewSubKeyName As String) As Boolean Dim bReturn As Boole...
Option Explicit On Option Strict On ' // *** Includes *** // ' // CoreFlow ' - ' // General Public Class AccountInfo : Inherits IWDESecurePage #Region "AccountInfo - Data Members" #End Region #Region "AccountInfo - Constructors" #End Region #Region "AccountInfo.IWDESecurePage.Page - Event Handlers" Protect...
Imports MySql.Data.MySqlClient Imports System.Windows Imports DTO Public Class SuaKhachHangDAL Shared con As MySqlConnection = New MySqlConnection(ConnectionDTO.Connection) ''' <summary> ''' cập nhập lại thông tin của khách hàng ''' </summary> ''' <param name="MaKH"></param> ''' <param name="Te...
Imports System Imports Autodesk.AutoCAD.DatabaseServices Imports Autodesk.AutoCAD.EditorInput Imports Autodesk.AutoCAD.Runtime Imports Autodesk.Civil.ApplicationServices Imports Autodesk.Civil.DatabaseServices <Assembly: CommandClass(GetType(Autodesk.CivilizedDevelopment.CorridorCommands))> Namespace Aut...
Public Class doubletextbox Dim listText1 As List(Of TextBox) Dim listText2 As List(Of TextBox) Dim textHeight As Integer Dim textTop As Integer Public Sub AddItem() Dim txt1 As New TextBox Dim txt2 As New TextBox txt1.Left = txtLang.Left txt1.Width = txtLang...
Imports Route4MeSDKLibrary.Route4MeSDK Imports Route4MeSDKLibrary.Route4MeSDK.DataTypes Imports Route4MeSDKLibrary.Route4MeSDK.QueryTypes Namespace Route4MeSDKTest.Examples Partial Public NotInheritable Class Route4MeExamples ''' <summary> ''' Assign a team member to a route. ''' </summary...
Public Class Form1 Private Sub btnCalculate_Click() Handles btnCalculate.Click Dim decSalesAmount As Decimal ' Monthly sales amount Dim decAdvancePayAmount As Decimal ' Advance pay taken Dim decCommissionRate As Decimal ' Commission rate Dim decCommissionAmount As Decima...
Public Class BackupSolver Private restore As List(Of String) Private delete As List(Of String) Private check_for_changes As Boolean ' ##### INIT #################################################################################### Public Sub New(ByVal Backups As List(Of String), _ ...
Option Explicit On Imports System.Web.Services Imports System.Data.OracleClient <System.Web.Services.WebService(Namespace := "http://tempuri.org/BecWebService/UpdateMachineStatus")> _ Public Class UpdateMachineStatus Inherits System.Web.Services.WebService #Region " Web Services Designer Generated Code " P...
Imports Microsoft.VisualBasic.Compatibility.VB6 Public Class Form1 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 initializati...
Namespace Key Public Class Key Private thePlayerOne As Player.Player Private thePlayerTwo As Player.Player Public Sub New(playerOne As Player.Player, playerTwo As Player.Player) Me.thePlayerOne = playerOne Me.thePlayerTwo = playerTwo End Sub Public ...
Option Strict On Option Explicit On 'Dylan Nelson 'RCET0265 'Spring 2021 'Roll of the Dice 'https://github.com/dylannelson58/RolloftheDice Module RolloftheDice Sub Main() Dim randomNumbers(10) As Integer '2-12 is ten integers this is the range u...
Imports Route4MeSDKLibrary.Route4MeSDK Imports Route4MeSDKLibrary.Route4MeSDK.DataTypes Namespace Route4MeSDKTest.Examples Partial Public NotInheritable Class Route4MeExamples ''' <summary> ''' Add address book contact ''' </summary> Public Sub AddAddressBookContact() D...
Public Class Form1 Private Sub btnCalculate_Click() Handles btnCalculate.Click Dim decBaseFee As Decimal ' Base Monthly Fee Dim decTotalFee As Decimal ' Total Membership Fee Dim intMonths As Integer ' Number of months Dim blnInputOk As Boolean = True ' Constants for base fees. Const decADULT_FEE As D...
Public Class DBO_cabecerasEtiquetas inherits BasesParaCompatibilidad.DataBussines Private m_Id As BasesParaCompatibilidad.DataBussinesParameter Private m_texto As BasesParaCompatibilidad.DataBussinesParameter Public Sub New() MyBase.New() m_Id = New BasesParaCompatibilidad.DataBussinesParameter...