登录
首页 » c,c# » visionpro vs 代码

visionpro vs 代码

于 2023-06-09 发布 文件大小:7.35 MB
0 160
下载积分: 2 下载次数: 1

代码说明:

窗体设计,通讯等,在visionpro的基础上开发vb,请安装vs2008或vs2012

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • C语言编写,图书查询系统,VC编议运行。多文件格式。初学C语言资料...
    C语言编写,图书查询系统,VC编议运行。多文件格式。初学C语言资料-C language, library query system, VC Yee prepared to run. Multi-file format. Beginners C language data
    2022-06-01 10:21:25下载
    积分:1
  • Microsoft tables coloring problem
    微软桌着色问题a【问题】 组合问题 【问题】 填字游戏 【问题】 n皇后问题 -Microsoft tables coloring problem-- a problem [[composition problems-- crossword puzzles [n Queen"s problem-- the problem
    2022-05-09 02:19:24下载
    积分:1
  • 计算机网络实验代码
    上学期间,计算机网络自顶向下方法 课本要求的实验源代码, 在此奉上
    2022-02-15 05:06:52下载
    积分:1
  • C#实现多人视频聊天
       在 《C#实现多人语音聊天》一文发布后,很多朋友建议我也实现一个视频聊天室给他们参考一下,其实,视频聊天室与语音聊天室的原理是差不多的,由于加入了摄像头、视频的处理,逻辑会繁杂一些,本文就实现一个简单的多人视频聊天系统,让多个人可以进入同一个房间进行语音视频沟通。先看看3个人进行视频聊天的运行效果截图:        
    2022-08-18 15:54:45下载
    积分:1
  • 分治算法解决循环赛问题
    【问题描述】设有n=2k个运动员要进行网球循环赛。现要设计一个满足以下要求的比赛日程表: (1)每个选手必须与其他n-1个选手各赛一次; (2)每个选手一天只能参赛一次; (3)循环赛在n-1天内结束。 请按此要求将比赛日程表设计成有n行和n-1列的一个表。在表中的第i行,第j列处填入第i个选手在第j天所遇到的选手。其中1≤i≤n,1≤j≤n-1。  [实验提示] 我们可以按分治策略将所有的选手分为两半,则n
    2022-09-09 18:20:03下载
    积分:1
  • 这是一个智能电梯仿真程序。
    电梯:
    2022-03-21 01:57:12下载
    积分:1
  • 遍历二叉树算法
    代码实现了二叉树的生成和搜索。希望对正在学习算法的同学们提供便利。
    2022-03-23 21:59:18下载
    积分:1
  • remote
    说明:  c# 实现连接远程桌面的程序,可以连接xp/windows2003/windows7(c# program to achieve the Remote Desktop connection, you can connect xp/windows2003/windows7)
    2011-02-21 13:28:39下载
    积分:1
  • Sipek.SoftPhone
    Sipek.SoftPhone源码Sipek.SoftPhone源码Sipek.SoftPhone源码Sipek.SoftPhone源码Sipek.SoftPhone源码Sipek.SoftPhone源码Sipek.SoftPhone源码Sipek.SoftPhone源码Sipek.SoftPhone源码Sipek.SoftPhone源码Sipek.SoftPhone源码Sipek.SoftPhone源码Sipek.SoftPhone源码Sipek.SoftPhone源码
    2023-08-19 14:10:04下载
    积分:1
  • C# 套打Demo
    套打Demo 【核心代码】using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;using System.Drawing.Printing;namespace Print_Demo{ public partial class Form1 : Form { public PrintDocument printDt = new PrintDocument(); //打印文档对象 Font printFont; //打印使用的字体 public Form1() { InitializeComponent(); } void printDt_PrintPage(object sender, PrintPageEventArgs e) { float pointX = 10; float pointY = 10; e.Graphics.DrawString("打印内容", new Font("宋体", 16F), Brushes.Black, pointX 60, pointY); e.Graphics.DrawLine(new Pen(Color.Black), pointX, pointY 26,pointX 300,pointY 26); e.Graphics.DrawString("打印内容", printFont, Brushes.Black, pointX, pointY 35); e.Graphics.DrawLine(new Pen(Color.Black), pointX, pointY 56, pointX 300, pointY 56); e.Graphics.DrawString("打印内容", printFont, Brushes.Black, pointX, pointY 65); e.Graphics.DrawLine(new Pen(Color.Black), pointX, pointY 86, pointX 300, pointY 86); e.Graphics.DrawString("打印内容", printFont, Brushes.Black, pointX, pointY 95); e.Graphics.DrawLine(new Pen(Color.Black), pointX, pointY 116, pointX 300, pointY 116); e.Graphics.DrawString("打印内容", printFont, Brushes.Black, pointX, pointY 125); e.Graphics.DrawLine(new Pen(Color.Black), pointX, pointY 146, pointX 300, pointY 146); e.Graphics.DrawString("打印内容", printFont, Brushes.Black, pointX, pointY 155); e.Graphics.DrawLine(new Pen(Color.Black), pointX, pointY 176, pointX 300, pointY 176); e.Graphics.DrawString("打印内容", printFont, Brushes.Black, pointX, pointY 185); e.Graphics.DrawLine(new Pen(Color.Black), pointX, pointY 206, pointX 300, pointY 206); e.Graphics.DrawString("检测结果", printFont, Brushes.Black, pointX, pointY 233); e.Graphics.DrawString("通过", new Font("宋体",22F,FontStyle.Bold), Brushes.Black, pointX 90, pointY 225); e.Graphics.DrawLine(new Pen(Color.Black), pointX, pointY 265, pointX 300, pointY 265); e.Graphics.DrawString("单位名称", printFont, Brushes.Black, pointX, pointY 275); } private void Form1_Load(object sender, EventArgs e) { printDt.PrintPage = new PrintPageEventHandler(printDt_PrintPage); printFont = new Font("宋体", 12F); } private void btnPrint_Click(object sender, EventArgs e) { //PrintDialog printDlg = new PrintDialog(); //printDlg.Document = printDt; //printDlg.AllowPrintToFile = true; //printDlg.AllowCurrentPage = true; //printDlg.AllowSelection = true; //printDlg.ShowDialog(); //printDlg.ShowDialog(); printDt.Print(); } private void btnLook_Click(object sender, EventArgs e) { PrintPreviewDialog printPreview = new PrintPreviewDialog(); printPreview.PrintPreviewControl.Document = printDt; printPreview.ShowDialog(this); } }}
    2021-05-06下载
    积分:1
  • 696518资源总数
  • 105554会员总数
  • 2今日下载