摘要:
我正在学jscript,现在index页中有个“查询按钮”,想点击该按钮后打开到czm.aspx中, 在<input type=button value="查询" onclick="cxmx()"> 其中: function cxmx() {response.redirect("cxmx.aspx"); } 但点击后没......
摘要:
程序如下: unit unit1; interface uses windows, messages, sysutils, variants, classes, graphics, controls, forms, dialogs, stdctrls, extctrls; type tform1 = class(tform) button1: tbutton; panel1: tpanel......
用PB如何将EXCEL表里的内容导入到数据库里去
用PB如何将EXCEL表里的内容导入到数据库里去
NO.1 作者: twb88
你是想用程序倒还是用数据库倒
用程序的话用ImportFile
数据库倒的话就用企业管理器中的向导倒入导出
NO.2 作者: madking
importfile
NO.3 作者: sdav
importfile的数据导入功能十分强大,也可以用OLE嘛!
摘要:
先定义一个数据结构type pmydata=^tmydata; tmydata=record sfname:string; nindex:integer; end; 数据库中 id:int;name char(20} 在加载树的时候根据数据库中的id加树,想把id给每个结点赋值,记录下来你后要用到怎么做(树中的结点个数不知道用数组不能确定,)以后每点击一个结点都得到个唯一的值 既上面的id......