在好例子网,分享、交流、成长!
您当前所在位置:首页ASP 开发实例VB编程 → vb打印程序源代码(VB2008编写)

vb打印程序源代码(VB2008编写)

VB编程

下载此实例
  • 开发语言:ASP
  • 实例大小:6.16M
  • 下载次数:77
  • 浏览次数:687
  • 发布时间:2020-11-01
  • 实例类别:VB编程
  • 发 布 人:strangerboy
  • 文件格式:.7z
  • 所需积分:2
 相关标签: 200 源代码 vb 00 程序

实例介绍

【实例简介】

【实例截图】

from clipboard

【核心代码】

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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class mymain
    Inherits System.Windows.Forms.Form
 
    'Form 重写 Dispose,以清理组件列表。
    <System.Diagnostics.DebuggerNonUserCode()> _
    Protected Overrides Sub Dispose(ByVal disposing As Boolean)
        Try
            If disposing AndAlso components IsNot Nothing Then
                components.Dispose()
            End If
        Finally
            MyBase.Dispose(disposing)
        End Try
    End Sub
 
    'Windows 窗体设计器所必需的
    Private components As System.ComponentModel.IContainer
 
    '注意: 以下过程是 Windows 窗体设计器所必需的
    '可以使用 Windows 窗体设计器修改它。
    '不要使用代码编辑器修改它。
    <System.Diagnostics.DebuggerStepThrough()> _
    Private Sub InitializeComponent()
        Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(mymain))
        Me.Button1 = New System.Windows.Forms.Button()
        Me.Button2 = New System.Windows.Forms.Button()
        Me.Button3 = New System.Windows.Forms.Button()
        Me.Button4 = New System.Windows.Forms.Button()
        Me.Button5 = New System.Windows.Forms.Button()
        Me.Button6 = New System.Windows.Forms.Button()
        Me.Button7 = New System.Windows.Forms.Button()
        Me.Button8 = New System.Windows.Forms.Button()
        Me.Button9 = New System.Windows.Forms.Button()
        Me.Label1 = New System.Windows.Forms.Label()
        Me.Button10 = New System.Windows.Forms.Button()
        Me.Button11 = New System.Windows.Forms.Button()
        Me.Button12 = New System.Windows.Forms.Button()
        Me.Button13 = New System.Windows.Forms.Button()
        Me.Button14 = New System.Windows.Forms.Button()
        Me.Button15 = New System.Windows.Forms.Button()
        Me.Button16 = New System.Windows.Forms.Button()
        Me.Button17 = New System.Windows.Forms.Button()
        Me.Button18 = New System.Windows.Forms.Button()
        Me.Button19 = New System.Windows.Forms.Button()
        Me.Button20 = New System.Windows.Forms.Button()
        Me.Button21 = New System.Windows.Forms.Button()
        Me.Button22 = New System.Windows.Forms.Button()
        Me.Button23 = New System.Windows.Forms.Button()
        Me.Button24 = New System.Windows.Forms.Button()
        Me.Button25 = New System.Windows.Forms.Button()
        Me.Button26 = New System.Windows.Forms.Button()
        Me.Button27 = New System.Windows.Forms.Button()
        Me.Button28 = New System.Windows.Forms.Button()
        Me.Button29 = New System.Windows.Forms.Button()
        Me.Button30 = New System.Windows.Forms.Button()
        Me.Button31 = New System.Windows.Forms.Button()
        Me.Button32 = New System.Windows.Forms.Button()
        Me.Button33 = New System.Windows.Forms.Button()
        Me.Button34 = New System.Windows.Forms.Button()
        Me.Button35 = New System.Windows.Forms.Button()
        Me.Button36 = New System.Windows.Forms.Button()
        Me.Button37 = New System.Windows.Forms.Button()
        Me.Button38 = New System.Windows.Forms.Button()
        Me.Button39 = New System.Windows.Forms.Button()
        Me.Button40 = New System.Windows.Forms.Button()
        Me.Button41 = New System.Windows.Forms.Button()
        Me.Button42 = New System.Windows.Forms.Button()
        Me.Button43 = New System.Windows.Forms.Button()
        Me.Button44 = New System.Windows.Forms.Button()
        Me.Button45 = New System.Windows.Forms.Button()
        Me.Button46 = New System.Windows.Forms.Button()
        Me.Button47 = New System.Windows.Forms.Button()
        Me.Button48 = New System.Windows.Forms.Button()
        Me.Button49 = New System.Windows.Forms.Button()
        Me.Button50 = New System.Windows.Forms.Button()
        Me.Button51 = New System.Windows.Forms.Button()
        Me.SuspendLayout()
        '
        'Button1
        '
        Me.Button1.Location = New System.Drawing.Point(9, 49)
        Me.Button1.Name = "Button1"
        Me.Button1.Size = New System.Drawing.Size(184, 38)
        Me.Button1.TabIndex = 0
        Me.Button1.Text = "DGVPrint组件打印DataGridView控件测试实例"
        Me.Button1.UseVisualStyleBackColor = True
        '
        'Button2
        '
        Me.Button2.Location = New System.Drawing.Point(197, 49)
        Me.Button2.Name = "Button2"
        Me.Button2.Size = New System.Drawing.Size(184, 38)
        Me.Button2.TabIndex = 1
        Me.Button2.Text = "通用打印组件VB2008print组件打印测试实例"
        Me.Button2.UseVisualStyleBackColor = True
        '
        'Button3
        '
        Me.Button3.Font = New System.Drawing.Font("宋体", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
        Me.Button3.Location = New System.Drawing.Point(143, 483)
        Me.Button3.Name = "Button3"
        Me.Button3.Size = New System.Drawing.Size(41, 38)
        Me.Button3.TabIndex = 3
        Me.Button3.Text = "DGVPrint组件打印DataGrid表格"
        Me.Button3.UseVisualStyleBackColor = True
        Me.Button3.Visible = False
        '
        'Button4
        '
        Me.Button4.Font = New System.Drawing.Font("宋体", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
        Me.Button4.Location = New System.Drawing.Point(94, 398)
        Me.Button4.Name = "Button4"
        Me.Button4.Size = New System.Drawing.Size(184, 38)
        Me.Button4.TabIndex = 4
        Me.Button4.Text = "DGVPrint组件打印DataTable表格测试实例"
        Me.Button4.UseVisualStyleBackColor = True
        Me.Button4.Visible = False
        '
        'Button5
        '
        Me.Button5.Font = New System.Drawing.Font("宋体", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
        Me.Button5.ForeColor = System.Drawing.Color.Black
        Me.Button5.Location = New System.Drawing.Point(197, 88)
        Me.Button5.Name = "Button5"
        Me.Button5.Size = New System.Drawing.Size(184, 38)
        Me.Button5.TabIndex = 0
        Me.Button5.Text = "VB2008Print组件打印复杂表头的DataGridView 测试"
        Me.Button5.UseVisualStyleBackColor = True
        '
        'Button6
        '
        Me.Button6.ForeColor = System.Drawing.Color.Black
        Me.Button6.Location = New System.Drawing.Point(574, 49)
        Me.Button6.Name = "Button6"
        Me.Button6.Size = New System.Drawing.Size(184, 38)
        Me.Button6.TabIndex = 0
        Me.Button6.Text = "DGVPrint组件打印复杂表头DataGridView测试"
        Me.Button6.UseVisualStyleBackColor = True
        '
        'Button7
        '
        Me.Button7.Font = New System.Drawing.Font("宋体", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
        Me.Button7.ForeColor = System.Drawing.SystemColors.ControlText
        Me.Button7.Location = New System.Drawing.Point(386, 282)
        Me.Button7.Name = "Button7"
        Me.Button7.Size = New System.Drawing.Size(184, 38)
        Me.Button7.TabIndex = 4
        Me.Button7.Text = "ListView分组及DataGridView单元格合并打印实例"
        Me.Button7.UseVisualStyleBackColor = True
        '
        'Button8
        '
        Me.Button8.Font = New System.Drawing.Font("宋体", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
        Me.Button8.ForeColor = System.Drawing.Color.Black
        Me.Button8.Location = New System.Drawing.Point(574, 324)
        Me.Button8.Name = "Button8"
        Me.Button8.Size = New System.Drawing.Size(184, 38)
        Me.Button8.TabIndex = 4
        Me.Button8.Text = "使用双线框与外边框打印表格测试"
        Me.Button8.UseVisualStyleBackColor = True
        '
        'Button9
        '
        Me.Button9.Font = New System.Drawing.Font("宋体", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
        Me.Button9.ForeColor = System.Drawing.SystemColors.ControlText
        Me.Button9.Location = New System.Drawing.Point(9, 403)
        Me.Button9.Name = "Button9"
        Me.Button9.Size = New System.Drawing.Size(184, 38)
        Me.Button9.TabIndex = 4
        Me.Button9.Text = "打印报价单的演示"
        Me.Button9.UseVisualStyleBackColor = True
        '
        'Label1
        '
        Me.Label1.Font = New System.Drawing.Font("宋体", 10.5!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
        Me.Label1.ForeColor = System.Drawing.Color.Blue
        Me.Label1.Location = New System.Drawing.Point(0, 483)
        Me.Label1.Name = "Label1"
        Me.Label1.Size = New System.Drawing.Size(752, 75)
        Me.Label1.TabIndex = 5
        Me.Label1.Text = resources.GetString("Label1.Text")
        '
        'Button10
        '
        Me.Button10.Font = New System.Drawing.Font("宋体", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
        Me.Button10.ForeColor = System.Drawing.SystemColors.ControlText
        Me.Button10.Location = New System.Drawing.Point(386, 49)
        Me.Button10.Name = "Button10"
        Me.Button10.Size = New System.Drawing.Size(184, 38)
        Me.Button10.TabIndex = 0
        Me.Button10.Text = "EasyReport组件报表模板设计及打印预览功能测试"
        Me.Button10.UseVisualStyleBackColor = True
        '
        'Button11
        '
        Me.Button11.Font = New System.Drawing.Font("宋体", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
        Me.Button11.ForeColor = System.Drawing.SystemColors.ControlText
        Me.Button11.Location = New System.Drawing.Point(574, 204)
        Me.Button11.Name = "Button11"
        Me.Button11.Size = New System.Drawing.Size(184, 38)
        Me.Button11.TabIndex = 0
        Me.Button11.Text = "报表模板在套打程序中的应用演示(以支票套打为例)"
        Me.Button11.UseVisualStyleBackColor = True
        '
        'Button12
        '
        Me.Button12.Font = New System.Drawing.Font("宋体", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
        Me.Button12.ForeColor = System.Drawing.SystemColors.ControlText
        Me.Button12.Location = New System.Drawing.Point(197, 127)
        Me.Button12.Name = "Button12"
        Me.Button12.Size = New System.Drawing.Size(184, 38)
        Me.Button12.TabIndex = 0
        Me.Button12.Text = "表格尾部添加空行填满纸张高度的打印演示,多种实现方法"
        Me.Button12.UseVisualStyleBackColor = True
        '
        'Button13
        '
        Me.Button13.Font = New System.Drawing.Font("宋体", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
        Me.Button13.ForeColor = System.Drawing.SystemColors.ControlText
        Me.Button13.Location = New System.Drawing.Point(387, 442)
        Me.Button13.Name = "Button13"
        Me.Button13.Size = New System.Drawing.Size(183, 38)
        Me.Button13.TabIndex = 0
        Me.Button13.Text = "打印自定义表格"
        Me.Button13.UseVisualStyleBackColor = True
        '
        'Button14
        '
        Me.Button14.Font = New System.Drawing.Font("宋体", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
        Me.Button14.ForeColor = System.Drawing.SystemColors.ControlText
        Me.Button14.Location = New System.Drawing.Point(387, 204)
        Me.Button14.Name = "Button14"
        Me.Button14.Size = New System.Drawing.Size(184, 38)
        Me.Button14.TabIndex = 0
        Me.Button14.Text = "用DrawDGVHeader与DrawDGVRow函数打印DataGridView,PrintDGV函数没法实现的表格页脚也可以实现哦"
        Me.Button14.UseVisualStyleBackColor = True
        '
        'Button15
        '
        Me.Button15.Font = New System.Drawing.Font("宋体", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
        Me.Button15.ForeColor = System.Drawing.Color.Black
        Me.Button15.Location = New System.Drawing.Point(574, 88)
        Me.Button15.Name = "Button15"
        Me.Button15.Size = New System.Drawing.Size(184, 38)
        Me.Button15.TabIndex = 0
        Me.Button15.Text = "RichTextBoX中的富文本打印演示"
        Me.Button15.UseVisualStyleBackColor = True
        '
        'Button16
        '
        Me.Button16.Font = New System.Drawing.Font("宋体", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
        Me.Button16.ForeColor = System.Drawing.SystemColors.ControlText
        Me.Button16.Location = New System.Drawing.Point(197, 166)
        Me.Button16.Name = "Button16"
        Me.Button16.Size = New System.Drawing.Size(184, 38)
        Me.Button16.TabIndex = 4
        Me.Button16.Text = "不显示预览窗口直接用VB2008Print组件打印演示"
        Me.Button16.UseVisualStyleBackColor = True
        '
        'Button17
        '
        Me.Button17.Font = New System.Drawing.Font("宋体", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
        Me.Button17.ForeColor = System.Drawing.SystemColors.ControlText
        Me.Button17.Location = New System.Drawing.Point(9, 166)
        Me.Button17.Name = "Button17"
        Me.Button17.Size = New System.Drawing.Size(184, 38)
        Me.Button17.TabIndex = 4
        Me.Button17.Text = "DrawPanel打印容器控件演示实例"
        Me.Button17.UseVisualStyleBackColor = True
        '
        'Button18
        '
        Me.Button18.Font = New System.Drawing.Font("宋体", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
        Me.Button18.ForeColor = System.Drawing.SystemColors.ControlText
        Me.Button18.Location = New System.Drawing.Point(386, 166)
        Me.Button18.Name = "Button18"
        Me.Button18.Size = New System.Drawing.Size(184, 38)
        Me.Button18.TabIndex = 4
        Me.Button18.Text = "将EasyReport组件的报表文件在指定的VB2008Print组件中打印预览的演示"
        Me.Button18.UseVisualStyleBackColor = True
        '
        'Button19
        '
        Me.Button19.Font = New System.Drawing.Font("宋体", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
        Me.Button19.ForeColor = System.Drawing.SystemColors.ControlText
        Me.Button19.Location = New System.Drawing.Point(111, 442)
        Me.Button19.Name = "Button19"
        Me.Button19.Size = New System.Drawing.Size(137, 38)
        Me.Button19.TabIndex = 4
        Me.Button19.Text = "VB2008Print组件DrawCell函数使用"
        Me.Button19.UseVisualStyleBackColor = True
        '
        'Button20
        '
        Me.Button20.Font = New System.Drawing.Font("宋体", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
        Me.Button20.ForeColor = System.Drawing.SystemColors.ControlText
        Me.Button20.Location = New System.Drawing.Point(577, 403)
        Me.Button20.Name = "Button20"
        Me.Button20.Size = New System.Drawing.Size(184, 38)
        Me.Button20.TabIndex = 4
        Me.Button20.Text = "VB2008Print组件的自定义打印"
        Me.Button20.UseVisualStyleBackColor = True
        '
        'Button21
        '
        Me.Button21.Font = New System.Drawing.Font("宋体", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
        Me.Button21.ForeColor = System.Drawing.SystemColors.ControlText
        Me.Button21.Location = New System.Drawing.Point(574, 127)
        Me.Button21.Name = "Button21"
        Me.Button21.Size = New System.Drawing.Size(184, 38)
        Me.Button21.TabIndex = 4
        Me.Button21.Text = "自定义大小纸张打印演示"
        Me.Button21.UseVisualStyleBackColor = True
        '
        'Button22
        '
        Me.Button22.Font = New System.Drawing.Font("宋体", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
        Me.Button22.ForeColor = System.Drawing.SystemColors.ControlText
        Me.Button22.Location = New System.Drawing.Point(574, 166)
        Me.Button22.Name = "Button22"
        Me.Button22.Size = New System.Drawing.Size(184, 38)
        Me.Button22.TabIndex = 4
        Me.Button22.Text = "打印DataGridView中选中部分内容演示"
        Me.Button22.UseVisualStyleBackColor = True
        '
        'Button23
        '
        Me.Button23.Font = New System.Drawing.Font("宋体", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
        Me.Button23.ForeColor = System.Drawing.SystemColors.ControlText
        Me.Button23.Location = New System.Drawing.Point(386, 243)
        Me.Button23.Name = "Button23"
        Me.Button23.Size = New System.Drawing.Size(184, 38)
        Me.Button23.TabIndex = 4
        Me.Button23.Text = "VB2008Print组件绘图功能演示"
        Me.Button23.UseVisualStyleBackColor = True
        '
        'Button24
        '
        Me.Button24.Font = New System.Drawing.Font("宋体", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
        Me.Button24.ForeColor = System.Drawing.SystemColors.ControlText
        Me.Button24.Location = New System.Drawing.Point(9, 442)
        Me.Button24.Name = "Button24"
        Me.Button24.Size = New System.Drawing.Size(96, 38)
        Me.Button24.TabIndex = 4
        Me.Button24.Text = "旋转文字与图片打印演示"
        Me.Button24.UseVisualStyleBackColor = True
        '
        'Button25
        '
        Me.Button25.Font = New System.Drawing.Font("宋体", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
        Me.Button25.ForeColor = System.Drawing.SystemColors.ControlText
        Me.Button25.Location = New System.Drawing.Point(9, 282)
        Me.Button25.Name = "Button25"
        Me.Button25.Size = New System.Drawing.Size(184, 38)
        Me.Button25.TabIndex = 4
        Me.Button25.Text = "公章制作演示"
        Me.Button25.UseVisualStyleBackColor = True
        '
        'Button26
        '
        Me.Button26.Font = New System.Drawing.Font("宋体", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
        Me.Button26.ForeColor = System.Drawing.SystemColors.ControlText
        Me.Button26.Location = New System.Drawing.Point(197, 282)
        Me.Button26.Name = "Button26"
        Me.Button26.Size = New System.Drawing.Size(184, 38)
        Me.Button26.TabIndex = 4
        Me.Button26.Text = "装订线打印测试"
        Me.Button26.UseVisualStyleBackColor = True
        '
        'Button27
        '
        Me.Button27.Font = New System.Drawing.Font("宋体", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
        Me.Button27.ForeColor = System.Drawing.SystemColors.ControlText
        Me.Button27.Location = New System.Drawing.Point(574, 282)
        Me.Button27.Name = "Button27"
        Me.Button27.Size = New System.Drawing.Size(184, 38)
        Me.Button27.TabIndex = 4
        Me.Button27.Text = "指定行间距与字符间距打印文本"
        Me.Button27.UseVisualStyleBackColor = True
        '
        'Button28
        '
        Me.Button28.Font = New System.Drawing.Font("宋体", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
        Me.Button28.ForeColor = System.Drawing.SystemColors.ControlText
        Me.Button28.Location = New System.Drawing.Point(574, 243)
        Me.Button28.Name = "Button28"
        Me.Button28.Size = New System.Drawing.Size(184, 38)
        Me.Button28.TabIndex = 4
        Me.Button28.Text = "表格页脚每页重复打印测试"
        Me.Button28.UseVisualStyleBackColor = True
        '
        'Button29
        '
        Me.Button29.Font = New System.Drawing.Font("宋体", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
        Me.Button29.ForeColor = System.Drawing.SystemColors.ControlText
        Me.Button29.Location = New System.Drawing.Point(9, 324)
        Me.Button29.Name = "Button29"
        Me.Button29.Size = New System.Drawing.Size(184, 38)
        Me.Button29.TabIndex = 4
        Me.Button29.Text = "指定行间距打印测试二"
        Me.Button29.UseVisualStyleBackColor = True
        '
        'Button30
        '
        Me.Button30.Font = New System.Drawing.Font("宋体", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
        Me.Button30.ForeColor = System.Drawing.SystemColors.WindowText
        Me.Button30.Location = New System.Drawing.Point(387, 88)
        Me.Button30.Name = "Button30"
        Me.Button30.Size = New System.Drawing.Size(184, 38)
        Me.Button30.TabIndex = 4
        Me.Button30.Text = "新Chartlet图表组件打印图表测试"
        Me.Button30.UseVisualStyleBackColor = True
        '
        'Button31
        '
        Me.Button31.Font = New System.Drawing.Font("宋体", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
        Me.Button31.ForeColor = System.Drawing.SystemColors.WindowText
        Me.Button31.Location = New System.Drawing.Point(387, 127)
        Me.Button31.Name = "Button31"
        Me.Button31.Size = New System.Drawing.Size(184, 38)
        Me.Button31.TabIndex = 4
        Me.Button31.Text = "将Chartlet图表组件的图表在指定的Graphics对象中显示"
        Me.Button31.UseVisualStyleBackColor = True
        '
        'Button32
        '
        Me.Button32.Font = New System.Drawing.Font("宋体", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
        Me.Button32.ForeColor = System.Drawing.Color.Black
        Me.Button32.Location = New System.Drawing.Point(9, 364)
        Me.Button32.Name = "Button32"
        Me.Button32.Size = New System.Drawing.Size(184, 38)
        Me.Button32.TabIndex = 4
        Me.Button32.Text = "表达式绘图测试"
        Me.Button32.UseVisualStyleBackColor = True
        '
        'Button33
        '
        Me.Button33.Font = New System.Drawing.Font("宋体", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
        Me.Button33.ForeColor = System.Drawing.SystemColors.WindowText
        Me.Button33.Location = New System.Drawing.Point(386, 324)
        Me.Button33.Name = "Button33"
        Me.Button33.Size = New System.Drawing.Size(184, 38)
        Me.Button33.TabIndex = 4
        Me.Button33.Text = "DataGridView快速导出Excel功能测试"
        Me.Button33.UseVisualStyleBackColor = True
        '
        'Button34
        '
        Me.Button34.Font = New System.Drawing.Font("宋体", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
        Me.Button34.ForeColor = System.Drawing.Color.Black
        Me.Button34.Location = New System.Drawing.Point(195, 364)
        Me.Button34.Name = "Button34"
        Me.Button34.Size = New System.Drawing.Size(184, 38)
        Me.Button34.TabIndex = 4
        Me.Button34.Text = "分组打印时,在分组打印的标题中添加当前组名称"
        Me.Button34.UseVisualStyleBackColor = True
        '
        'Button35
        '
        Me.Button35.Font = New System.Drawing.Font("宋体", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
        Me.Button35.ForeColor = System.Drawing.Color.Black
        Me.Button35.Location = New System.Drawing.Point(386, 364)
        Me.Button35.Name = "Button35"
        Me.Button35.Size = New System.Drawing.Size(184, 38)
        Me.Button35.TabIndex = 4
        Me.Button35.Text = "将EasyReport组件中的打印内容添加到当前处理的打印任务中"
        Me.Button35.UseVisualStyleBackColor = True
        '
        'Button36
        '
        Me.Button36.Font = New System.Drawing.Font("宋体", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
        Me.Button36.ForeColor = System.Drawing.Color.Black
        Me.Button36.Location = New System.Drawing.Point(576, 364)
        Me.Button36.Name = "Button36"
        Me.Button36.Size = New System.Drawing.Size(184, 38)
        Me.Button36.TabIndex = 4
        Me.Button36.Text = "多表头组件单元格内容合并显示与打印测试"
        Me.Button36.UseVisualStyleBackColor = True
        '
        'Button37
        '
        Me.Button37.Font = New System.Drawing.Font("宋体", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
        Me.Button37.ForeColor = System.Drawing.SystemColors.ControlText
        Me.Button37.Location = New System.Drawing.Point(9, 88)
        Me.Button37.Name = "Button37"
        Me.Button37.Size = New System.Drawing.Size(184, 38)
        Me.Button37.TabIndex = 4
        Me.Button37.Text = "多表头组件合并打印与显示自由设置(含单元格合并数据导出)"
        Me.Button37.UseVisualStyleBackColor = True
        '
        'Button38
        '
        Me.Button38.Font = New System.Drawing.Font("宋体", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
        Me.Button38.ForeColor = System.Drawing.SystemColors.ControlText
        Me.Button38.Location = New System.Drawing.Point(9, 204)
        Me.Button38.Name = "Button38"
        Me.Button38.Size = New System.Drawing.Size(182, 38)
        Me.Button38.TabIndex = 4
        Me.Button38.Text = "斜线表头打印测试"
        Me.Button38.UseVisualStyleBackColor = True
        '
        'Button39
        '
        Me.Button39.Font = New System.Drawing.Font("宋体", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
        Me.Button39.ForeColor = System.Drawing.SystemColors.ControlText
        Me.Button39.Location = New System.Drawing.Point(195, 403)
        Me.Button39.Name = "Button39"
        Me.Button39.Size = New System.Drawing.Size(183, 38)
        Me.Button39.TabIndex = 4
        Me.Button39.Text = "面试通知单打印测试"
        Me.Button39.UseVisualStyleBackColor = True
        '
        'Button40
        '
        Me.Button40.Font = New System.Drawing.Font("宋体", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
        Me.Button40.ForeColor = System.Drawing.SystemColors.ControlText
        Me.Button40.Location = New System.Drawing.Point(9, 243)
        Me.Button40.Name = "Button40"
        Me.Button40.Size = New System.Drawing.Size(184, 38)
        Me.Button40.TabIndex = 4
        Me.Button40.Text = "一式两联请假单打印测试"
        Me.Button40.UseVisualStyleBackColor = True
        '
        'Button41
        '
        Me.Button41.Font = New System.Drawing.Font("宋体", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
        Me.Button41.ForeColor = System.Drawing.Color.Black
        Me.Button41.Location = New System.Drawing.Point(197, 324)
        Me.Button41.Name = "Button41"
        Me.Button41.Size = New System.Drawing.Size(181, 38)
        Me.Button41.TabIndex = 4
        Me.Button41.Text = "二维码打印测试"
        Me.Button41.UseVisualStyleBackColor = True
        '
        'Button42
        '
        Me.Button42.Font = New System.Drawing.Font("宋体", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
        Me.Button42.ForeColor = System.Drawing.Color.Black
        Me.Button42.Location = New System.Drawing.Point(9, 127)
        Me.Button42.Name = "Button42"
        Me.Button42.Size = New System.Drawing.Size(184, 38)
        Me.Button42.TabIndex = 4
        Me.Button42.Text = "用VB2008Print组件并排打印2个DataGridView测试"
        Me.Button42.UseVisualStyleBackColor = True
        '
        'Button43
        '
        Me.Button43.Font = New System.Drawing.Font("宋体", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
        Me.Button43.ForeColor = System.Drawing.Color.Black
        Me.Button43.Location = New System.Drawing.Point(254, 442)
        Me.Button43.Name = "Button43"
        Me.Button43.Size = New System.Drawing.Size(124, 38)
        Me.Button43.TabIndex = 4
        Me.Button43.Text = "DGVPrint组件添加报表头与报表尾打印"
        Me.Button43.UseVisualStyleBackColor = True
        '
        'Button44
        '
        Me.Button44.Font = New System.Drawing.Font("宋体", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
        Me.Button44.ForeColor = System.Drawing.Color.Black
        Me.Button44.Location = New System.Drawing.Point(577, 442)
        Me.Button44.Name = "Button44"
        Me.Button44.Size = New System.Drawing.Size(183, 38)
        Me.Button44.TabIndex = 4
        Me.Button44.Text = "EasyReport组件多栏打印测试"
        Me.Button44.UseVisualStyleBackColor = True
        '
        'Button45
        '
        Me.Button45.Font = New System.Drawing.Font("宋体", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
        Me.Button45.ForeColor = System.Drawing.Color.Black
        Me.Button45.Location = New System.Drawing.Point(199, 243)
        Me.Button45.Name = "Button45"
        Me.Button45.Size = New System.Drawing.Size(182, 38)
        Me.Button45.TabIndex = 4
        Me.Button45.Text = "自动折行打印工资条"
        Me.Button45.UseVisualStyleBackColor = True
        '
        'Button46
        '
        Me.Button46.ForeColor = System.Drawing.Color.Black
        Me.Button46.Location = New System.Drawing.Point(197, 8)
        Me.Button46.Name = "Button46"
        Me.Button46.Size = New System.Drawing.Size(184, 38)
        Me.Button46.TabIndex = 0
        Me.Button46.Text = "SimpleReport组件简单打印测试(含复杂表头打印使用)"
        Me.Button46.UseVisualStyleBackColor = True
        '
        'Button47
        '
        Me.Button47.ForeColor = System.Drawing.Color.Black
        Me.Button47.Location = New System.Drawing.Point(576, 8)
        Me.Button47.Name = "Button47"
        Me.Button47.Size = New System.Drawing.Size(184, 38)
        Me.Button47.TabIndex = 0
        Me.Button47.Text = "SimpleReport组件不预览直接打印到打印机"
        Me.Button47.UseVisualStyleBackColor = True
        '
        'Button48
        '
        Me.Button48.ForeColor = System.Drawing.Color.Black
        Me.Button48.Location = New System.Drawing.Point(386, 8)
        Me.Button48.Name = "Button48"
        Me.Button48.Size = New System.Drawing.Size(184, 38)
        Me.Button48.TabIndex = 0
        Me.Button48.Text = "SimpleReport组件带参数打印预览以及计算公式列"
        Me.Button48.UseVisualStyleBackColor = True
        '
        'Button49
        '
        Me.Button49.ForeColor = System.Drawing.Color.Black
        Me.Button49.Location = New System.Drawing.Point(197, 204)
        Me.Button49.Name = "Button49"
        Me.Button49.Size = New System.Drawing.Size(184, 38)
        Me.Button49.TabIndex = 0
        Me.Button49.Text = "DataGridView的复制与粘贴测试"
        Me.Button49.UseVisualStyleBackColor = True
        '
        'Button50
        '
        Me.Button50.ForeColor = System.Drawing.Color.Black
        Me.Button50.Location = New System.Drawing.Point(387, 403)
        Me.Button50.Name = "Button50"
        Me.Button50.Size = New System.Drawing.Size(184, 38)
        Me.Button50.TabIndex = 0
        Me.Button50.Text = "SimpleReport组件的报表在指定的VB2008Print组件中打印预览"
        Me.Button50.UseVisualStyleBackColor = True
        '
        'Button51
        '
        Me.Button51.ForeColor = System.Drawing.Color.Black
        Me.Button51.Location = New System.Drawing.Point(9, 8)
        Me.Button51.Name = "Button51"
        Me.Button51.Size = New System.Drawing.Size(184, 38)
        Me.Button51.TabIndex = 0
        Me.Button51.Text = "ExportDGV导出数据测试"
        Me.Button51.UseVisualStyleBackColor = True
        '
        'mymain
        '
        Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 12.0!)
        Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
        Me.ClientSize = New System.Drawing.Size(764, 557)
        Me.Controls.Add(Me.Button45)
        Me.Controls.Add(Me.Button9)
        Me.Controls.Add(Me.Button36)
        Me.Controls.Add(Me.Button35)
        Me.Controls.Add(Me.Button34)
        Me.Controls.Add(Me.Button8)
        Me.Controls.Add(Me.Button7)
        Me.Controls.Add(Me.Button20)
        Me.Controls.Add(Me.Button17)
        Me.Controls.Add(Me.Button18)
        Me.Controls.Add(Me.Button33)
        Me.Controls.Add(Me.Button40)
        Me.Controls.Add(Me.Button39)
        Me.Controls.Add(Me.Button38)
        Me.Controls.Add(Me.Button44)
        Me.Controls.Add(Me.Button43)
        Me.Controls.Add(Me.Button42)
        Me.Controls.Add(Me.Button41)
        Me.Controls.Add(Me.Button37)
        Me.Controls.Add(Me.Button32)
        Me.Controls.Add(Me.Button31)
        Me.Controls.Add(Me.Button30)
        Me.Controls.Add(Me.Button29)
        Me.Controls.Add(Me.Button27)
        Me.Controls.Add(Me.Button26)
        Me.Controls.Add(Me.Button28)
        Me.Controls.Add(Me.Button25)
        Me.Controls.Add(Me.Button24)
        Me.Controls.Add(Me.Button23)
        Me.Controls.Add(Me.Button22)
        Me.Controls.Add(Me.Button21)
        Me.Controls.Add(Me.Button19)
        Me.Controls.Add(Me.Button16)
        Me.Controls.Add(Me.Button4)
        Me.Controls.Add(Me.Button3)
        Me.Controls.Add(Me.Button2)
        Me.Controls.Add(Me.Button6)
        Me.Controls.Add(Me.Button5)
        Me.Controls.Add(Me.Button11)
        Me.Controls.Add(Me.Button14)
        Me.Controls.Add(Me.Button13)
        Me.Controls.Add(Me.Button15)
        Me.Controls.Add(Me.Button12)
        Me.Controls.Add(Me.Button10)
        Me.Controls.Add(Me.Button50)
        Me.Controls.Add(Me.Button49)
        Me.Controls.Add(Me.Button48)
        Me.Controls.Add(Me.Button47)
        Me.Controls.Add(Me.Button51)
        Me.Controls.Add(Me.Button46)
        Me.Controls.Add(Me.Button1)
        Me.Controls.Add(Me.Label1)
        Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog
        Me.MaximizeBox = False
        Me.MinimizeBox = False
        Me.Name = "mymain"
        Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
        Me.Text = "6.0版打印控件窗口程序打印测试"
        Me.ResumeLayout(False)
 
    End Sub
    Friend WithEvents Button1 As System.Windows.Forms.Button
    Friend WithEvents Button2 As System.Windows.Forms.Button
    Friend WithEvents Button3 As System.Windows.Forms.Button
    Friend WithEvents Button4 As System.Windows.Forms.Button
    Friend WithEvents Button5 As System.Windows.Forms.Button
    Friend WithEvents Button6 As System.Windows.Forms.Button
    Friend WithEvents Button7 As System.Windows.Forms.Button
    Friend WithEvents Button8 As System.Windows.Forms.Button
    Friend WithEvents Button9 As System.Windows.Forms.Button
    Friend WithEvents Label1 As System.Windows.Forms.Label
    Friend WithEvents Button10 As System.Windows.Forms.Button
    Friend WithEvents Button11 As System.Windows.Forms.Button
    Friend WithEvents Button12 As System.Windows.Forms.Button
    Friend WithEvents Button13 As System.Windows.Forms.Button
    Friend WithEvents Button14 As System.Windows.Forms.Button
    Friend WithEvents Button15 As System.Windows.Forms.Button
    Friend WithEvents Button16 As System.Windows.Forms.Button
    Friend WithEvents Button17 As System.Windows.Forms.Button
    Friend WithEvents Button18 As System.Windows.Forms.Button
    Friend WithEvents Button19 As System.Windows.Forms.Button
    Friend WithEvents Button20 As System.Windows.Forms.Button
    Friend WithEvents Button21 As System.Windows.Forms.Button
    Friend WithEvents Button22 As System.Windows.Forms.Button
    Friend WithEvents Button23 As System.Windows.Forms.Button
    Friend WithEvents Button24 As System.Windows.Forms.Button
    Friend WithEvents Button25 As System.Windows.Forms.Button
    Friend WithEvents Button26 As System.Windows.Forms.Button
    Friend WithEvents Button27 As System.Windows.Forms.Button
    Friend WithEvents Button28 As System.Windows.Forms.Button
    Friend WithEvents Button29 As System.Windows.Forms.Button
    Friend WithEvents Button30 As System.Windows.Forms.Button
    Friend WithEvents Button31 As System.Windows.Forms.Button
    Friend WithEvents Button32 As System.Windows.Forms.Button
    Friend WithEvents Button33 As System.Windows.Forms.Button
    Friend WithEvents Button34 As System.Windows.Forms.Button
    Friend WithEvents Button35 As System.Windows.Forms.Button
    Friend WithEvents Button36 As System.Windows.Forms.Button
    Friend WithEvents Button37 As System.Windows.Forms.Button
    Friend WithEvents Button38 As System.Windows.Forms.Button
    Friend WithEvents Button39 As System.Windows.Forms.Button
    Friend WithEvents Button40 As System.Windows.Forms.Button
    Friend WithEvents Button41 As System.Windows.Forms.Button
    Friend WithEvents Button42 As System.Windows.Forms.Button
    Friend WithEvents Button43 As System.Windows.Forms.Button
    Friend WithEvents Button44 As System.Windows.Forms.Button
    Friend WithEvents Button45 As System.Windows.Forms.Button
    Friend WithEvents Button46 As System.Windows.Forms.Button
    Friend WithEvents Button47 As System.Windows.Forms.Button
    Friend WithEvents Button48 As System.Windows.Forms.Button
    Friend WithEvents Button49 As System.Windows.Forms.Button
    Friend WithEvents Button50 As System.Windows.Forms.Button
    Friend WithEvents Button51 As System.Windows.Forms.Button
End Class

【源码目录】

演示程序源代码(VB2008编写)

├── Thumbs.db
├── test11.sln
├── test11.v12.suo
└── 演示源代码
    ├── AboutBox1.Designer.vb
    ├── AboutBox1.resx
    ├── AboutBox1.vb
    ├── AddEasyReportToVB2008Print.designer.vb
    ├── AddEasyReportToVB2008Print.resx
    ├── AddEasyReportToVB2008Print.vb
    ├── ApplicationEvents.vb
    ├── ChartletTobmp.Designer.vb
    ├── ChartletTobmp.resx
    ├── ChartletTobmp.vb
    ├── Class1.vb
    ├── ClassDiagram1.cd
    ├── Draw.Designer.vb
    ├── Draw.resx
    ├── Draw.vb
    ├── DrawCellTest.designer.vb
    ├── DrawCellTest.resx
    ├── DrawCellTest.vb
    ├── DrawPanelForm.Designer.vb
    ├── DrawPanelForm.resx
    ├── DrawPanelForm.vb
    ├── DrawTextSpace.Designer.vb
    ├── DrawTextSpace.resx
    ├── DrawTextSpace.vb
    ├── DrawTextSpace2.designer.vb
    ├── DrawTextSpace2.resx
    ├── DrawTextSpace2.vb
    ├── EasyReportToVB2008Print.Designer.vb
    ├── EasyReportToVB2008Print.resx
    ├── EasyReportToVB2008Print.vb
    ├── ExportTest.Designer.vb
    ├── ExportTest.resx
    ├── ExportTest.vb
    ├── ExportToExcel.designer.vb
    ├── ExportToExcel.resx
    ├── ExportToExcel.vb
    ├── Form1.Designer.vb
    ├── Form1.resx
    ├── Form1.vb
    ├── Form10.designer.vb
    ├── Form10.resx
    ├── Form10.vb
    ├── Form11.designer.vb
    ├── Form11.resx
    ├── Form11.vb
    ├── Form12.designer.vb
    ├── Form12.resx
    ├── Form12.vb
    ├── Form13.designer.vb
    ├── Form13.resx
    ├── Form13.vb
    ├── Form14.designer.vb
    ├── Form14.resx
    ├── Form14.vb
    ├── Form15.designer.vb
    ├── Form15.resx
    ├── Form15.vb
    ├── Form17.designer.vb
    ├── Form17.resx
    ├── Form17.vb
    ├── Form18.Designer.vb
    ├── Form18.resx
    ├── Form18.vb
    ├── Form19.designer.vb
    ├── Form19.resx
    ├── Form19.vb
    ├── Form2.designer.vb
    ├── Form2.resx
    ├── Form2.vb
    ├── Form20.Designer.vb
    ├── Form20.resx
    ├── Form20.vb
    ├── Form21.designer.vb
    ├── Form21.resx
    ├── Form21.vb
    ├── Form22.Designer.vb
    ├── Form22.resx
    ├── Form22.vb
    ├── Form23.Designer.vb
    ├── Form23.resx
    ├── Form23.vb
    ├── Form24.Designer.vb
    ├── Form24.resx
    ├── Form24.vb
    ├── Form25.Designer.vb
    ├── Form25.resx
    ├── Form25.vb
    ├── Form26.designer.vb
    ├── Form26.resx
    ├── Form26.vb
    ├── Form3.designer.vb
    ├── Form3.resx
    ├── Form3.vb
    ├── Form4.designer.vb
    ├── Form4.resx
    ├── Form4.vb
    ├── Form5.Designer.vb
    ├── Form5.resx
    ├── Form5.vb
    ├── Form6.designer.vb
    ├── Form6.resx
    ├── Form6.vb
    ├── Form7.Designer.vb
    ├── Form7.resx
    ├── Form7.vb
    ├── Form8.Designer.vb
    ├── Form8.resx
    ├── Form8.vb
    ├── Form9.Designer.vb
    ├── Form9.resx
    ├── Form9.vb
    ├── FormMul.Designer.vb
    ├── FormMul.resx
    ├── FormMul.vb
    ├── FormQR.Designer.vb
    ├── FormQR.resx
    ├── FormQR.vb
    ├── Formreport.Designer.vb
    ├── Formreport.resx
    ├── Formreport.vb
    ├── ImPortExcel.Designer.vb
    ├── ImPortExcel.resx
    ├── ImPortExcel.vb
    ├── My Project
    │   ├── Application.Designer.vb
    │   ├── Application.myapp
    │   ├── AssemblyInfo.vb
    │   ├── Resources.Designer.vb
    │   ├── Resources.resx
    │   ├── Settings.Designer.vb
    │   ├── Settings.settings
    │   └── app.manifest
    ├── Northwind.mdb
    ├── NorthwindDataSet.Designer.vb
    ├── NorthwindDataSet.vb
    ├── NorthwindDataSet.xsc
    ├── NorthwindDataSet.xsd
    ├── NorthwindDataSet.xss
    ├── PrintXML.Designer.vb
    ├── PrintXML.resx
    ├── PrintXML.vb
    ├── Report1.rdlc
    ├── Resources
    │   ├── 43.bmp
    │   ├── 53.bmp
    │   ├── 55.bmp
    │   ├── Image1.jpg
    │   ├── KEY.GIF
    │   ├── Thumbs.db
    │   ├── ico.jpg
    │   └── tilocalCATTWDPO.jpg
    ├── RichTextBoxPrint.Designer.vb
    ├── RichTextBoxPrint.resx
    ├── RichTextBoxPrint.vb
    ├── SimpleReportTest.Designer.vb
    ├── SimpleReportTest.resx
    ├── SimpleReportTest.vb
    ├── SimpleReportTest2.designer.vb
    ├── SimpleReportTest2.resx
    ├── SimpleReportTest2.vb
    ├── SimpleReportTest3.Designer.vb
    ├── SimpleReportTest3.resx
    ├── SimpleReportTest3.vb
    ├── SimpleReportTest4.designer.vb
    ├── SimpleReportTest4.resx
    ├── SimpleReportTest4.vb
    ├── app.config
    ├── bin
    │   └── Debug
    │       ├── DotNetPrint.dll
    │       ├── DotNetPrint.xml
    │       ├── ICSharpCode.SharpZipLib.dll
    │       ├── Microsoft.Office.Interop.Word.dll
    │       ├── NPOI.OOXML.dll
    │       ├── NPOI.OpenXml4Net.dll
    │       ├── NPOI.OpenXmlFormats.dll
    │       ├── NPOI.dll
    │       ├── Northwind.mdb
    │       ├── O2S.Components.PDFRender4NET.dll
    │       ├── itextsharp.dll
    │       ├── rtf1.rtf
    │       ├── rtf2.rtf
    │       ├── stdole.dll
    │       ├── zxing.dll
    │       ├── zxing.pdb
    │       ├── zxing.xml
    │       ├── 多栏报表.mb
    │       ├── 支票套打.mb
    │       ├── 普通报表.mb
    │       ├── 分组报表1.mb
    │       ├── 分组报表2.mb
    │       ├── 普通报表2.mb
    │       ├── 计算公式报表.mb
    │       ├── 计算字段报表.mb
    │       ├── 自已管理模板.pp
    │       ├── 第一个打印方案.fa
    │       ├── 第三个打印方案.fa
    │       ├── 第二个打印方案.fa
    │       ├── 第一个打印方案.yp
    │       ├── 第三个打印方案.yp
    │       ├── 第二个打印方案.yp
    │       ├── 第五个打印方案.yp
    │       ├── 第六个打印方案.yp
    │       ├── 第四个打印方案.yp
    │       ├── 打印控件演示实例.exe
    │       ├── 打印控件演示实例.exe.config
    │       └── 图片及复选框报表.mb
    ├── checkprint.Designer.vb
    ├── checkprint.resx
    ├── checkprint.vb
    ├── doubleline.Designer.vb
    ├── doubleline.resx
    ├── doubleline.vb
    ├── drawexpression.Designer.vb
    ├── drawexpression.resx
    ├── drawexpression.vb
    ├── groupprint.Designer.vb
    ├── groupprint.resx
    ├── groupprint.vb
    ├── gz.Designer.vb
    ├── gz.resx
    ├── gz.vb
    ├── mymain.Designer.vb
    ├── mymain.resx
    ├── mymain.vb
    ├── obj
    │   ├── Debug
    │   │   ├── DesignTimeResolveAssemblyReferences.cache
    │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │   ├── TempPE
    │   │   │   ├── My Project.Resources.Designer.vb.dll
    │   │   │   └── NorthwindDataSet.Designer.vb.dll
    │   │   ├── test.AboutBox1.resources
    │   │   ├── test.AddEasyReportToVB2008Print.resources
    │   │   ├── test.ChartletTobmp.resources
    │   │   ├── test.Draw.resources
    │   │   ├── test.DrawCellTest.resources
    │   │   ├── test.DrawPanelForm.resources
    │   │   ├── test.DrawTextSpace.resources
    │   │   ├── test.DrawTextSpace2.resources
    │   │   ├── test.EasyReportToVB2008Print.resources
    │   │   ├── test.ExportTest.resources
    │   │   ├── test.ExportToExcel.resources
    │   │   ├── test.Form1.resources
    │   │   ├── test.Form10.resources
    │   │   ├── test.Form11.resources
    │   │   ├── test.Form12.resources
    │   │   ├── test.Form13.resources
    │   │   ├── test.Form14.resources
    │   │   ├── test.Form15.resources
    │   │   ├── test.Form17.resources
    │   │   ├── test.Form18.resources
    │   │   ├── test.Form19.resources
    │   │   ├── test.Form2.resources
    │   │   ├── test.Form20.resources
    │   │   ├── test.Form21.resources
    │   │   ├── test.Form22.resources
    │   │   ├── test.Form23.resources
    │   │   ├── test.Form24.resources
    │   │   ├── test.Form25.resources
    │   │   ├── test.Form26.resources
    │   │   ├── test.Form3.resources
    │   │   ├── test.Form4.resources
    │   │   ├── test.Form5.resources
    │   │   ├── test.Form6.resources
    │   │   ├── test.Form7.resources
    │   │   ├── test.Form8.resources
    │   │   ├── test.Form9.resources
    │   │   ├── test.FormMul.resources
    │   │   ├── test.FormQR.resources
    │   │   ├── test.Formreport.resources
    │   │   ├── test.ImPortExcel.resources
    │   │   ├── test.PrintXML.resources
    │   │   ├── test.Resources.resources
    │   │   ├── test.RichTextBoxPrint.resources
    │   │   ├── test.SimpleReportTest.resources
    │   │   ├── test.SimpleReportTest2.resources
    │   │   ├── test.SimpleReportTest3.resources
    │   │   ├── test.SimpleReportTest4.resources
    │   │   ├── test.checkprint.resources
    │   │   ├── test.doubleline.resources
    │   │   ├── test.drawexpression.resources
    │   │   ├── test.groupprint.resources
    │   │   ├── test.gz.resources
    │   │   ├── test.mymain.resources
    │   │   ├── test.printdgvselect.resources
    │   │   ├── test.printpapersize.resources
    │   │   ├── test.printzdx.resources
    │   │   ├── test.rotate.resources
    │   │   ├── test.vbproj.GenerateResource.Cache
    │   │   ├── test.vbprojResolveAssemblyReference.cache
    │   │   ├── test.zydy.resources
    │   │   ├── 打印控件演示实例.exe
    │   │   └── 打印控件演示实例.pdb
    │   └── Release
    │       ├── DesignTimeResolveAssemblyReferences.cache
    │       ├── DesignTimeResolveAssemblyReferencesInput.cache
    │       ├── TempPE
    │       │   ├── My Project.Resources.Designer.vb.dll
    │       │   └── NorthwindDataSet.Designer.vb.dll
    │       ├── test.AboutBox1.resources
    │       ├── test.AddEasyReportToVB2008Print.resources
    │       ├── test.ChartletTobmp.resources
    │       ├── test.Draw.resources
    │       ├── test.DrawCellTest.resources
    │       ├── test.DrawPanelForm.resources
    │       ├── test.DrawTextSpace.resources
    │       ├── test.DrawTextSpace2.resources
    │       ├── test.EasyReportToVB2008Print.resources
    │       ├── test.ExportTest.resources
    │       ├── test.ExportToExcel.resources
    │       ├── test.Form1.resources
    │       ├── test.Form10.resources
    │       ├── test.Form11.resources
    │       ├── test.Form12.resources
    │       ├── test.Form13.resources
    │       ├── test.Form14.resources
    │       ├── test.Form15.resources
    │       ├── test.Form17.resources
    │       ├── test.Form18.resources
    │       ├── test.Form19.resources
    │       ├── test.Form2.resources
    │       ├── test.Form20.resources
    │       ├── test.Form21.resources
    │       ├── test.Form22.resources
    │       ├── test.Form23.resources
    │       ├── test.Form24.resources
    │       ├── test.Form25.resources
    │       ├── test.Form26.resources
    │       ├── test.Form3.resources
    │       ├── test.Form4.resources
    │       ├── test.Form5.resources
    │       ├── test.Form6.resources
    │       ├── test.Form7.resources
    │       ├── test.Form8.resources
    │       ├── test.Form9.resources
    │       ├── test.FormMul.resources
    │       ├── test.FormQR.resources
    │       ├── test.Formreport.resources
    │       ├── test.Resources.resources
    │       ├── test.RichTextBoxPrint.resources
    │       ├── test.SimpleReportTest.resources
    │       ├── test.SimpleReportTest2.resources
    │       ├── test.SimpleReportTest3.resources
    │       ├── test.SimpleReportTest4.resources
    │       ├── test.checkprint.resources
    │       ├── test.doubleline.resources
    │       ├── test.drawexpression.resources
    │       ├── test.groupprint.resources
    │       ├── test.gz.resources
    │       ├── test.mymain.resources
    │       ├── test.printdgvselect.resources
    │       ├── test.printpapersize.resources
    │       ├── test.printzdx.resources
    │       ├── test.rotate.resources
    │       ├── test.vbproj.CopyComplete
    │       ├── test.vbproj.CoreCompileInputs.cache
    │       ├── test.vbproj.FileListAbsolute.txt
    │       ├── test.vbproj.GenerateResource.Cache
    │       ├── test.vbprojAssemblyReference.cache
    │       ├── test.zydy.resources
    │       └── 打印控件演示实例.exe
    ├── printdgvselect.designer.vb
    ├── printdgvselect.resx
    ├── printdgvselect.vb
    ├── printpapersize.designer.vb
    ├── printpapersize.resx
    ├── printpapersize.vb
    ├── printzdx.Designer.vb
    ├── printzdx.resx
    ├── printzdx.vb
    ├── rotate.Designer.vb
    ├── rotate.resx
    ├── rotate.vb
    ├── test.vbproj
    ├── test.vbproj.user
    ├── zydy.designer.vb
    ├── zydy.resx
    ├── zydy.vb
    └── 打印.ico

10 directories, 374 files



标签: 200 源代码 vb 00 程序

实例下载地址

vb打印程序源代码(VB2008编写)

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警