代码搜索:如何学习 VB?
找到约 10,000 项符合「如何学习 VB?」的源代码
代码结果 10,000
www.eeworm.com/read/247171/4487326
vb conversionwithnotoperatorboola.vb
'Author: Ritvik Mayank
'Copyright (C) 2005 Novell, Inc (http://www.novell.com)
Imports System
Module ConversionNotOperator
Function Main() As Integer
Dim A As Intege
www.eeworm.com/read/247171/4487327
vb impconversionstringtocharc.vb
'Author:
' V. Sudharsan (vsudharsan@novell.com)
'
' (C) 2005 Novell, Inc.
Option Strict Off
Module ImpConversionStringtoCharD
Function Main() As Integer
Dim a As String = "hello"
www.eeworm.com/read/247171/4487329
vb typeobjecta.vb
'Author: Ritvik Mayank
'Copyright (C) 2005 Novell, Inc (http://www.novell.com)
Option Strict Off
Imports System
Public Class ValueReference
Public AgeClass As Integer
End Cla
www.eeworm.com/read/247171/4487331
vb arrayd.vb
Imports System
Imports Microsoft.VisualBasic
Module VariableC
Dim a() As Integer = {1, 2, 3, 4, 5}
Function Main() As Integer
Dim c As Integer
c = UBound(a, 1)
c = L
www.eeworm.com/read/247171/4487332
vb eventl.vb
'Author:
' V. Sudharsan (vsudharsan@novell.com)
'
' (C) 2005 Novell, Inc.
'This is similar to EventC9.vb. Just the accessor is changed
Class C
Private Event E()
End Class
Class C1
Inherit
www.eeworm.com/read/247171/4487333
vb eventn.vb
'Author:
' V. Sudharsan (vsudharsan@novell.com)
'
' (C) 2005 Novell, Inc.
'To Check if Multiple Methods can access mulitplte events
Imports System
Class Raiser
Public Event Fun(ByVal i As Int
www.eeworm.com/read/247171/4487334
vb scopec.vb
Option Strict Off
'Author:
' V. Sudharsan (vsudharsan@novell.com)
'
' (C) 2005 Novell, Inc.
'Cheks if the outer class members can be accessed using an object reference or not... of course works...
www.eeworm.com/read/247171/4487335
vb expconversionbooltostringb.vb
'Author:
' V. Sudharsan (vsudharsan@novell.com)
'
' (C) 2005 Novell, Inc.
Module ExpConversionBooleantoStringA
Function Main() As Integer
Dim a As Boolean = False
Dim b As Strin
www.eeworm.com/read/247171/4487336
vb impconversionlongtointa.vb
Option Strict Off
'Author:
' V. Sudharsan (vsudharsan@novell.com)
'
' (C) 2005 Novell, Inc.
Module ImpConversionofLongtoIntA
Function Main() As Integer
Dim a As Long = 123
Dim b
www.eeworm.com/read/247171/4487337
vb impconversionstringtodatea.vb
'Author:
' V. Sudharsan (vsudharsan@novell.com)
'
' (C) 2005 Novell, Inc.
Option Strict Off
Imports System
Module ImpConversionStringtoDateA
Function Main() As Integer
Dim a As Date