您现在的位置: 捷凌网安 >> 编程语言 >> VBNET >> 正文
用vb.net实现写字板程序报告

作者:佚名 责任编辑:左决 点击数: 更新时间:2008-4-11 5:18:31

  6、有关打印预览起初以为很简单,但最后发现预览总是无法预览到实际文件,最终还是在微软站点上获得了相关信息,并很好的利用他到本应用程序中,而且十分成功,可以成功预览了。为了怕自己误导别人,所以把它原文也打印出来。
 
  下面是两幅图片用来演示打印预览的效果。
 

用vb.net实现写字板程序报告(图六)

用vb.net实现写字板程序报告(图七)

打印预览相关代码(注意!以下有关打印的代码均来自微软技术文档中):

必须确定所有的打印事件都是针对同一个 PrintDocument

Private WIThEvents pdoc As New PrintDocument() 

打印文件是一个函数性的打印事件,每当要打印时该事件被触发。

下面是一个非常快速和有用的精确计算要打印的文本是否能够被包括到整张打印页面是我从微软站点上得到的资料,我把它应用到了我的程序中:

Private Sub pdoc_PrintPage(ByVal sender As Object, ByVal e As

System.Drawing.Printing.PrintPageEventArgs) Handles pdoc.PrintPage 

Declare a variable to hold the posITion of the last printed char. Declare 

as static so that subsequent PrintPage events can reference IT.

Static intCurrentChar As Int32

InITialize the font to be used for printing.

Dim font As New font("Microsoft Sans Serif", 24)

Dim intPrintAreaHeight, intPrintAreaWidth, marginLeft, marginTop As Int32

WITh pdoc.DefaultPageSettings

InITialize local variables that contain the bounds of the printing

area rectangle.

intPrintAreaHeight = .PaperSize.Height - .Margins.Top - .Margins.Bottom

intPrintAreaWidth = .PaperSize.Width - .Margins.Left - .Margins.Right 

InITialize local variables to hold margin values that will serve

as the X and Y coordinates for the upper left corner of the printing

area rectangle.

marginLeft = .Margins.Left ' X coordinate

marginTop = .Margins.Top ' Y coordinate

End WITh

If the user selected Landscape mode, swap the printing area height

and width.

If pdoc.DefaultPageSettings.Landscape Then

Dim intTemp As Int32

intTemp = intPrintAreaHeight

intPrintAreaHeight = intPrintAreaWidth

intPrintAreaWidth = intTemp

End If

Calculate the total number of lines in the document based on the height of

the printing area and the height of the font.

Dim intLineCount As Int32 = CInt(intPrintAreaHeight / font.Height) 

InITialize the rectangle structure that defines the printing area.

Dim rectPrintingArea As New RectangleF(marginLeft, marginTop, intPrintAreaWidth,

intPrintAreaHeight)

Instantiate the StringFormat class, which encapsulates text layout

information (such as alignment and line spacing), display manipulations

(such as ellipsis insertion and national digit substITution) and OpenType

features. Use of StringFormat causes MeasureString and DrawString to use 

only an integer number of lines when printing each page, ignoring partial

lines that would otherwise likely be printed if the number of lines per

page do not divide up cleanly for each page (which is usually the case).

See further discussion in the SDK documentation about StringFormatFlags. 

Dim fmt As New StringFormat(StringFormatFlags.LineLimIT)

Call MeasureString to determine the number of characters that will fIT in 

the printing area rectangle. The CharFITted Int32 is passed ByRef and used

later when calculating intCurrentChar and thus HasMorePages. LinesFilled  

is not needed for this sample but must be passed when passing CharsFITted. 

Mid is used to pass the segment of remaining text left off from the

