代码搜索:WithEvents
找到约 1,631 项符合「WithEvents」的源代码
代码结果 1,631
www.eeworm.com/read/306174/10116222
vb formcurriculum.vb
Imports CommonDB
Public Class FormCurriculum
Inherits FormBase
Private m_oCurriculum As Curriculum
#Region " Windows 窗体设计器生成的代码 "
Public Sub New()
MyBase.New()
'该调用是
www.eeworm.com/read/306174/10116282
vb formcollege.vb
Public Class FormCollege
Inherits FormBase
Private m_oCollege As College
#Region " Windows 窗体设计器生成的代码 "
Public Sub New()
MyBase.New()
'该调用是 Windows 窗体设计器所必需的。
I
www.eeworm.com/read/306174/10116302
vb formcurriculum.vb
Imports CommonDB
Public Class FormCurriculum
Inherits FormBase
Private m_oCurriculum As Curriculum
#Region " Windows 窗体设计器生成的代码 "
Public Sub New()
MyBase.New()
'该调用是
www.eeworm.com/read/306174/10116336
vb formcollege.vb
Public Class FormCollege
Inherits FormBase
Private m_oCollege As College
#Region " Windows 窗体设计器生成的代码 "
Public Sub New()
MyBase.New()
'该调用是 Windows 窗体设计器所必需的。
I
www.eeworm.com/read/306174/10116409
vb formenroll.vb
Public Class FormEnroll
Inherits FormBase
Public m_oStudent As Student
#Region " Windows 窗体设计器生成的代码 "
Public Sub New()
MyBase.New()
'该调用是 Windows 窗体设计器所必需的。
Ini
www.eeworm.com/read/306174/10116497
vb formenroll.vb
Public Class FormEnroll
Inherits FormBase
Public m_oStudent As Student
#Region " Windows 窗体设计器生成的代码 "
Public Sub New()
MyBase.New()
'该调用是 Windows 窗体设计器所必需的。
Ini
www.eeworm.com/read/457717/7318814
vb seatfoodform.designer.vb
_
Partial Public Class SeatFoodForm
Inherits System.Windows.Forms.Form
'Form 覆寫 Dispose 以清除元件清單。
www.eeworm.com/read/457717/7318827
vb seattable.designer.vb
_
Partial Public Class SeatTable
Inherits System.Windows.Forms.Form
'Form 覆寫 Dispose 以清除元件清單。
www.eeworm.com/read/398009/8010039
vb frmmain.designer.vb
Partial Class frmMain
#Region "Windows 窗体设计器生成的代码 "
Public Sub New()
MyBase.New()
www.eeworm.com/read/141570/12998147
txt 02.txt
《 用VB6实现动态增减控件 》
用过Internet Explorer收藏夹的朋友都知道,利用鼠标单击时收藏夹会出现,再次单击则收藏夹消失。从编程角度讲,这是个在程序运行阶段动态增减控件的问题。以前,这仅仅是C++之类编程语言的专利。如今,微软在Visual Basic6.0中也新增了这个功能,下面就此举例进行介绍:
1.新建一个工程,窗体Form1为缺省窗体,Form1的属性项Ca ...