-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathLaporanPiutang.frm
More file actions
285 lines (268 loc) · 8.14 KB
/
Copy pathLaporanPiutang.frm
File metadata and controls
285 lines (268 loc) · 8.14 KB
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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
VERSION 5.00
Object = "{00025600-0000-0000-C000-000000000046}#5.2#0"; "Crystl32.OCX"
Begin VB.Form LaporanPiutang
ClientHeight = 4665
ClientLeft = 60
ClientTop = 450
ClientWidth = 4815
LinkTopic = "Form1"
ScaleHeight = 4665
ScaleWidth = 4815
StartUpPosition = 2 'CenterScreen
Begin Crystal.CrystalReport CR
Left = 1320
Top = 3000
_ExtentX = 741
_ExtentY = 741
_Version = 348160
PrintFileLinesPerPage= 60
End
Begin VB.Frame Frame3
Caption = "Bulanan"
Height = 1335
Left = 120
TabIndex = 11
Top = 3240
Width = 4500
Begin VB.ComboBox Combo4
Height = 315
Left = 1320
TabIndex = 14
Top = 360
Width = 1500
End
Begin VB.ComboBox Combo5
Height = 315
Left = 1320
TabIndex = 13
Top = 720
Width = 1500
End
Begin VB.CommandButton Command3
Caption = "Cetak"
Height = 375
Left = 3000
TabIndex = 12
Top = 480
Width = 1215
End
Begin VB.Label Label4
BorderStyle = 1 'Fixed Single
Caption = " Tahun"
Height = 345
Left = 120
TabIndex = 16
Top = 720
Width = 1250
End
Begin VB.Label Label5
BorderStyle = 1 'Fixed Single
Caption = " Bulan"
Height = 345
Left = 120
TabIndex = 15
Top = 360
Width = 1250
End
End
Begin VB.Frame Frame1
Caption = "Harian"
Height = 975
Left = 120
TabIndex = 7
Top = 720
Width = 4500
Begin VB.ComboBox Combo1
Height = 315
Left = 1320
TabIndex = 9
Top = 360
Width = 1500
End
Begin VB.CommandButton Command1
Caption = "Cetak"
Height = 375
Left = 3000
TabIndex = 8
Top = 360
Width = 1215
End
Begin VB.Label Label1
BorderStyle = 1 'Fixed Single
Caption = "Tanggal"
Height = 345
Left = 120
TabIndex = 10
Top = 360
Width = 1250
End
End
Begin VB.Frame Frame2
Caption = "Mingguan"
Height = 1335
Left = 120
TabIndex = 1
Top = 1800
Width = 4500
Begin VB.ComboBox Combo2
Height = 315
Left = 1320
TabIndex = 4
Top = 360
Width = 1500
End
Begin VB.ComboBox Combo3
Height = 315
Left = 1320
TabIndex = 3
Top = 720
Width = 1500
End
Begin VB.CommandButton Command2
Caption = "Cetak"
Height = 375
Left = 3000
TabIndex = 2
Top = 480
Width = 1215
End
Begin VB.Label Label2
BorderStyle = 1 'Fixed Single
Caption = "Tanggal Awal"
Height = 345
Left = 120
TabIndex = 6
Top = 360
Width = 1250
End
Begin VB.Label Label3
BorderStyle = 1 'Fixed Single
Caption = "Tanggal Akhir"
Height = 345
Left = 120
TabIndex = 5
Top = 720
Width = 1250
End
End
Begin VB.Label Label6
Alignment = 2 'Center
BackColor = &H00FFC0C0&
BorderStyle = 1 'Fixed Single
Caption = "Laporan Piutang"
BeginProperty Font
Name = "MS Sans Serif"
Size = 18
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 495
Left = 120
TabIndex = 0
Top = 120
Width = 4575
End
End
Attribute VB_Name = "LaporanPiutang"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
'On Error Resume Next
Call BukaDB
RSPiutang.Open "Select Distinct TanggalTerima From TerimaPiutang order By 1", Conn
RSPiutang.Requery
Do Until RSPiutang.EOF
Combo1.AddItem Format(RSPiutang!TanggalTerima, "DD-MMM-YYYY")
Combo2.AddItem Format(RSPiutang!TanggalTerima, "YYYY ,MM, DD")
Combo3.AddItem Format(RSPiutang!TanggalTerima, "YYYY ,MM, DD")
RSPiutang.MoveNext
Loop
Conn.Close
Call BukaDB
Dim RSTGL As New ADODB.Recordset
RSTGL.Open "select distinct month(TanggalTerima) as Bulan from TerimaPiutang", Conn
Do While Not RSTGL.EOF
Combo4.AddItem RSTGL!Bulan & Space(5) & MonthName(RSTGL!Bulan)
RSTGL.MoveNext
Loop
Conn.Close
Call BukaDB
Dim RSTHN As New ADODB.Recordset
RSTHN.Open "select distinct year(TanggalTerima) as Tahun from TerimaPiutang", Conn
Do While Not RSTHN.EOF
Combo5.AddItem RSTHN!Tahun
RSTHN.MoveNext
Loop
Conn.Close
End Sub
Private Sub Command1_Click()
If Combo1 = "" Then
MsgBox "Pilih tanggal.."
Combo1.SetFocus
Exit Sub
End If
CR.SelectionFormula = "Totext({TerimaPiutang.TanggalTerima})='" & CDate(Combo1) & "'"
CR.ReportFileName = App.Path & "\Lap PIUTANG.rpt"
CR.WindowState = crptMaximized
CR.RetrieveDataFiles
CR.Action = 1
End Sub
Private Sub Command2_Click()
If Combo2 = "" Then
MsgBox "Tanggal awal kosong", , "Informasi"
Combo2.SetFocus
Exit Sub
Else
If Combo3 < Combo2 Or Combo2 > Combo3 Then
MsgBox "Tanggal terbalik"
Combo3.SetFocus
Exit Sub
ElseIf Combo3 = Combo2 Then
MsgBox "pilih TanggalTerima yang berbeda"
Combo3.SetFocus
Exit Sub
End If
End If
CR.SelectionFormula = "{TerimaPiutang.TanggalTerima} in date (" & Combo2 & ") to date (" & Combo3 & ")"
CR.ReportFileName = App.Path & "\Lap piutang Mingguan.rpt"
CR.WindowState = crptMaximized
CR.RetrieveDataFiles
CR.Action = 1
End Sub
Private Sub Command3_Click()
Call BukaDB
RSPiutang.Open "select * from TerimaPiutang where month(TanggalTerima)='" & Val(Left(Combo4, 2)) & "' and year(TanggalTerima)='" & (Combo5) & "'", Conn
If RSPiutang.EOF Then
MsgBox "Data tidak ditemukan"
Exit Sub
Combo4.SetFocus
End If
CR.SelectionFormula = "Month({TerimaPiutang.TanggalTerima})=" & Val(Left(Combo4, 2)) & " and Year({TerimaPiutang.TanggalTerima})=" & Val(Combo5.Text)
CR.ReportFileName = App.Path & "\Lap PIUTANG Bulanan.rpt"
CR.WindowState = crptMaximized
CR.RetrieveDataFiles
CR.Action = 1
End Sub
'Lap Harian
Private Sub Combo1_Click()
End Sub
'Lap Mingguan (Tgl Antara)
Private Sub Combo3_Click()
End Sub
'Lap Bulanan
Private Sub Combo5_Click()
End Sub
'Private Sub Command1_Click()
' CR.SelectionFormula = "{TerimaPiutang.Jenis}='Kredit'"
' CR.ReportFileName = App.Path & "\Lap hutang.rpt"
' CR.WindowState = crptMaximized
' CR.RetrieveDataFiles
' CR.Action = 1
'
'End Sub