📄 bcjq010.txt
字号:
C++ Builder开发者:程序员之家
var how_many_ads = 3;
var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads;
ad +=1;
首页
| 控件天堂 | 控件使用
| 编程技巧
| 源代码 | 编程工具 |
系统补丁 | 电子书籍 | 技术论坛
| 相关链接
if (ad==1) {document.write(''+'');}
if (ad==2) {document.write(''+'');}
if (ad==3) {document.write(''+'');}
var marqueecontents=''+scroll_text+''
if (document.all)
document.write(''+marqueecontents+'')
function regenerate(){
window.location.reload()
}
function regenerate2(){
if (document.layers){
setTimeout("window.onresize=regenerate",450)
intializemarquee()
}
}
function intializemarquee(){
document.cmarquee01.document.cmarquee02.document.write(marqueecontents)
document.cmarquee01.document.cmarquee02.document.close()
thelength=document.cmarquee01.document.cmarquee02.document.height
scrollit()
}
function scrollit(){
if (document.cmarquee01.document.cmarquee02.top>=thelength*(-1)){
document.cmarquee01.document.cmarquee02.top-=speed
setTimeout("scrollit()",100)
}
else{
document.cmarquee01.document.cmarquee02.top=marqueeheight
scrollit()
}
}
window.onload=regenerate2
当前位置
:
编程技巧
C++Builder与Delphi的安装协调
本文由Lenx发表,Zeemon转发
在已安装了Delphi 3的机器上安装C++ Builder,会发现安装完后Delphi
3的数据库
转不起来了。。。。
解决办法是:用regedit 把HKEY_LOCAL_MACHINE\software\Borland\Database
Engine
下的DLLPATH里指向C++Builder的BDE的路径删掉,
只留下指向Delphi 3的
BDE的路径,就万事大吉了. 当然前提是别把两个BDE装到同一个目录下.
下面是Borland自己的解决方案原文.
Frequently Asked Questions
BDE Version problems
Question:
I have more than one installation of the Borland Database Engine and I am having troubles configuring the BDE to work
with either Delphi, C++Builder, or IntraBuilder.
Answer:
Run regedit to see what your current path is for your DLLPATH under
HKEY_LOCAL_MACHINE\software\Borland\Database Engine.
There should be one and only one path for this key. If there is more than one, it will result in problems.
Furthermore, the CONFIGFILE01 key should point to your latest config file.
One way to resolve problems arising from conflicting installations of the database engine is to
reinstall the version of Borland's compiler or tool (either Delphi, Intrabuilder, or C++Builder) that has the
latest version of the BDE. Then edit the DLLPATH in the registry so that it uses the default that the installation program gave.
This works because the latest version of the BDE is backward compatible which means that it will run applications written
with previous versions of the BDE.
if (ad==1) {document.write(''+'');}
if (ad==2) {document.write(''+'');}
if (ad==3) {document.write(''+'');}
C++ Builder开发者®
2000年06月01日 站长:唐朝