- + P A

- AutoCAD

      其他相关笔记 2007-4-30 11:54

1

AutoCAD2006序列号:191-75444444

AutoCAD2006 申请号:X6C2 5WRR 3C3K 9H0T 31TU 3XVQ 76DY

AutoCAD2006激活码:GU7Y PXHP T9C5 3Y39

标签集:TAGS:
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- Excel

      数据库学习笔记 2007-4-19 9:35

Excel TypeLib(Excel9.olb)
/// 全部的请参看 Excel9.OLB 文件 ,下面只是一些常量定义!

Excel; // Microsoft Excel 9.0 Object Library

Enum Constants;

  xlAll = $ FFFFEFF8;

  xlAutomatic = $ FFFFEFF7;

  xlBoth = 1;

标签集:TAGS:
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- 关于vfp控制excel、word的常用东东

      数据库学习笔记 2007-4-15 17:56
关于vfp控制excel、word的常用东东
头大 mailto:ppp1117@163.com
大家对vfp中通过OLE调用excel、word完成报表、数据转换等功能还感兴趣,请按以下步骤得到完整的VBA帮
助:
1、安装ms office 97/2000;
2、启动excel、word,单击“工具”-“宏”-“Visual Basic编辑器”进入,再选“帮助”菜单即可(注
意:第一次使用VBA帮助会提示插入光盘安装VBA帮助的)。
现将excel下常见的东东搜集整理如下:
    1.创建Excel对象
    _ole_
标签集:TAGS:
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- vfp Excel

      数据库学习笔记 2007-4-11 15:6

aa=createobject('Excel.application')
aa.visible=.t.
aa.workbooks(1).addnew()
aa.workbooks.addnew()
aa.worksbooks.addnew()
aa.worksbook.addnew()
aa.workbooks.addnew()
aa.workbooks.addnew
aa.workbooks(1).sheets(1).addnew
aa.workbooks(1).sheets(1).addnew()
aa.workbooks.addnew
aa.workbooks.addnew()
aa.visible=.f.
aa

标签集:TAGS:
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- 为表单创建数据环境

      数据库学习笔记 2007-4-1 15:16
**这里路径有问题
LOCAl sf
sf='alink1'
SELECT * FROM ( ;
SELECT '各服务部'as 部门类型, L101 as 代码,L102 as 部门名称 FROM &sf WHERE L101=132 UNION ;
SELECT '下属'as 部门类型, L101 as 代码,L102 as 部门名称 FROM &sf WHERE L101=112 UNION ;
SELECT '销售门市部'as 部门类型, L101 as 代码,L102 as 部门名称 FROM &sf WHERE (L101=132 OR L101=133) OR l101<>13206 UNION ;
SELECT '其他有关部门'as 部门类型, L101 as 代码,L102 as 部门名称 FROM &sf WHERE (L101=132 OR L101=113)) aa  INTO CURSOR Aa
USE IN &sf
WITH this
    .AddObject('dd','dataenvironment')
    .dd.addobject('cursor1','cursor')
    .dd.cursor1.alias='aa'
    .dd.cursor1.buffermodeoverride=2
   .cbgrid1.RecordSourceType=
标签集:TAGS:
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- 动态创建combox

      数据库学习笔记 2007-4-1 12:37
thisform.grid1.addcolumn
thisform.grid1.column2.controlsource="aa.a"
thisform.grid1.column2.addobject('sb','combobox')
thisform.grid1.column2.currentcontrol='sb'
thisform.grid1.column2.sparse=.F.
thisform.grid1.column2.sb.visible=.t.
thisform.grid1.column2.sb.rowsourcetype=2
thisform.grid1.column2.sb.rowsource='bb'
thisform.grid1.column2.sb.boundcolumn=1
标签集:TAGS:
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- Vfp 调用Dll

      数据库学习笔记 2007-1-9 10:13
注册外部 Windows 32 位动态链接库 ( .DLL ) 中的一个函数。

DECLARE [cFunctionType] FunctionName IN LibraryName [AS AliasName]
   [cParamType1 [@] ParamName1, cParamType2 [@] ParamName2, ...]
参数
cFunctionType 
表明 32 位 Windows .DLL 函数是否有返回值。如果函数有返回值, ...
标签集:TAGS:
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- 数据库间记录更新

      数据库学习笔记 2007-1-5 9:17
数据库间记录更新
    FoxBASE提供根据一个数据库的数据更新另一个数据库的命令,被更新的数据库在当前工作区,称为目标数据库;数据来源数据库称为源数据库,需要用别名指定。

    一、更新命令

     用别名数据库的数据,按照表达式来更新当前数据库的指定字段值。

     命令格式:

     UPDATE ON<关键字>FROM<别名>
...
标签集:TAGS:
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- 暂时转过来研究一下

      数据库学习笔记 2006-10-31 8:54
以下是把打印机纸张代码转换为尺寸信息,运行时出错了,我离“实现win2000自定义报表在其它机器不用做任何设置”的程序就差这一步了,请各位帮帮我吧!我成功后,一定会把代码奉献给大家的。

*----------------------------------------------------------
#DEFINE DC_MAXEXTENT 5
#DEFINE DC_MINEXTENT 4
#DEFINE DC_PAPERNAMES 16
#DEFINE DC_PAPERS 2
#DEFINE DC_PAPERSIZE 3
#DEFINE SIZE_LONG 4 ...
标签集:TAGS:
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- Vfp为我们提供了一个非常强大函数ADIR(),

      语言类学习笔记 2006-9-14 8:50
如何取得某个文件的大小、修改日期及属性2006年08月17日 星期四 上午 11:50如何取得某个文件的大小、修改日期及属性
Vfp为我们提供了一个非常强大函数ADIR(),
语法:
ADIR(ArrayName [, cFileSkeleton [, cAttribute [, cCreatorType]]])
使用:
...
标签集:TAGS:
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- ASP 连接字符串

      网页类学习笔记 2006-9-8 17:10


一、存取数据库的原理

在ASP中,用来存取数据库的对象统称ADO对象(Active Data Objects),主要含有三种对象:Connection、Recordset和Command,其中Connection负责打开或连接数据库,Recordset负责存取数据表,Command负责对数据库执行行动查询(Action Quer ...
标签集:TAGS:
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- 我现在又开始学习Vfp

      数据库学习笔记 2006-9-7 18:8
.创建Excel对象

eole=CREATEOBJECT(′Excel.application′)

2.添加新工作簿

eole.Workbooks.add

3.设置第3个工作表为激活工作表

eole.Worksheets(″she ...
标签集:TAGS:
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- Sql 资料

      数据库学习笔记 2006-9-6 11:49
http://kingreturn.blogchina.com/

CREATE DATABASE [IF NOT EXISTS] db_name
CREATE DATABASE 以给定名字创建一个数据库。允许的数据库名规则在章节 6.1.2 数据库、表、索引、列和别名 中被给出。 如果数据库已经存在,并且你没有指定 IF NOT EXISTS,这时会产生一个错误。 

在 MySQL  ...
标签集:TAGS:
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- SQL SERVER 与ACCESS、EXCEL的数据转换

      数据库学习笔记 2006-6-22 11:35
Datenimport/-export - Werkzeuge
Ad-hoc Abfragen mit OPENROWSET und OPENDATASOURCE
[Achtung. Diese Seite wird zur Zeit noch bearbeitet...]

Ad-hoc Abfragen sind ein flex ...
标签集:TAGS:
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()