全部博文(1293)
发布时间:2016-09-06 13:53:25
http://blog.csdn.net/lishehe/article/details/8257545......【阅读全文】
发布时间:2016-08-25 17:09:16
问题:如果在Access 中数据库操作时提示from子句语法错误原因:语句中某一单词为Access中的关键字。如:select * from user。其中user就是一关键字。解决:用中括号[]将其括起来。如:[user]即可。像Counter也是Access的关键字。所以给ACCESS命令表时要时刻注意不能与ACCESS的关键字重名。.........【阅读全文】
发布时间:2016-08-20 17:14:32
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Collections;namespace ConsoleApplication2{ class Program {.........【阅读全文】
发布时间:2016-08-11 10:28:31
//先拖一个label1到界面,然后在Paint事件里面复制代码 private void Form1_Paint(object sender, PaintEventArgs e) { &n.........【阅读全文】
发布时间:2016-07-04 11:08:36
private void SaveFileDialog(){ //string localFilePath, fileNameExt, newFileName, FilePath; SaveFileDialog saveFileDialog1 = new SaveFileDialog(); //设置文件类型 saveFileDialog1.Filter = " txt files(*.txt)|*.txt|All files(*.*)|*.*"; //设置默认文件类型显示顺序 .........【阅读全文】