欢迎来到淘文阁 - 分享文档赚钱的网站! | 帮助中心 好文档才是您的得力助手!
淘文阁 - 分享文档赚钱的网站
全部分类
  • 研究报告>
  • 管理文献>
  • 标准材料>
  • 技术资料>
  • 教育专区>
  • 应用文书>
  • 生活休闲>
  • 考试试题>
  • pptx模板>
  • 工商注册>
  • 期刊短文>
  • 图片设计>
  • ImageVerifierCode 换一换

    2022年文件预览程序源代码 .pdf

    • 资源ID:33390404       资源大小:36.05KB        全文页数:5页
    • 资源格式: PDF        下载积分:4.3金币
    快捷下载 游客一键下载
    会员登录下载
    微信登录下载
    三方登录下载: 微信开放平台登录   QQ登录  
    二维码
    微信扫一扫登录
    下载资源需要4.3金币
    邮箱/手机:
    温馨提示:
    快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。
    如填写123,账号就是123,密码也是123。
    支付方式: 支付宝    微信支付   
    验证码:   换一换

     
    账号:
    密码:
    验证码:   换一换
      忘记密码?
        
    友情提示
    2、PDF文件下载后,可能会被浏览器默认打开,此种情况可以点击浏览器菜单,保存网页到桌面,就可以正常下载了。
    3、本站不支持迅雷下载,请使用电脑自带的IE浏览器,或者360浏览器、谷歌浏览器下载即可。
    4、本站资源下载后的文档和图纸-无水印,预览文档经过压缩,下载后原文更清晰。
    5、试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。

    2022年文件预览程序源代码 .pdf

    编程实现文件预览以下为程序代码TXTDLGTEMPLATE DIALOG 0, 0, 316, 76 STYLE 0 x404L | WS_CHILD | WS_VISIBLE | WS_CLIPSIBLINGS FONT 8, MS Sans Serif LTEXT , 1119, 0, 0, 204, 76, SS_LEFT | WS_CHILD | NOT WS_VISIBLE | WS_GROUP unit txtDialog; interface uses Windows, Messages, SysUtils, Classes, StdCtrls, ExtCtrls, Buttons, Dialogs, ShellAPI, Controls; type TtxtDialog = class(TOpenDialog) private Private declarations FtxtPanel: TPanel; FtxtLabel: TLabel; FPreviewButton: TSpeedButton; FtxtCtrl: TMemo; protected Protected declarations procedure PreviewClick(Sender: TObject); virtual; procedure DoSelectionChange; override; procedure DoShow; override; property txtCtrl: TMemo read FtxtCtrl; public Public declarations constructor Create(AOwner: TComponent); override; function Execute: Boolean; override; published Published declarations end; 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 1 页,共 5 页 - - - - - - - - - implementation $R txtDialog.res TtxtDialog constructor TtxtDialog.Create(AOwner: TComponent); begin inherited Create(AOwner); /文件扩展名过滤器 Filter := 文本文件 (*.txt)|*.txt; /定义一个主Panel-FtxtPanel,其他所有的构件都建立在这个Panel 上 FtxtPanel := TPanel.Create(Self); with FtxtPanel do begin Name := txtPanel; Caption := ; SetBounds(204, 5, 169, 200); BevelOuter := bvNone; BorderWidth := 2; TabOrder := 1; FtxtLabel := TLabel.Create(Self); with FtxtLabel do begin Name := txtLabel; Caption := 文本文件预览 ; Font.Charset := GB2312_CHARSET; Font.Name := 宋体 ; Font.Size := 9; SetBounds(6, 6, 157, 23); Align := alTop; AutoSize := False; Parent := FtxtPanel; end; /文件预览按钮 FPreviewButton := TSpeedButton.Create(Self); with FPreviewButton do begin Name := PreviewButton; SetBounds(77, 1, 23, 22); Enabled := False; /从资源文件中读出TXTGLYPH 图像,用于SpeedButton 的图像 Glyph.LoadFromResourceName(HInstance, TXTGLYPH); Hint := 查看该文件 ; ParentShowHint := False; ShowHint := True; 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 2 页,共 5 页 - - - - - - - - - /OnClick事件,调用记事本打开该文本文件 OnClick := PreviewClick; Parent := FtxtPanel; end; /添加一个Memo元件,用于显示文件内容 FtxtCtrl := TMemo.Create(Self); with FtxtCtrl do begin Name := Memo; SetBounds(6, 29, 157, 145); Align:=alClient; /OnDblClick事件 OnDblClick := PreviewClick; TabOrder := 2; ReadOnly:=True; Text:=; ScrollBars:=ssBoth; Parent := FtxtPanel; end; end; end; procedure TtxtDialog.DoSelectionChange; var Valided: Boolean; f : TextFile; s : string; function ValidFile(const FileName: string): Boolean; begin Result := GetFileAttributes(PChar(FileName) $FFFFFFFF; end; begin FtxtCtrl.Lines.Clear; Valided := FileExists(FileName) and ValidFile(FileName) and (UpperCase(ExtractFileExt(Filename)=.TXT); if Valided then try /打开文件,逐行读入Memo的 Lines ,完成预览 AssignFile(f,Filename); FileMode:=fmOpenRead; Reset(f); while not EOF(f) do begin Readln(f,s); 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 3 页,共 5 页 - - - - - - - - - FtxtCtrl.Lines.Add(s); end; CloseFile(f); FPreviewButton.Enabled := True; except Valided := False; end; if not Valided then FPreviewButton.Enabled := False; inherited DoSelectionChange; end; procedure TtxtDialog.DoShow; var PreviewRect, StaticRect: TRect; begin /GetClientRect是 Windows API,求出了整个Client区的大小 GetClientRect(Handle, PreviewRect); /GetStaticRect是 TOpenDialog 提供的方法,求出了标准区的大小 StaticRect := GetStaticRect; /将 PreviewRect缩小在 StaticRect的右边 /应该使用PreviewRect.Left := StaticRect.Right,此处保留了ExtDlgs.pas中语句 PreviewRect.Left := StaticRect.Left + (StaticRect.Right - StaticRect.Left); Inc(PreviewRect.Top, 4); /添加预览内容 FtxtPanel.BoundsRect := PreviewRect; FPreviewButton.Left := FtxtCtrl.BoundsRect.Right - FPreviewButton.Width - 2; FtxtPanel.ParentWindow := Handle; inherited DoShow; end; function TtxtDialog.Execute: Boolean; begin /传递自定义对话框TXTDLGTEMPLATE if NewStyleControls and not (ofOldStyleDialog in Options) then Template := TXTDLGTEMPLATE else Template := nil; Result := inherited Execute; end; procedure TtxtDialog.PreviewClick(Sender: TObject); begin /使用记事本打开该文本文件名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 4 页,共 5 页 - - - - - - - - - if UpperCase(ExtractFileExt(Filename)=.TXT then ShellExecute(Application.Handle,open,PChar(Filename),SW_SHOW); end; end. var Demo : TtxtDialog; begin Demo:=TtxtDialog.Create(Form1); Demo.Execute; Demo.Free; end; 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 5 页,共 5 页 - - - - - - - - -

    注意事项

    本文(2022年文件预览程序源代码 .pdf)为本站会员(H****o)主动上传,淘文阁 - 分享文档赚钱的网站仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知淘文阁 - 分享文档赚钱的网站(点击联系客服),我们立即给予删除!

    温馨提示:如果因为网速或其他原因下载失败请重新下载,重复下载不扣分。




    关于淘文阁 - 版权申诉 - 用户使用规则 - 积分规则 - 联系我们

    本站为文档C TO C交易模式,本站只提供存储空间、用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。本站仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知淘文阁网,我们立即给予删除!客服QQ:136780468 微信:18945177775 电话:18904686070

    工信部备案号:黑ICP备15003705号 © 2020-2023 www.taowenge.com 淘文阁 

    收起
    展开