Hi.
If you are going or planning to create a asp.net application then the only use is Borland Data Providers (BDP) to connect to a database. I could not find ADO components for VCL forms application for Delphi8.
It is also really heavy to port a big project over to Delphi8. It could be alot...
Hi.
I am testing Borland Delphi8(octane) now and I just woundering if it is possible to transform an existing win32 application to .net(asp dotnet) application?
I know it is difficult with a large win32 project, but what about an easy(small) project f.ex. one unit and a form.
Does anyone know...
Hi,
Check some of this points:
1.databasefile-corrupt
http://support.microsoft.com/default.aspx?scid=kb;en-us;Q232060
2.no permission to read file
3.no permission to write file
4.no permission to create file (msaccess lockfile for ex)
5.mdac not installed
Link below is about ADO and...
well I got something working... :)
Ex.
procedure TForm1.Button1Click(Sender: TObject);
begin
savedialog1.Filter:='html|*.html|txt|*.txt|dat|*.dat|pdf|*.pdf|csv|*.csv';
SaveDialog1.DefaultExt:='';
if savedialog1.execute then
begin
SaveDialog1TypeChange(self);
showmessage(...
hi whosrdaddy.
ex.
procedure TForm1.Button1Click(Sender: TObject);
begin
if savedialog1.execute then
showmessage(savedialog1.filename);
end;
procedure TForm1.SaveDialog1TypeChange(Sender: TObject);
begin
case savedialog1.FilterIndex of
1 : savedialog1.DefaultExt := 'xml';
2 ...
Hi Delphi Experts.
Ok. Here is the question...
I want to change the filename in the SaveDialogbox when users choose different.. filter.
f.ex. filter as txt, xml, csv etc. and the filename will appears as MyFile.txt, MyFile.xml, etc.
I manage to change the filename before SaveDialog is...
I will try this:
try InfoDB.ConnectionString := 'Provider=Microsoft.Jet.OLEDB.4.0;User ID=Admin;Data Source.. '
with InfoDB do begin
Open;
if Connected then
Result := True
end;
except on e:exception do
ShowMessage('fail to connect to database'+e.message); //fail...
Hi.
It does not help with the latest MDAC.
It does not even help that the computer have office package installed..
1.databasefile-corrupt
No the database is not corrupt.. it is on a server and other clients work except for one special
computer
2.no permission to read file
full permission...
Hi.
I use ADO and Microsoft.Jet.OLEDB.4.0 provider to connect to a MSAccess2000 database.
Some of our customers have some problem to connect to the database with the program. (Only few computers).
I don't why... any clue? Is it because of MDAC? Some needed system files? Some needed driver or...
Hi.
If you use Delphi6 or Delphi7 you can use TShellListView from the Samples palette.
Set root path where you like... works like Windows Esplorer.
Cheers,
mha
Hi
I use shGetSpecialFolderPath in a function that I want to get a special folder path ex. C:\Documents and Settings\mha
It work like a charm in Win98, WinXp, Win2000 but in WinNT4.0 it doesn't work.
An error message appears: Shell32.dll does not support shGetSpecialFolderPath function.
I...
Hi.
Hi.
Can anyone tell me how I can upgrade Shell32.dll version4 to Shell32.dll version 4.72 or shell32.dll version5. Are there any patch from Microsoft?
Does not get any responds from Microsoft, so I will try this forum.
WinNT4.0 have Shell32.dll version 4.0
Many thanks!
Cheers,
mha
Hi, Delphi experts.
I have just finish a project and it is time for shipping to our customers.
In my program I use ADO connection to a MSAccess and it needs MDAC version x.x.
The question is do I need MDAC a long with the installation program?
Doesn't almost every computer with Microsoft...
Hi.
Take a look at this thread:
thread102-557310
Ex copy consts.pas from ..\Borland\Delphi7\Source\Vcl to your projects folder and add it to your project. Manipulate the pas file..
.
.
SMsgDlgWarning = 'MyWarning';
SMsgDlgError = 'MyError';
SMsgDlgInformation = 'MyInfo'...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.