按类别查询搜索结果
关于关键词 的检测结果,共 560
dyli2000 | 2015-03-10 15:04:40 | 阅读(0) | 评论(0)
  涉及操作DataSet及其表,除法的误差处理,颜色的处理,以及.NET2.0 跨线程调用等。【阅读全文】
ahao214 | 2015-03-06 22:55:32 | 阅读(540) | 评论(0)
1、使用某种.NET兼容语言(如C#)编写应用程序。2、把代码编译为(CIL),存储在程序集中。3、在执行代码时(如果这是一个可执行文件,就自动运行,或者在其他代码使用它时运行),首先必须使用JIT(Just-In-Time)编译器将代码编译为本机代码。4、在托管的CLR环境下运行本机代码,以及其他应用程序或进程。...【阅读全文】
赵东来 | 2015-03-04 14:37:52 | 阅读(440) | 评论(0)
 甘肃2月25日电 据甘肃日报报道:我省近日下发通知,要求办理住房公积金个人贷款业务时,不得收取贷款保险、公证、新房评估和强制性机构担保等费用,切实减轻贷款职工负担。  住房公积金个人住房贷款是提高缴存职工住房消费能力的重要途径,也是缴存职工的基本权益。我省个贷发放率长期偏低,资金使用水平不高,住房公...【阅读全文】
icepole | 2015-03-03 13:57:41 | 阅读(1440) | 评论(0)
dyli2000 | 2015-03-02 10:02:48 | 阅读(1320) | 评论(0)
VS解决方案属性中的六大金刚: 一、属性 二、显示所有文件 显示所有文件/隐藏某些文件。 三、刷新 四、查看代码 五、视图设计器 六、查看类图 【阅读全文】
dyli2000 | 2015-02-26 10:36:23 | 阅读(2360) | 评论(0)
.net自带的有播放.wav格式音频文件的类:System.Media.SoundPlayer,只要调用这个类就可以了。 代码如下:     string path = “....../sound.wav”;//.wav音频文件路径     System.Media.SoundPlayer player = new System.Media.SoundPlayer(path);     player....【阅读全文】
dyli2000 | 2015-02-09 14:51:35 | 阅读(1910) | 评论(0)
主要实现代码如下:using System; using System.Collections.Generic;using System.Linq;using System.Text;using System.Collections;namespace AlignForHashtable{    class Program&nb...【阅读全文】
dyli2000 | 2015-02-03 14:51:22 | 阅读(0) | 评论(0)
using System; using System.Collections.Generic;//using System.Linq;using System.Text;using System.Diagnostics;using System.Runtime.InteropServices;using System.Threading;namespace testCrystalReports...【阅读全文】
dyli2000 | 2015-02-03 14:45:54 | 阅读(2140) | 评论(0)
将多个EXE打成一个安装包,再依次逐个启动,该如何处理? WinRAR提供了一个解决方案。操作步骤如下:   需要在当前目录下选择文件进行添加到压缩文件。   修改压缩包名字为xxx.exe,进入高级设置。         最后直接在压缩包的注释中写入上面脚本。  ...【阅读全文】
dyli2000 | 2015-01-28 11:49:18 | 阅读(1920) | 评论(0)
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Collections; namespace TestArrayList {     class Program     {         public struct SData    ...【阅读全文】
【C#/.net】 VB DoEvents
dreamjdn | 2015-01-26 22:36:10 | 阅读(990) | 评论(0)
我要实现一个类似Windows复制(移动)文件时的提示窗体,耗时很长,且要求中断后能继续未完成的操作,不知使用DoEvents从长循环中跳出后,程序将从何处开始继续执行,是否是从DoEvents所在的Sub开始?(倔小孩)事实上仅使用DoEvents,并不意味着从长循环中跳出。DoEvents只是允许用户选择其他按钮而已,不中断循环,不管用户如何...【阅读全文】
xuqp001 | 2015-01-19 14:43:12 | 阅读(910) | 评论(0)
CS软件的C是Client的简写,客户端的意思,S是Server的简写,服务端的意思,这类型的软件在我们的日常生活中非常普遍,尤其是在电脑管家、杀软、财务、银行、超市、票务、物流、医疗和工厂等领域用途非常广泛,因为这些领域对操作速度和对接各种硬件、卡片等有特殊要求,CS软件也就成了首选。讲师本人之前在做医疗、保险方...【阅读全文】
dyli2000 | 2015-01-08 14:24:35 | 阅读(1830) | 评论(0)
用FolderBrowserDialog选择一个文件路径 ,方法如下:private void button3_Click(object sender, EventArgs e)        {            System.Windows.Forms.FolderBrowserDial...【阅读全文】
cokeboL | 2015-01-08 12:00:08 | 阅读(0) | 评论(0)
from:http://blog.sina.com.cn/s/blog_82b6aa3d0100x204.html01、基本碰撞检测代码function OnCollisionEnter(theCollision : Collision){if(theCollision.gameObject.name == "Floor"){Debug.Log("Hit the floor");}else if(theCollision.gameObject.name == "Wall"){Debug.Log("Hit the wall");...【阅读全文】
【C#/.net】 C#操数据库
广利颖 | 2014-12-29 11:21:04 | 阅读(1920) | 评论(0)
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Data.SqlClient;namespace wlw_database{    public partial class Form1 : Form   ...【阅读全文】
杨艳杰 | 2014-12-17 19:28:03 | 阅读(2350) | 评论(0)
点击(此处)折叠或打开using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using Syst...【阅读全文】
Larpenteur | 2014-12-15 09:09:13 | 阅读(1470) | 评论(0)
Java源码转C#源码的五款最佳工具出于某些需要,你可能会遇到把Java源码转换成C#源码的任务。如果是自己一边理解源码,再一边手工翻译,那效率肯定是很低的。有鉴于此,本文推荐了五款最佳的源码转换工具,以解决你的烦恼。工具1#:Java语言转换器助手地址:http://www.microsoft.com/en-us/download/details.as...【阅读全文】
dyli2000 | 2014-12-15 08:58:38 | 阅读(2060) | 评论(0)
Java源码转C#源码的五款最佳工具出于某些需要,你可能会遇到把Java源码转换成C#源码的任务。如果是自己一边理解源码,再一边手工翻译,那效率肯定是很低的。有鉴于此,本文推荐了五款最佳的源码转换工具,以解决你的烦恼。工具1#:Java语言转换器助手地址:http://www.microsoft.com/en-us/download/details.as...【阅读全文】
杨艳杰 | 2014-12-10 08:03:14 | 阅读(1910) | 评论(0)
点击(此处)折叠或打开using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace @class{    class Program &nbs...【阅读全文】
杨艳杰 | 2014-12-09 21:49:34 | 阅读(2050) | 评论(0)
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;...【阅读全文】