代码搜索:visual basic
找到约 10,000 项符合「visual basic」的源代码
代码结果 10,000
www.eeworm.com/read/306033/13754659
pb basic_ifdef.pb
#define abc
#ifdef abc
println 123
#else
println 456
#endif
#undef abc
#ifdef abc
println 123
#else
println 456
#endif
www.eeworm.com/read/306033/13754667
pb basic_arrays.pb
Class AClass
Dim fZ = [10, 20, 30, 40, 50]
Sub New()
End Sub
Default Property Z(I As Integer) As Integer
Get
return fZ(I)
End Get
Set
fZ(I
www.eeworm.com/read/306033/13754678
pb basic_units.pb
Imports a in "\Units\a.pp"
Println x
P(7, 5)
z.Proc(400)
www.eeworm.com/read/306033/13754687
pb basic_com.pb
Dim Range, WordApp = new ActiveXObject("Word.Application")
WordApp.Visible = true
WordApp.Documents.Add
Range = WordApp.Documents.Item(1).Range
Range.Text = "This is a column from a spreadsheet: "
www.eeworm.com/read/306033/13754692
pb basic_complex.pb
Structure Complex
Dim re As Double
Dim im As Double
Shared Dim i As Complex = (0.0, 1.0)
' "+"
Operator + (x As Complex, y As Complex) As Complex
Dim result As Complex = (x.re + y.
www.eeworm.com/read/306033/13754694
pb basic_import.pb
Imports StdCtrls, Forms
Class MyForm
Inherits TForm
Private Memo As TMemo
Sub New(Owner As TComponent)
Me = MyBase.Create(Owner)
Top = 100
Left = 200
Caption = "MyF