A Better Way To Print a Form
Technical Information Database TI1412D.txt A Better Way To Print a Form Category :General Programming Platform :All Product :Delphi All Description: The following TI…
Forms: Create Elliptic Windows
[code lang=”delphi”]Var hR : THandle; begin hR := CreateEllipticRgn(20 ,30 ,300 ,200); SetWindowRgn(Handle,hR,True); [/code] [tags]Delphi, Graphic, Forms[/tags]
Align Form To Workspace
[code lang=”delphi”]procedure TForm1.FormCreate(Sender: TObject); var NewRect: Trect; begin // See SystemParametersInfo in the Win32.hlp file for other options SystemParametersInfo(SPI_GETWORKAREA, 0, Pointer(@NewRect), 0); Top…
Bitmap on Background
Michel TORREILLES wrote: > Hello ! > > I want to have a picture in the background of a parent MDI Form. >…
Convert DFM-Files to Text
DFM-Files in Text konvertieren: [code lang=”delphi”]var fStream : TFileStream; outStream : TMemoryStream; begin if FileListBox1.FileName = ” then Exit; fStream := TFileStream.Create(FileListBox1.FileName,fmOpenRead or…
Dragging a form with no titlebar
[code lang=”delphi”]// Declare the procedure procedure WMCHitTest(var msg : TMessage); message WM_NCHITTEST; procedure TForm1.WMCHitTest(var msg : TMessage); begin inherited; // If the client…
Draw in Caption bar
Konstantin Knips wrote in message 371B12D9.7DCB8FDB@reze-1.rz.rwth-aachen.de >… > > >Neil White schrieb: > >> In realplayer there is an icon that is overlapping…
MDI: Bitmap on MDI Background
Question and Answer Database FAQ176D.txt Displaying a bitmap on the client area of an MDI parent form. Category :Windows API Platform :All Product…
MDI: MDI children in DLL?
>Is there any document teaching about the MDI Application call the child >forms in DLL >How can I put the child forms in…
Moving Forms without a caption bar
Thomas wrote: > Hi Kire, > > If I can remember, the method to perform such operation was to hook the > WM_NCHITTEST…