| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 654 人关注过本帖
标题:请教工程代码为什么会出现异常!如何改正
取消只看楼主 加入收藏
zhengdliang
Rank: 1
等 级:新手上路
帖 子:14
专家分:0
注 册:2006-4-8
收藏
 问题点数:0 回复次数:0 
请教工程代码为什么会出现异常!如何改正

program StudentMIS;

uses
Forms,
SysUtiles,
FormMain in 'FormMain.pas' {frmMain},
FormDepartment in 'FormDepartment.pas' {frmDepartment},

{$R *.res}
function SQLConfigDataSource(hwndParent:Integer;
fRequest:LongInt;
lpszDriverString:string;
lpszAttributes:string
):LongBool;Stdcall;External 'ODBCCP32.DLL';
const
ODBC_ADD_DSN=1;
ODBC_CONFIG_DSN=2;
ODBC_REMOVE_DSN=3;
ODBC_ADD_SYS_DSN=4;
ODBC_CONFIG_SYS_DSN=5;
ODBC_REMOVE_SYS_DSN=6;

begin
Application.Initialize;
SQLConfigDataSource(0,ODBC_ADD_SYS_DSN,
'Microsoft Access Driver(*.mdb)',
'DSN=StudentMIS;DBQ='"
+ExtractFilePath(Application.ExeName)+'StudentMIS.MDB";'
+'FIL=MS Access;MaxBufferSize=512;PageTimeout=5;
'+'Description=学生信息管理系统');
Application.CreateForm(TfrmMain, frmMain);
Application.CreateForm(TfrmDepartment, frmDepartment);
Application.Run;
end.


错误类型:
[Error] StudentMIS.dpr(10): Identifier expected but 'FUNCTION' found
[Error] StudentMIS.dpr(24): Undeclared identifier: 'Application'
[Error] StudentMIS.dpr(24): Missing operator or semicolon
[Error] StudentMIS.dpr(27): Illegal character in input file: '"' ($22)
[Error] StudentMIS.dpr(28): Undeclared identifier: 'ExtractFilePath'
[Error] StudentMIS.dpr(28): ')' expected but identifier 'ExeName' found
[Error] StudentMIS.dpr(29): Unterminated string
[Error] StudentMIS.dpr(30): Illegal character in input file: '学' ($D1A7)
[Error] StudentMIS.dpr(30): Illegal character in input file: '系' ($CFB5)

要不要另外一个窗体的代码?

搜索更多相关主题的帖子: 工程 代码 
2006-04-08 09:31
快速回复:请教工程代码为什么会出现异常!如何改正
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.015301 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved