摘要:
SQl查询数据库表名、表的列名--读取库中的所有表名select name from sysobjects where xtype='u'--读取指定表的所有列名select name from syscolumns where id=(select max(id) from sysobjects where xtype='u' and name='表名')获取数据库表名和字段sqlserver中各个系统表的作用 sysaltfiles 主数据库 保存数据库的文件syscharsets 主数据库 字符集与排序顺序sysconfigures 主数据库 配置选项syscurconfigs 主 阅读全文
摘要:
//调用API函数using System.Runtime.InteropServices; //窗体层的初始位置 public const int HWND_TOPMOST = -1;程序窗体中声明方法 //API函数 [DllImport("user32", EntryPoint = "SetWindowPos")] //静态窗口保持的位置 public static extern bool SetWindowPos(int hwnd, int hWndInsertAfter, int x, int y, int cx, int cy, uint wFlags);添加timer控件,在ti 阅读全文