|
Form Explorer 1.19 released
The new version of Form Explorer is available!Form Explorer is a supercharged version of the Object Inspector.
With the help of Form Explorer you can easily:
- drag and drop components between containers (such as forms, panels,group boxes, etc.)
- clone components
- replace components with another component type
- view class hierarchy for a selected component
Related Discussions - HOW TO RUN DATABASE APPLICATION ON THE INTERNET (2001-01-03 03:04:54)This is possible using COM objects and ActiveX Server ...
Don't ask how ... I'm not into COM object programming ... :o)
Regards
/Filip
- QUERY PARAMETER QUESTION...? (2001-01-04 22:44:03)there are two parts
first is writing the script with variable and another is using bind variable
eg-
for first you can say
query1.sql.text...
- MANIPULATING WINDOWS OF OTHER PROGRAMS (2001-01-04 19:11:41)You need to use the EnumWindows API function to figure out the handle of each window that you want to manipulate (you may also need to use...
- EXCEPTIONS!!! (2001-01-05 09:41:50)Hi,
Maybe this exception is appearing only because you are debugging your app, I mean running your program via Delphi (F9), try just to compile...
- EXES CONTAINING MORE THAN ONE ICON RESOURCE ... (2001-01-05 09:25:58)Just draw your icons with the Borland Image Editor (Delivered with Delphi). It allows to save different icons in one ico file as well.
- 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;...
- SCREENSAVERS... (2001-01-06 21:23:55)All you need to do is check ParamStr(1) for the correct parameter sent to your program.
For example: When you press Settings it passes "/c" or...
- HOW CAN I SEND THE MOUSE'S CLIK TO ANY CONTROL BY API? (MOUSEEVENT??) (2001-01-08 01:45:44)This example declares one function.
Function TForm1.MouseEvent(AOwner : TControl; Event : DWord) : LongInt;
Var
dwExtraInfo : DWord;
Begin...
- SHELL EXTENSION? (2002-07-30 00:31:30)Thank u first, TeaM.
i'm a chinese :) nice to meet.
i know what you mean. i know how to implement a shell
extention TO A SPECIAL FILE CLASS,...
|