previous page of printing (recall that intCurrentChar was declared as

static.

Dim intLinesFilled, intCharsFITted As Int32 

e.Graphics.MeasureString(Mid(rtbox.Text, intCurrentChar + 1), font, _ 

New SizeF(intPrintAreaWidth, intPrintAreaHeight), fmt, _

intCharsFITted, intLinesFilled)

Print the text to the page.

e.Graphics.DrawString(Mid(rtbox.Text, intCurrentChar + 1), font, _

Brushes.Black, rectPrintingArea, fmt)

Advance the current char to the last char printed on this page. As  

intCurrentChar is a static variable, ITs value can be used for the next 

page to be printed. IT is advanced by 1 and passed to Mid() to print the

next page (see above in MeasureString()).

intCurrentChar += intCharsFITted

HasMorePages tells the printing module whether another PrintPage event

should be fired.

If intCurrentChar < rtbox.Text.Length Then 

e.HasMorePages = True

Else

e.HasMorePages = False 

You must explicitly reset intCurrentChar as IT is static.

intCurrentChar = 0

  End If

End Sub 

Private Sub printpreview()

Dim ppd As New PrintPreviewDialog()

Try

ppd.Document = pdoc

ppd.ShowDialog()

Catch exp As Exception 

MessageBox.Show("有错误发生!!不能预览 !" & _ 

"确信现在你是否能够 " & _

"连接到一个打印机?" & _

"然后预览才可以.", Me.Text, _

MessageBoxButtons.OK, MessageBoxIcon.Error) 

End Try

End Sub

Private Sub mPrintpreview_Click(ByVal sender As System.Object, ByVal e As

System.EventArgs) Handles mPrintpreview.Click 

printpreview()

End Sub

7、总结

总体来说,本程序达到了windows写字板85%的功能,很可惜就是没有做标尺的效果,也有些思路,就是利用拖动控件代码,设置两个控件,左右对称。 规定这两个控件只能在一条水平线上拖动,根据两个控件的移动来确定Richtextbox中文本前后间距的空间大小,大致思路就是这样。

所有源代码均在这里下载:http://www.up2e.com/resource.php

上一页  [1] [2] [3] 

  • 上一篇文章:

  • 下一篇文章:
  •  
    最进更新
    普通文章VC++设计超强仿QQ自动伸缩窗04-17
    推荐文章基于HOOK和MMF的Win密码渗透04-17
    推荐文章几种VC++数据库开发技术的相04-17
    普通文章多线程、Socket技术及委托技04-11
    推荐文章VB.Net连接各种数据库的几种04-11
    普通文章VB.NET中的多窗体编程:升级04-11
    普通文章用VB.NET定制Windows控件04-11
    普通文章VB.NET中监视文件夹的变化04-11
    普通文章VB.NET中对象的克隆04-11
    推荐文章VB.NET中的TextBox控件详解04-11
     
    推荐文章
    推荐文章基于HOOK和MMF的Win密码渗透04-17
    推荐文章几种VC++数据库开发技术的相04-17
    推荐文章VB.Net连接各种数据库的几种04-11
    推荐文章VB.NET中的TextBox控件详解04-11
    推荐文章在VB.NET中进行抓屏04-11
    推荐文章VB.Net开发的长内容自动分页04-11
    推荐文章VB.NET中快速访问注册表技巧04-11
    推荐文章PHP5手动最简安装方法03-07
    推荐文章完全讲解PHP+MySQL的分页显示03-07
    推荐文章Linux Shell元字符知识笔记02-21
     
    热点文章 
    普通文章VC++设计超强仿QQ自动伸缩窗04-17
    推荐文章基于HOOK和MMF的Win密码渗透04-17
    推荐文章几种VC++数据库开发技术的相04-17
    普通文章VB.NET中的多窗体编程:升级04-11
    普通文章用VB.NET定制Windows控件04-11
    普通文章VB.NET中对象的克隆04-11
    推荐文章VB.NET中的TextBox控件详解04-11
    普通文章VB/VB.NET/C#导出到Excel的方04-11
    普通文章如何通过VB.NET获取网卡地址04-11
    普通文章VB.NET中使用ListView控件的04-11

    | 设为首页 | 加入收藏 | 联系站长 | 广告服务 | 友情链接 | 版权申明 | 网站地图 |

    在线交流 捷凌网安主群:51649627
    Copyright 2007-2008 © 捷凌网安. All rights reserved.
    备案序号:蜀ICP备08001812号