|
UCalc Fast Math Parser 2.0 Pro FREE
Licenses for UCalc Fast Math Parser 2.0 Pro (a $450 value) are now being given away for free in an experimental promotion during November.
Related Discussions - REPEATING FUNCTIONS (2001-01-04 09:46:34)The OnIdle event is not hardware dependent. It is called when the program has idle time. The OnIdle event is in TApplication and is a warpper...
- HOW TO FREE UP A QUICKREPORT COMPONENT IN MEMORY...? (2001-01-09 08:05:01)Use :
Begin
if RepForm=Nil then
RepForm:=TRepForm.Create(Application);
End;
- PRINTING A PDF FORM (2001-01-07 03:57:11)Hello Tom,
If you find a delphi solution to bypass the acrobat Printer i am very interrested.
Actually i am printing a lot of invoice to the...
- HOW CAN I "FORCE" WINDOWS TO CREATE A LINK TO A SPECIFIED FILE? (2001-01-06 09:12:17)Hi,
This should help:
uses
ShlObj, ActiveX, ComObj, Registry;
var
MyObject: IUnknown;
MySLink: IShellLink;
MyPFile: IPersistFile;...
- HOW CAN I ROTATE A PICTURE? (2001-01-07 05:18:51)Hello
You can download TRotateImage for Delphi 3-4-5 at
http://www.crosswinds.net/%7Ekhojasteh/rotimg.html
This component works with...
- HOW DO I STRETCH THE SIZE OF FORM WHEN SCREEN RES INCREASED? (2001-01-09 03:54:00)first of all i am not sure what is your requirement
are u concerned with first time sizing of your form on initialization or do you want to...
- CLOSE AN APP I JUST OPEN WITHIN DELPHI (2001-01-12 13:32:36)See this component... TRunner.
http://sedlan.com/runner.php
Key Features
Available for Delphi versions 3, 4 and 5
Get the handle of the...
- REGISTRY BINARY DATA (2001-01-09 23:42:13)I took this from a newsgroup and was originally posted by Ralph from Team B.
uses
Registry;
procedure...
- HOW TO ADD A TLISTBOX TO A FORM AT RUNTIME? (2001-01-10 05:05:44)Just add "listbox1.parent:=form1" after "create"...
- HOW TO KEEP SPLASH SCREEN SHOWN AFTER APPLICATION.RUN (2001-01-10 07:08:08)Hi,
Try this:
with Form1 do
SetWindowPos(Handle, HWND_TOPMOST, Left, Top, Width, Height, SWP_NOACTIVATE or SWP_NOMOVE or SWP_NOSIZE);
This...
|