Hi garwain,
You can use PowerPDF which is a powerful suite for
creating PDF Files.
WPTools is good, too, but quite expensive from
what I remember.
Cheers,
Andrew
Hi Raven078,
The problem is that Windows distingueshes( I dunno why )
turning the NumLock light on and actually pressing the
NumLock key.
When looking for the answer please bear this in mind.
Cheers,
Andrew
Hi new2delphi,
If you own a PRO or superior edition of Delphi 5,
you are entitled to use the Package Collection Editor,
which would allow easy deployment of multiple packages.
Check it out.
Cheers,
Andrew
Hi EricDraven,
I would say you should lock the table and
refresh data after each change. Locking the
table will stop others from accessing a record
while it's being modified, so that it should put the
word "end" to the error.
Cheers,
Andrew
Hi KempCGDR,
FindWindow to find the Window handle based on title and/or
class name.
Use then PostMessage like this:
PostMessage( Handle,WM_Hide,0,0 );
Should work.
Cheers,
Andrew
P.S. Remember to include the "Windows" unit, if it's not
already present!
...Please notice that you can place your code before or
after the "inherited" call, according to the type of
result you want to achieve.
As a further note, please *always* remember to call
"inherited" since lots of messages have specific
actions to be taken.
Cheers,
Andrew
Hi BobbaFet,
According to your Delphi version, you may do
this :
MyStringList.Delimiter := '#';
Reg.WriteStr( MyStringList.DelimitedText );
In this way you save the string list using a
string key that you can revert to a list using the
same delimiter.
Cheers,
Andrew
Hi Karen99,
You're welcome :-)
Well, what you said made me have an idea.
You are using persistent fields, right?
Each TField descendant has an ASString property.
Now, you can use AsString with an ANSI date to
overcome the problem instead of using an ASDate
value.
Cheers,
Andrew
Hi abbath8,
Another chance you have is to simply use an
HTTP client component and retrieve the URL,
without using a browser.
With INDY, for example, you'd do something like this:
Memo1.Lines.Text := IdHTTPCli1.Get( MyURL );
Memo1.Lines.SaveToFile( 'MyPage.html' );
That's all.
Cheers,
Andrew
Hi abbath8,
You can use a WebBrowser replacement, there're
several over the net, thus you can create an NT
Service which will "retrieve" the pages on the server and
make them available on the site.
The whole thing requires few minutes to code, really.
The big deal is simply to debug...
Hi ppc386 and cartoonwally,
BEWARE: DELPHI3-4 doesn't handle
TWebBrowser correctly, thus creating some problems
when using it, since some WebBrowser methods are not
supported!!!!
Please bear this in mind.
Cheers,
Andrew
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.