实例介绍
c#调用通用热敏打印机POSDLL.dll的后台打印服务。 主要是省些去重写C#调用POSDLL.dll的方法。 还有就是了解后台打印的业务流程,对初学者,有很大的帮助吧
【实例截图】
【核心代码】
1292002PosPrintService
└── PosPrintService
├── MenuPrintDB.bak
└── PosPrintService
├── BinFiles
│ ├── BYNetPortAPI.dll
│ ├── ClearTempfile.bat
│ ├── Database
│ │ └── MenuPrintSvrDB.bak
│ ├── Install.bat
│ ├── Log
│ │ ├── Error_20100913.txt
│ │ ├── Error_20100914.txt
│ │ ├── PrintLog_20100913.txt
│ │ ├── PrintLog_20100914.txt
│ │ ├── 服务日志_20100912.txt
│ │ ├── 服务日志_20100913.txt
│ │ ├── 服务日志_20100914.txt
│ │ ├── 服务日志_20100915.txt
│ │ ├── 服务日志_20100916.txt
│ │ ├── 服务日志_20100917.txt
│ │ ├── 服务日志_20100918.txt
│ │ └── 服务日志_20100919.txt
│ ├── POSDLL.dll
│ ├── PosPrintService.exe
│ ├── PosPrintService.InstallLog
│ ├── PosPrintService.vshost.exe
│ ├── POSPrintSvr.BLL.dll
│ ├── POSPrintSvr.BLL.pdb
│ ├── POSPrintSvr.DAL.dll
│ ├── POSPrintSvr.DAL.pdb
│ ├── POSPrintSvr.Model.dll
│ ├── POSPrintSvr.Model.pdb
│ ├── PosPrintSvrSet.xml
│ ├── PrintServiceMgr.exe
│ ├── PrintServiceMgr.pdb
│ ├── Readme.txt
│ ├── restart.bat
│ ├── start.bat
│ ├── stop.bat
│ ├── UnInstall.bat
│ ├── 分单打印数据库说明2003.doc
│ ├── 分单打印数据库说明.docx
│ ├── 后厨分单服务业务流程图2003.doc
│ ├── 后厨分单服务业务流程图.docx
│ └── 数据库连接设置.exe
├── BLL
│ ├── AssemblyInfo.cs
│ ├── bin
│ │ └── Debug
│ │ ├── POSPrintSvr.BLL.dll
│ │ ├── POSPrintSvr.BLL.pdb
│ │ ├── POSPrintSvr.DAL.dll
│ │ ├── POSPrintSvr.DAL.pdb
│ │ ├── POSPrintSvr.Model.dll
│ │ └── POSPrintSvr.Model.pdb
│ ├── BLL.csproj
│ ├── BLL.csproj.user
│ ├── CookRooms.cs
│ ├── MenuPrintRequest.cs
│ └── obj
│ ├── BLL.csproj.FileListAbsolute.txt
│ └── Debug
│ ├── POSPrintSvr.BLL.dll
│ ├── POSPrintSvr.BLL.pdb
│ ├── Refactor
│ │ └── POSPrintSvr.BLL.dll
│ └── ResolveAssemblyReference.cache
├── DAL
│ ├── AssemblyInfo.cs
│ ├── bin
│ │ └── Debug
│ │ ├── POSPrintSvr.DAL.dll
│ │ ├── POSPrintSvr.DAL.pdb
│ │ ├── POSPrintSvr.Model.dll
│ │ └── POSPrintSvr.Model.pdb
│ ├── CookRooms.cs
│ ├── DAL.csproj
│ ├── DAL.csproj.user
│ ├── DbOperate.cs
│ ├── MenuPrintRequest.cs
│ ├── obj
│ │ ├── DAL.csproj.FileListAbsolute.txt
│ │ └── Debug
│ │ ├── POSPrintSvr.DAL.dll
│ │ ├── POSPrintSvr.DAL.pdb
│ │ ├── Refactor
│ │ │ └── POSPrintSvr.DAL.dll
│ │ ├── ResolveAssemblyReference.cache
│ │ └── TempPE
│ │ └── PosPrintSvrSet.Designer.cs.dll
│ ├── PosPrintSvrSet.cs
│ ├── PosPrintSvrSet.Designer.cs
│ ├── PosPrintSvrSet.xsc
│ ├── PosPrintSvrSet.xsd
│ ├── PosPrintSvrSet.xss
│ └── SqlTools.cs
├── Model
│ ├── AssemblyInfo.cs
│ ├── bin
│ │ └── Debug
│ │ ├── POSPrintSvr.Model.dll
│ │ └── POSPrintSvr.Model.pdb
│ ├── CookRooms.cs
│ ├── MenuPrintRequest.cs
│ ├── Model.csproj
│ ├── Model.csproj.user
│ └── obj
│ ├── Debug
│ │ ├── POSPrintSvr.Model.dll
│ │ ├── POSPrintSvr.Model.pdb
│ │ └── Refactor
│ │ └── POSPrintSvr.Model.dll
│ └── Model.csproj.FileListAbsolute.txt
├── PosPrintService
│ ├── BeiYangOPOS.cs
│ ├── ClearTempfile.bat
│ ├── LogManager.cs
│ ├── obj
│ │ ├── Debug
│ │ │ ├── PosPrintService.csproj.GenerateResource.Cache
│ │ │ ├── PosPrintService.exe
│ │ │ ├── PosPrintService.pdb
│ │ │ ├── PosPrintService.PosPrintService.resources
│ │ │ ├── PosPrintService.ProjectInstaller.resources
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ └── TempPE
│ │ │ └── PosPrintSvrSet.Designer.cs.dll
│ │ └── PosPrintService.csproj.FileListAbsolute.txt
│ ├── POSDLL.dll
│ ├── PosPrintService.cs
│ ├── PosPrintService.csproj
│ ├── PosPrintService.Designer.cs
│ ├── PosPrintService.resx
│ ├── PrintSvr.ico
│ ├── Program.cs
│ ├── ProjectInstaller.cs
│ ├── ProjectInstaller.Designer.cs
│ ├── ProjectInstaller.resx
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── 分单打印数据库说明.docx
│ └── 后厨分单服务业务流程图.docx
├── PosPrintService.sln
├── PosPrintService.suo
├── PrintServiceMgr
│ ├── appIcon.Icon.ico
│ ├── bin
│ │ └── Debug
│ │ ├── PrintServiceMgr.exe
│ │ ├── PrintServiceMgr.pdb
│ │ └── PrintServiceMgr.vshost.exe
│ ├── BYNetPortAPI.dll
│ ├── ConnectStringConfigFrm.cs
│ ├── ConnectStringConfigFrm.designer.cs
│ ├── ConnectStringConfigFrm.resx
│ ├── CookRoomSetForm.cs
│ ├── CookRoomSetForm.Designer.cs
│ ├── CookRoomSetForm.resx
│ ├── DownloadingTask.ico
│ ├── LocalComputerInfo.cs
│ ├── obj
│ │ ├── Debug
│ │ │ ├── PrintServiceMgr.ConnectStringConfigFrm.resources
│ │ │ ├── PrintServiceMgr.CookRoomSetForm.resources
│ │ │ ├── PrintServiceMgr.csproj.GenerateResource.Cache
│ │ │ ├── PrintServiceMgr.exe
│ │ │ ├── PrintServiceMgr.pdb
│ │ │ ├── PrintServiceMgr.PrintSvrMgrFrm.resources
│ │ │ ├── PrintServiceMgr.Properties.Resources.resources
│ │ │ ├── PrintServiceMgr.SystemLogViewForm.resources
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ └── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ └── PrintServiceMgr.csproj.FileListAbsolute.txt
│ ├── PrintServiceMgr.csproj
│ ├── PrintSvrMgrFrm.cs
│ ├── PrintSvrMgrFrm.Designer.cs
│ ├── PrintSvrMgrFrm.resx
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Resources
│ │ ├── Info.png
│ │ └── pictureBox1.Image.jpg
│ ├── SystemLogViewForm.cs
│ ├── SystemLogViewForm.Designer.cs
│ └── SystemLogViewForm.resx
├── 分单打印数据库说明.docx
└── 后厨分单服务业务流程图.docx
37 directories, 156 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论