-
Notifications
You must be signed in to change notification settings - Fork 2
/
UjiSQL.frm
217 lines (210 loc) · 6.51 KB
/
UjiSQL.frm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
VERSION 5.00
Object = "{67397AA1-7FB1-11D0-B148-00A0C922E820}#6.0#0"; "MSADODC.OCX"
Object = "{CDE57A40-8B86-11D0-B3C6-00A0C90AEA82}#1.0#0"; "MSDATGRD.OCX"
Begin VB.Form UjiSQL
Caption = "Uji Coba SQL"
ClientHeight = 4950
ClientLeft = 60
ClientTop = 345
ClientWidth = 9285
LinkTopic = "Form1"
ScaleHeight = 4950
ScaleWidth = 9285
StartUpPosition = 2 'CenterScreen
Begin MSAdodcLib.Adodc DT
Height = 405
Left = 1320
Top = 4440
Visible = 0 'False
Width = 1995
_ExtentX = 3519
_ExtentY = 714
ConnectMode = 0
CursorLocation = 3
IsolationLevel = -1
ConnectionTimeout= 15
CommandTimeout = 30
CursorType = 3
LockType = 3
CommandType = 1
CursorOptions = 0
CacheSize = 50
MaxRecords = 0
BOFAction = 0
EOFAction = 0
ConnectStringType= 1
Appearance = 1
BackColor = -2147483643
ForeColor = -2147483640
Orientation = 0
Enabled = -1
Connect = ""
OLEDBString = ""
OLEDBFile = ""
DataSourceName = ""
OtherAttributes = ""
UserName = ""
Password = ""
RecordSource = ""
Caption = "DT"
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
_Version = 393216
End
Begin MSDataGridLib.DataGrid DataGrid1
Bindings = "UjiSQL.frx":0000
Height = 3000
Left = 120
TabIndex = 4
Top = 120
Width = 9000
_ExtentX = 15875
_ExtentY = 5292
_Version = 393216
AllowUpdate = -1 'True
HeadLines = 2
RowHeight = 15
BeginProperty HeadFont {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ColumnCount = 2
BeginProperty Column00
DataField = ""
Caption = ""
BeginProperty DataFormat {6D835690-900B-11D0-9484-00A0C91110ED}
Type = 0
Format = ""
HaveTrueFalseNull= 0
FirstDayOfWeek = 0
FirstWeekOfYear = 0
LCID = 1033
SubFormatType = 0
EndProperty
EndProperty
BeginProperty Column01
DataField = ""
Caption = ""
BeginProperty DataFormat {6D835690-900B-11D0-9484-00A0C91110ED}
Type = 0
Format = ""
HaveTrueFalseNull= 0
FirstDayOfWeek = 0
FirstWeekOfYear = 0
LCID = 1033
SubFormatType = 0
EndProperty
EndProperty
SplitCount = 1
BeginProperty Split0
BeginProperty Column00
EndProperty
BeginProperty Column01
EndProperty
EndProperty
End
Begin VB.TextBox Text2
Alignment = 2 'Center
BeginProperty Font
Name = "MS Sans Serif"
Size = 9.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 8520
TabIndex = 3
Top = 4440
Width = 615
End
Begin VB.CommandButton Command1
Caption = "&OK"
Height = 350
Left = 120
TabIndex = 1
Top = 4440
Width = 1000
End
Begin VB.TextBox Text1
BeginProperty Font
Name = "MS Sans Serif"
Size = 9.75
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 1035
Left = 120
TabIndex = 0
Top = 3240
Width = 9000
End
Begin VB.Label Label1
AutoSize = -1 'True
Caption = "Jumlah Data"
Height = 195
Left = 7560
TabIndex = 2
Top = 4560
Width = 885
End
End
Attribute VB_Name = "UjiSQL"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Activate()
DT.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source= " & App.Path & "\ADOPesanan.mdb"
DT.RecordSource = "select * from barang where kodebrg='xxx'"
Set DataGrid1.DataSource = DT
DataGrid1.Refresh
Text1 = ""
Text1.SetFocus
Command1.Default = True
End Sub
Private Sub Text1_KeyPress(Keyascii As Integer)
If Keyascii = 27 Then Unload Me
End Sub
Private Sub Command1_Click()
Dim Pesan As String
On Error GoTo salah
DT.RecordSource = Text1
DT.Refresh
Text2 = DT.Recordset.RecordCount
If DT.Recordset.EOF Then
Pesan = MsgBox("Data Tidak Ditemukan", 0, "Informasi Dari Uus Rusmawan")
DT.Refresh
Text1.SetFocus
End If
On Error GoTo 0
Exit Sub
salah:
Pesan = MsgBox("Syntax SQL Salah..!", 0, "Informasi Dari Uus Rusmawan")
End Sub