active questions tagged delphi - Stack Overflow most recent 30 from stackoverflow.com 2009-11-20T22:25:39Z http://stackoverflow.com/feeds/tag/delphi http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1773546/how-can-i-get-msbuild-to-do-a-full-build-of-a-delphi-project-equivalent-to-dcc32 0 How can I get MSBuild to do a full build of a Delphi project equivalent to dcc32 -b? Zartog 2009-11-20T22:06:26Z 2009-11-20T22:06:26Z <p>How can I get MSBuild to do a full build of a Delphi project equivalent to dcc32 -b?</p> <p>I've got two projects I'm trying to build, the first one uses some conditional defines, which are getting passed via msbuild to the dcc32. However, some common units appear to be stuck with the first set of conditionals, so the second project is built improperly.</p> http://stackoverflow.com/questions/1772911/where-should-i-begin-when-building-a-component 1 Where should I begin when building a component? Austin 2009-11-20T20:03:43Z 2009-11-20T21:31:51Z <p>Hello, I am looking to build my own component and have no idea where to begin. I have some Delphi books but they are old and outdated, and am looking for some recommendations on tutorials/books to help me do this. The component will be pretty simple, basically 2 labels and an image. I need hundreds of these in an array, so I thought a component would be the best route. The text will adjust based on width etc, and have some mouseover events. So basically, where do I begin?</p> <p>I am using Delphi 2009, this will be a win32 app.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1770242/how-to-set-array-length-with-delphi-2010-rtti 1 how to set array length with delphi 2010 rtti unknown (google) 2009-11-20T12:47:05Z 2009-11-20T21:14:56Z <p>how to set array length in runtime ? setLength(t.GetProperty('Propertys'),3); ????</p> <pre><code> unit Unit3; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TSubProperty = Class private Fitem2: Integer; Fitem1: String; procedure Setitem1(const Value: String); procedure Setitem2(const Value: Integer); published property item1:String read Fitem1 write Setitem1; property item2:Integer read Fitem2 write Setitem2; End; TArraySubPropertys=array of TSubProperty; TmyObject = Class private FPropertys: TArraySubPropertys; procedure SetPropertys(const Value: TArraySubPropertys); published property Propertys:TArraySubPropertys read FPropertys write SetPropertys; End; TForm3 = class(TForm) Button1: TButton; procedure Button1Click(Sender: TObject); private { Private declarations } public { Public declarations } end; var Form3: TForm3; implementation {$R *.dfm} procedure TForm3.Button1Click(Sender: TObject); var myObject:TmyObject; ctx : TRttiContext; t : TRttiType; obj:TObject; begin myObject :=TmyObject.Create; ctx := TRttiContext.Create; t := ctx.GetType(myObject.ClassType); // setLength(t.GetProperty('Propertys'),3); ???????????????????????????????????? obj:= (t.GetProperty('Propertys').PropertyType as TRttiDynamicArrayType).ElementType.AsInstance.MetaclassType.Create; //showmessage(obj.toStirng); --&gt; TSubProperty t.GetProperty('Propertys').getValue(myObject).setArrayElement(0,obj); obj:= (t.GetProperty('Propertys').PropertyType as TRttiDynamicArrayType).ElementType.AsInstance.MetaclassType.Create; t.GetProperty('Propertys').getValue(myObject).setArrayElement(1,obj); obj:= (t.GetProperty('Propertys').PropertyType as TRttiDynamicArrayType).ElementType.AsInstance.MetaclassType.Create; t.GetProperty('Propertys').getValue(myObject).setArrayElement(2,obj); { myObject.Propertys[0] :=TSubProperty.Create; myObject.Propertys[0].item1 :='x'; myObject.Propertys[0].item2 :=1; myObject.Propertys[1] :=TSubProperty.Create; myObject.Propertys[1].item1 :='y'; myObject.Propertys[1].item2 :=2; myObject.Propertys[2] :=TSubProperty.Create; myObject.Propertys[2].item1 :='z'; myObject.Propertys[2].item2 :=3; ShowMessage(myObject.Propertys[2].item1); FreeAndNil(myObject.Propertys[2]); FreeAndNil(myObject.Propertys[1]); FreeAndNil(myObject.Propertys[0]); } FreeAndNil(myObject); end; { TSubProperty } procedure TSubProperty.Setitem1(const Value: String); begin Fitem1 := Value; end; procedure TSubProperty.Setitem2(const Value: Integer); begin Fitem2 := Value; end; { TmyObject } procedure TmyObject.SetPropertys(const Value: TArraySubPropertys); begin FPropertys := Value; end; end. </code></pre> http://stackoverflow.com/questions/1527694/landscape-printing-in-rave-reports-delphi-7 0 Landscape printing in Rave Reports Delphi 7 Tofig Hasanov 2009-10-06T19:45:40Z 2009-11-20T19:24:18Z <p>I have create report designs in Rave (Delphi 7). However they are in portrait mode. When user selects landscape printing from Print Setup, it is printer in portrait again anyway. How can I fix it, so that Rave generates reports in a format which user selects during print setup?</p> http://stackoverflow.com/questions/1772411/adding-validator-symbol-next-to-control-on-a-delphi-form 2 Adding validator symbol next to control on a Delphi form. Pavan 2009-11-20T18:31:30Z 2009-11-20T19:00:02Z <p>Hi,</p> <p>I have an application, where there are many forms which follow visual form inheritance. Every form has standard delphi components as well as custom components.</p> <p>Form validating functionality needs to be added. That is, A small red circle or astric image needs to be drawn next to a control, if the control's value is not valid.</p> <p>This drawing functionality has to be available through out the application on every control.</p> <p>What is the best way of implementing this functionality? Is there any design pattern that can help?</p> <p>Thanks &amp; Regards, Pavan. </p> http://stackoverflow.com/questions/1443268/how-can-i-detect-a-debugger-or-other-tool-that-might-be-analysing-my-software 3 How can I detect a debugger or other tool that might be analysing my software? Workshop Alex 2009-09-18T08:37:06Z 2009-11-20T18:51:31Z <p>A very simple situation. I'm working on an application in Delphi 2007 which is often compiled as 'Release' but still runs under a debugger. And occasionally it will run under SilkTest too, for regression testing. While this is quite fun I want to do something special...</p> <p>I want to detect if my application is running within a debugger/regression-tester and if that's the case, I want the application to know which tool is used! (Thus, when the application crashes, I could report this information in it's error report.)</p> <p>Any suggestions, solutions?</p> http://stackoverflow.com/questions/1769719/how-to-catch-onmouseleave-event-for-tdatetimepicker-component-in-delphi-7 0 How to catch onmouseleave event for TDateTimePicker component in Delphi 7 Tofig Hasanov 2009-11-20T10:53:12Z 2009-11-20T17:47:52Z <p>I need to detect <code>OnMouseLeave</code> event for <code>TDateTimePicker</code> component, but it doesn't contain such event in events list. Is there a way to detect it manually?</p> http://stackoverflow.com/questions/1770413/server-acontexts-list-with-indy10 0 Server AContexts List with Indy10 djiga4me 2009-11-20T13:27:13Z 2009-11-20T17:47:43Z <p>Hi,</p> <p>I'm using Indy10 under Delphi2009. I have a server/client application, with TidTCPServer and TidTCPClient. I found a problem in my "logical" code.</p> <p>This is : When the server disconnect, and after a time, reconnect, the sent-clients requests are not intercepted by the server, and the server cannot contact client (because-I think- the acontext list is empty)</p> <p>So how can I alert the clients that the server reconnected, or how can the server recreate its acontext list? (because the solution where the clients verify each x seconds the connection of the server is not a real good solution ?!!!).</p> http://stackoverflow.com/questions/1766562/how-can-i-print-selectedrows-in-dbgrid-using-rave-report 0 How can I print SelectedRows in DBGrid using Rave Report ? Kachwahed 2009-11-19T21:08:13Z 2009-11-20T16:24:46Z <p>To report current record in dataset I have made (one record by page):</p> <pre><code>RvSystem1.SystemPrinter.FirstPage := DataSet.RecNo; RvSystem1.SystemPrinter.LastPage := DataSet.RecNo; </code></pre> <p>So, how we can report only selected records in DataSet when all records appears in the same page. Something like:</p> <pre><code>RvProject1.SelectReport('Report1'); for I := 0 to DBGrid1.SelectedRows.Count - 1 do begin /// ??? end; RvProject1.Execute; </code></pre> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1741352/some-components-cause-block-threads 0 Some components cause block threads Ali Kavoosi 2009-11-16T10:38:42Z 2009-11-20T16:23:17Z <p>I wrote a Delphi application that have some threads.In one of my forms there is a Shelltreeview component and whenever i click on a node to expand it, it takes some minutes to expansion and during this time all threads are blocked. Anybody have solution for this problem</p> <p>Thanks in advance </p> http://stackoverflow.com/questions/1766626/copy-file-in-a-thread 1 copy file in a thread Greener 2009-11-19T21:15:10Z 2009-11-20T16:00:28Z <p>I am trying to write to copy a file by invoking a separate thread. Here is my form code:</p> <pre><code>unit frmFileCopy; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, ComCtrls, StdCtrls; type TForm2 = class(TForm) Button3: TButton; procedure Button3Click(Sender: TObject); procedure FormCreate(Sender: TObject); procedure FormCloseQuery(Sender: TObject; var CanClose: Boolean); private ThreadNumberCounter : integer; procedure HandleTerminate (Sender: Tobject); end; var Form2: TForm2; implementation uses fileThread; {$R *.dfm} { TForm2 } const sourcePath = 'source\'; //' destPath = 'dest\'; //' fileSource = 'bigFile.zip'; fileDest = 'Copy_bigFile.zip'; procedure TForm2.FormCloseQuery(Sender: TObject; var CanClose: Boolean); begin CanClose := true; if ThreadNumberCounter &gt;0 then begin if MessageDlg('The file is being copied. Do you want to quit?', mtWarning, [mbYes, mbNo],0) = mrNo then CanClose := false; end; end; procedure TForm2.FormCreate(Sender: TObject); begin ThreadNumberCounter := 0; end; procedure TForm2.Button3Click(Sender: TObject); var sourceF, destF : string; copyFileThread : TCopyThread; begin sourceF := ExtractFilePath(ParamStr(0)) + sourcePath + fileSource; destF := ExtractFilePath(ParamStr(0)) + sourcePath + fileDest; copyFileThread := TCopyThread.create(sourceF,destF); copyFileThread.FreeOnTerminate := True; try Inc(ThreadNumberCounter); copyFileThread.Execute; copyFileThread.OnTerminate := HandleTerminate; copyFileThread.Resume; except on Exception do begin copyFileThread.Free; ShowMessage('Error in thread'); end; end; end; procedure TForm2.HandleTerminate(Sender: Tobject); begin Dec(ThreadNumberCounter); end; </code></pre> <p>Here is my class:</p> <pre><code>unit fileThread; interface uses Classes, SysUtils; type TCopyThread = class(TThread) private FIn, FOut : string; procedure copyfile; public procedure Execute ; override; constructor create (const source, dest : string); end; implementation { TCopyThread } procedure TCopyThread.copyfile; var streamSource, streamDest : TFileStream; bIn, bOut : byte; begin streamSource := TFileStream.Create(FIn, fmOpenRead); try streamDest := TFileStream.Create(FOut,fmCreate); try streamDest.CopyFrom(streamSource,streamSource.Size); streamSource.Position := 0; streamDest.Position := 0; {check file consinstency} while not (streamSource.Position = streamDest.Size) do begin streamSource.Read(bIn, 1); streamDest.Read(bOut, 1); if bIn &lt;&gt; bOut then raise Exception.Create('files are different at position' + IntToStr(streamSource.Position)); end; finally streamDest.Free; end; finally streamSource.Free; end; end; constructor TCopyThread.create(const source, dest: string); begin FIn := source; FOut := dest; end; procedure TCopyThread.Execute; begin copyfile; inherited; end; end. </code></pre> <p>When I run the application, I received a following error:</p> <blockquote> <p>Project prjFileCopyThread raised exception class EThread with message: 'Cannot call Start on a running or suspended thread'.</p> </blockquote> <p>I do not have experience with threads. I use <a href="http://eonclash.com/Tutorials/Multithreading/MartinHarvey1.1/ToC.html" rel="nofollow">Martin Harvey's tutorial</a> as a guide, but any advice how to improve it make safe thread would be appreciated. </p> <p><hr></p> <p>Based on the answers, I've changed my code. This time it worked. I would appreciate if you can review it again and tell what should be improved.</p> <pre><code>procedure TForm2.Button3Click(Sender: TObject); var sourceF, destF : string; copyFileThread : TCopyThread; begin sourceF := ExtractFilePath(ParamStr(0)) + sourcePath + fileSource; destF := ExtractFilePath(ParamStr(0)) + destPath + fileDest; copyFileThread := TCopyThread.create; try copyFileThread.InFile := sourceF; copyFileThread.OutFile := destF; except on Exception do begin copyFileThread.Free; ShowMessage('Error in thread'); end; end; </code></pre> <p>Here is my class:</p> <pre><code>type TCopyThread = class(TThread) private FIn, FOut : string; procedure setFin (const AIN : string); procedure setFOut (const AOut : string); procedure FCopyFile; protected procedure Execute ; override; public constructor Create; property InFile : string write setFin; property OutFile : string write setFOut; end; implementation { TCopyThread } procedure TCopyThread.FCopyfile; var streamSource, streamDest : TFileStream; bIn, bOut : byte; begin {removed the code to make it shorter} end; procedure TCopyThread.setFin(const AIN: string); begin FIn := AIN; end; procedure TCopyThread.setFOut(const AOut: string); begin FOut := AOut; end; constructor TCopyThread.create; begin FreeOnTerminate := True; inherited Create(FALSE); end; procedure TCopyThread.Execute; begin FCopyfile; end; end. </code></pre> http://stackoverflow.com/questions/1769969/marshaling-delphi-5-olevariant-to-c 0 Marshaling Delphi 5 OleVariant to C# ulrikj 2009-11-20T11:45:38Z 2009-11-20T14:01:27Z <p>I'm trying to use some legacy Delphi 5 DLLs from C# (2.0/3.5). Some of the exported functions are declared as such:</p> <pre><code>function SimpleExport: OleVariant; stdcall; function BiDirectionalExport(X: OleVariant; var Y: OleVariant): OleVariant; stdcall; </code></pre> <p>I wish to set these up as delegates using Marshal.GetDelegateForFunctionPointer, but I'm having trouble getting the data Marshaled correctly. I'm using kernel32 imports of LoadLibrary and GetProcAddress, so I'm relying on GetDelegateForFunctionPointer to do my actual marshaling, not static p/invoke declarations.</p> <p>What's the correct way to Marshal a Delphi 5 OleVariant into something .NET readable?</p> http://stackoverflow.com/questions/1767843/tribbons-large-buttons-image-is-not-centered-any-ideas-easy-to-demonstrate 1 TRibbon's large button's image is not centered...any ideas? easy to demonstrate at design-time. X-Ray 2009-11-20T01:53:02Z 2009-11-20T13:57:30Z <p>i'm using delphi 2009 (updates 1, 2, 3, 4). i'm seeing something quite peculiar. the image on the button is not centered in the button when i have a large button with a large glyph! rather than being centered, the left part of the glyph starts at the center of the button. </p> <p>a clue is that when i:</p> <ol> <li>go into the action editor and select the action</li> <li>use the ImageIndex combobox in the object inspector, the list is empty (normally i'd see the available images in the combobox).</li> </ol> <p>it seems as though there's an image width property i've failed to set or an imagelist not correctly configured. i've expected the glyph on a large button should be 32x32.</p> <p>try the following:</p> <ol> <li>paste these components into an empty form </li> <li>add a 32x32 image to the image list</li> <li>set the Action1 imageindex to 0</li> </ol> <p>you'll immediately see what i mean!</p> <p><img src="http://xrw.bc.ca/download/so/hurry.png" alt="glyph is not centered!"></p> <p>can anyone tell me why it looks that way?</p> <p>i find it interesting that the ribbon demo app doesn't show this problem. i even tried the same image.</p> <p>thank you!</p> <pre><code>object ActionManager1: TActionManager ActionBars = &lt; item Items = &lt; item Action = Action1 Caption = '&amp;Action1' ImageIndex = 0 CommandProperties.ButtonSize = bsLarge end&gt; ActionBar = RibbonGroup1 end&gt; LargeDisabledImages = img3232 LargeImages = img3232 Left = 376 Top = 184 StyleName = 'Ribbon - Luna' object Action1: TAction Caption = 'Action1' ImageIndex = 0 end end object Ribbon1: TRibbon Left = 0 Top = 0 Width = 693 Height = 147 ActionManager = ActionManager1 Caption = 'Ribbon1' Tabs = &lt; item Caption = 'RibbonPage1' Page = RibbonPage1 end&gt; ExplicitLeft = 232 ExplicitTop = 80 ExplicitWidth = 0 DesignSize = ( 693 147) StyleName = 'Ribbon - Luna' object RibbonPage1: TRibbonPage Left = 0 Top = 54 Width = 692 Height = 93 Caption = 'RibbonPage1' Index = 0 object RibbonGroup1: TRibbonGroup Left = 4 Top = 3 Width = 54 Height = 86 ActionManager = ActionManager1 Caption = 'RibbonGroup1' GroupIndex = 0 end end end object img3232: TImageList Height = 32 Width = 32 Left = 376 Top = 256 end </code></pre> http://stackoverflow.com/questions/1720631/bluetooth-on-lazarus-freepascal-on-mac-os-x 2 Bluetooth on Lazarus/FreePascal on Mac OS X Noah 2009-11-12T08:00:12Z 2009-11-20T13:52:05Z <p>Has anyone used Bluetooth on Mac OS X with Lazarus or FreePascal? There is a bluetooth unit, but it currently only supports Linux.</p> <p>Information about existing unit: <a href="http://wiki.freepascal.org/Bluetooth" rel="nofollow">http://wiki.freepascal.org/Bluetooth</a></p> <p>I plan to enhance this to support Mac OS, but it would be nice to know if anyone has written any code to use BlueTooth on Mac OS already to avoid duplicated work.</p> <p>On the other hand, if you have used XCode to access Bluetooth, what libraries did you use? I am sure I can discover this with the XCode profiler by opening some Bluetooth applications.</p> <p>Note: Mac OS X doesn't appear to use the BlueZ library that Linux has, so I don't think the solution is as easy as changing the library path. Instead, it has IOBluetooth "Framework", located at /System/Library/Frameworks/IOBluetooth.framework.</p> <p>Having a look, it looks like:</p> <pre> kaikei.ocn.ntt.com:IOBluetooth.framework $ file * CodeResources: XML document text Headers: directory IOBluetooth: Mach-O universal binary with 3 architectures IOBluetooth (for architecture x86_64): Mach-O 64-bit dynamically linked shared library x86_64 IOBluetooth (for architecture i386): Mach-O dynamically linked shared library i386 IOBluetooth (for architecture ppc7400): Mach-O dynamically linked shared library ppc Resources: directory Versions: directory </pre> <p>On the other hand, I think if anyone had done this already, I would probably be able to find it on Google.... On the off chance I am wrong, please reply and let me know.</p> <p>Clarification: I have created bindings for normal shared libraries before (f.e. sqlite3), but not for a "framework". If nobody has created bindings or otherwise used the MacOS Bluetooth framework from FreePascal, advice on how to use framework functions from FreePascal in general woule be appreciated. (And normally the functions I am porting are C based, not Obj-C, so I am not sure how to declare Obj-C methods in FPK, although I am sure I will be able to find some samples if I keep searching).</p> http://stackoverflow.com/questions/1770078/getting-avi-file-duration -1 Getting AVI file duration smok1 2009-11-20T12:08:57Z 2009-11-20T13:02:52Z <p>I am using VFW unit from JEDI wrapper on WinAPI.</p> <p>The code I am writing is intended to search user drives and detect warez (note: deciding if some file is legal or not is beyond scope of this question). We do MP3, WMA and some graphic file search. Now we want to detect illegal movies. I want to open AVI file, read some details from it and close it. I have the following code:</p> <pre><code>uses WFV; //from JEDI api wrappers procedure TForm1.Button1Click(Sender: TObject); var lInfo : TAVIFILEINFOW; lFile : IAVIFILE; lFileType : string; lLenMinutes : integer; lFPS : integer; begin {init file} AVIFileInit; try {Open file - note: since we search for warez this is perfely "warezy" file} AVIFileOpen(lFile, 'e:\Sideways KLAXXON\Sideways KLAXXON.avi', OF_READ, nil); try {Get file info} AVIFileInfoW(lFile, lInfo, sizeof(lInfo)); lFPS:=Round(lInfo.dwRate /lInfo.dwScale); lLenMinutes := Round(lInfo.dwLength / lFPS / 60); lFileType := lInfo.szFileType; {just for show: prepare some memo to see what we get} memo1.Lines.Clear; memo1.Lines.Add('File lenght [min]: ' + IntToStr(lLenMinutes)); memo1.Lines.Add('Width: ' + IntToStr(lInfo.dwWidth)); memo1.Lines.Add('Height: ' + IntToStr(lInfo.dwHeight)); memo1.Lines.Add('File type: ' + lFileType); finally {Closing the file} AVIFileRelease (lFile); Pointer(lFile) := nil; end; finally {Releasing library} AVIFileExit; end; end; </code></pre> <p>So the lLenMinutes is something equal to 98 while the movie is about 121 minutes long. This is a huge difference. What am I doing wrong? dwRate is 1 million and dwScale is 40k, so the FPS is perfectly 25. dwLength is 147k <a href="http://msdn.microsoft.com/en-us/library/dd756798%28VS.85%29.aspx" rel="nofollow">MSDN says</a>: “The units are defined by dwRate and dwScale”. </p> <p>Note: this is a <a href="http://stackoverflow.com/questions/1765815/error-on-getting-avi-file-duration">follow-up from this question</a>, but since the crashing problem has been solved, I closed the other question and moved improved content here.</p> http://stackoverflow.com/questions/1769620/basic-code-to-delphi 0 Basic code to Delphi addelichtman 2009-11-20T10:33:13Z 2009-11-20T13:02:17Z <p>I'm struggling with the following:</p> <p>The goal is to parametrize an automation server for openoffice and I'm programming in Delphi.</p> <p>The piece of basic code I want to translate into Delphi code is:</p> <pre><code>Dim aProps(1) As New com.sun.star.beans.PropertyValue aProps(0).Name = "FilterName" aProps(0).Value = "Text - txt - csv (StarCalc)" aProps(1).Name = "FilterOptions" aProps(1).Value = sFilterOptions </code></pre> <p>My attempt in Delphi looks like</p> <pre><code>type TPrmRecord = packed Record Name : String; Value : String; End; Var ooParams:Variant; MyData : TPrmRecord; Begin ooParams:= VarArrayCreate([0, 1], varVariant); MyData.Name := 'FilterName'; MyData.Value := 'Text - txt - csv (StarCalc)'; ooParams[0] := MyData; MyData.Name := 'FilterOptions'; MyData.Value := '59/44,34,ANSI,1,'; ooParams[1] := MyData; End; </code></pre> <p>This is not working does anyone have a suggestion how to tackle this?</p> http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist 34 Delphi 2010 Beta: What's on your wishlist? plainth 2009-03-20T06:07:11Z 2009-11-20T12:56:41Z <p>Soon Delphi 2010 "Weaver" will enter in beta. (See <a href="http://www.embarcadero.com/products/beta%5Fprograms.php" rel="nofollow">http://www.embarcadero.com/products/beta_programs.php</a>)</p> <p>Which would be your most wanted features for the next release of Delphi?</p> <p>Mine (from top of the head):</p> <ul> <li>tooling for synchronizing the representations of DB schema (aka. DB metadata) in code and in database </li> <li>language enhancements: <ul> <li>CASE on non-ordinal types</li> <li>lazy evaluation</li> <li>mixins</li> <li>AOP (aspect oriented programming)</li> </ul></li> <li>VCL enhancements: <ul> <li>DB enhancements (TDataSet, TClientDataSet - faster, more feature rich)</li> <li>OPF/ORM on native side</li> <li>(more) containers, classes (using generics)</li> </ul></li> <li>IDE enhancements: <ul> <li>Runtime Object Inspector using the already registered editors to allow WYSWYG debugging of the objects/classes (and generally a better debugger)</li> <li>Code management tools</li> <li>Refactoring assistants</li> <li>Find unused code (ok, here we need support from linker)</li> </ul></li> <li>64-bit compiler</li> </ul> <p>...and many many more :-)</p> <p>Yours?</p> <p>UPDATE: There are some sneak previews at <a href="http://wings-of-wind.com" rel="nofollow">http://wings-of-wind.com</a> See for yourself.</p> http://stackoverflow.com/questions/1765815/error-on-getting-avi-file-duration 0 Error on getting AVI file duration smok1 2009-11-19T19:14:56Z 2009-11-20T12:08:13Z <p>I am using VFW unit from JEDI wrapper on WinAPI.</p> <p>The code I am writing is intended to search user drives and detect warez. We do MP3, WMA and some graphic file search. Now we want to detect illegal movies. I want to open AVI file, read some details from it and close it. I have the following code:</p> <pre><code>uses WFV; //from JEDI api wrappers procedure TForm1.Button1Click(Sender: TObject); var lInfo : TAVIFILEINFO lFile : IAVIFILE; lFileType : string; lLenMinutes : integer; lFPS : integer; begin {init file} AVIFileInit; {Open file - note: since we search for warez this is perfely "warezy" file} AVIFileOpen(lFile, 'e:\Sideways KLAXXON\Sideways KLAXXON.avi', OF_READ, nil); {Get file info} AVIFileInfoW(lFile, lInfo, sizeof(lInfo)); lFPS:=Round(lInfo.dwRate /lInfo.dwScale); lLenMinutes := Round(lInfo.dwLength / lFPS / 60); lFileType := lInfo.szFileType; {just for show: prepare some memo to see what we get} memo1.Lines.Clear; memo1.Lines.Add('File lenght [min]: ' + IntToStr(lLenMinutes)); memo1.Lines.Add('Width: ' + IntToStr(lInfo.dwWidth)); memo1.Lines.Add('Height: ' + IntToStr(lInfo.dwHeight)); memo1.Lines.Add('File type: ' + lFileType); {Closing the file} AVIFileRelease (lFile); {and here goes the crash} FreeAndNil(lFile); end; </code></pre> <p>There are two problems:</p> <ol> <li>The lLenMinutes is something equal to 98 while the movie is about two hours. dwRate is 1 million and dwScale is 40k, so the FPS is perfectly 25. <a href="http://msdn.microsoft.com/en-us/library/dd756798%28VS.85%29.aspx" rel="nofollow">MSDN says</a>: “The units are defined by dwRate and dwScale”. </li> <li>The code crashes on FreeAndNil line. Why? I assume I am responsible for freeing lFile (and at least I feel supposed to release file). Without line with FreeAndNil, I have Acces Violation on exit from a procedure.</li> </ol> <p>So, do you have any clue how to correctly obtain movie duration from AVI file? And why the crash?</p> <p><strong>Edit</strong></p> <p>The movie is 2hours one minute, so the result should be really close to 120.The lFile is declared in Jedi as:</p> <pre><code>IAVIFile = interface(IUnknown) </code></pre> <p>the AVIFileOpen is declared in JEDI as:</p> <p>function AVIFileOpen(var ppfile: IAVIFILE; szFile: LPCWSTR; uMode: UINT; lpHandler: PCLSID): HResult; stdcall; external AVIFILDLL name 'AVIFileOpenW';</p> <p>and in MSDN:</p> <p>STDAPI AVIFileOpen( PAVIFILE *ppfile, LPCTSTR szFile, UINT mode, CLSID pclsidHandler );</p> <p>MSDN says: </p> <blockquote> <p>"The AVIFileOpen function opens an AVI file and returns the address of a file interface used to access it."</p> </blockquote> <p>so I assume object is created by this function.</p> <p><strong>Edit 2</strong></p> <p>The avi file length has been move to <a href="http://stackoverflow.com/questions/1770078/getting-avi-file-duration">new question</a>, since mghie answered this question.</p> http://stackoverflow.com/questions/1762000/use-ssl-with-delphi-yet-still-having-a-single-exe 2 Use SSL with Delphi yet still having a single exe plainth 2009-11-19T09:29:16Z 2009-11-20T11:12:23Z <p>Hi,</p> <p>We use Indy and we need SSL eMail support in our app., however we need to have our application in a single .Exe. </p> <p>We know that the default Indy handler requires to have the dlls in the path. Extracting the Dlls from one of the EXE's resources would be the last resort.</p> <p>Any better ideas?</p> http://stackoverflow.com/questions/1766630/delphi-2010-oxmldom 1 Delphi 2010 OXMLDOM Daniel Luyo 2009-11-19T21:15:45Z 2009-11-20T09:35:56Z <p>I'm migrating my Delphi 7 app to Delphi 2010. We used the Open XML (from <a href="http://www.philo.de/" rel="nofollow">http://www.philo.de/</a>).</p> <p>In Delphi 2010 it seems to be already built in. In the documentation it says so (ms-help://embarcadero.rs2010/rad/Using_the_Document_Object_Model.html)</p> <p>"and the unit for the Open XML implementation is OXMLDOM"</p> <p>But I can not find any OXMLDOM in my installation. </p> <p>Am I missing something? Or the OpenXML support was dropped?</p> <p>Daniel</p> http://stackoverflow.com/questions/1767946/getthreadlocale-returns-different-value-than-getuserdefaultlcid 1 GetThreadLocale returns different value than GetUserDefaultLCID? Mick 2009-11-20T02:26:49Z 2009-11-20T07:22:50Z <p>To get the locale settings, e.g. short date format, we've always used GetLocaleFormatSettings with GetThreadLocale. This has always worked without problem until now.</p> <p>A couple of our users are getting different values for GetThreadLocale that don't match what they've configured in the regional settings in Windows 7. We've been unable to reproduce this no matter what we try, but I sent one user a test program to get the locale information, and sure enough GetThreadLocale returns a different LCID (1033) than GetUserDefaultLCID (2057). So instead of getting UK locale settings, they end up with US locale settings.</p> <p>Are we getting the locale information incorrectly? Should we be using GetUserDefaultLCID instead of GetThreadLocale?</p> <p>Thanks</p> http://stackoverflow.com/questions/801090/looking-for-a-php-and-or-python-rad 1 Looking for a PHP and/or Python RAD Yogi Yang 007 2009-04-29T06:17:06Z 2009-11-20T05:18:05Z <p>I am looking for RAD like environment for PHP and/or Python free or not does not matter.</p> <p>It should have a visual environment where one can use a point and click interface so that it is possible to select objects with mouse and move them around.</p> <p>I have looked at Delphi4PHP. The RAD part is fantastic, but I don't like the framework on which it is based VCL4PHP (vcl4php.sourceforge.net) is crappy. Just to deploy a simple Hello world application we will have to deploy 40MB of that framework. That is just stupid.....</p> <p>I looked at Eclipse but it is only a code IDE. Does not have a visual way of designing a page/window. Did I miss any plugin that supports this feature?</p> <p>I was suggested to give NetBeans IDE a close look so I also looked that up, but did not find what I wanted.</p> <p>I have also looked up following but none of these are true RAD:</p> <ul> <li>NuSphere PHPEd</li> <li>VS PHP for Visual Studio </li> <li>PHP Designer (not a designer by any means just a plain old IDE)</li> </ul> <p>I have not been able to find any descent Python RAD tool also.</p> <p>I have looked up Yes Software's Code Charge Studio (www.yessoftware.com) but it cannot be used to develop complicated applications like say for example an Accounting System or an Inventory Management App, etc.. It is useful but for very simple apps. Making changes to Visual part (referred as components by this people) is a nightmare. Finally it does not support Python.</p> <p>Any suggestions please?</p> <p>I am a bit desperate on this.</p> <p>TIA</p> <p>Regards,</p> <p>Yogi Yang</p> http://stackoverflow.com/questions/1753893/how-do-i-show-a-final-form-on-exiting-in-delphi 1 How Do I Show A Final Form On Exiting In Delphi? lkessler 2009-11-18T05:44:08Z 2009-11-20T03:47:47Z <p>This should be a simple one for someone. I just can't figure out how to do it.</p> <p>Upon exiting of my program, I want to hide the main form and make a final "Thank You" form appear on its own, like this:</p> <pre><code>procedure TMainForm.ExitExecute(Sender: TObject); begin MainForm.Visible := false; ThankYouForm.Show; MainForm.Close; end; </code></pre> <p>But when I do that, I get the Exception:</p> <blockquote> <p>EInvalid Operation: Cannot change Visible in OnShow or OnHide</p> </blockquote> <p>So how do I show a final form, while hiding the main form when exiting a program in Delphi?</p> <p><hr></p> <p>Conclusion: Mghie confirmed that what I was trying was correct and should have worked. That indicated that I had a bug somewhere in my procedures of exiting and closing from my forms that was bringing up this exception. </p> <p>Now that I know that, it won't take me long to find and fix the problem. </p> <p><hr></p> <p>Found the problem: I was closing my main form from within the ThankYouForm, and that somehow looped back through into ExitExecute and, well, it got all bunged up.</p> <p>But all's well again. The MainForm.Hide before the ThankYouForm.ShowModal works perfectly.</p> <p>Thanks again, guys.</p> http://stackoverflow.com/questions/1766583/working-with-ime-names-in-delphi 0 Working with IME names in Delphi Pavan 2009-11-19T21:10:37Z 2009-11-20T02:02:15Z <p>Hi,</p> <p>Delphi TScreen object has a collection that accepts IME names. And the TControl offers SetIMEName method.</p> <p>Are these IME names constant? Are they same as ISO language names?</p> <p>Platform: Windows XP.</p> <p>Thanks, Pavan.</p> http://stackoverflow.com/questions/1145689/delphi-6-with-ado-oracle-returns-number-with-different-precision-generating-bc 1 Delphi 6 with ADO + Oracle returns NUMBER with different precision, generating BCD overflow Pascal 2009-07-17T21:07:29Z 2009-11-20T02:00:03Z <p>Hello, <br> I'm having a problem with Delphi 6 + Oracle 10gR2 + ADO + ClientDataSet. Whenever I run a aggregate function on a field NUMBER(19,9), the resulting column returns a NUMBER datatype to Delphi, and on some machines it loads as a TBCDField with a precision of 38, and everything goes well, but on some machines it loads as a TBCDField with a precision of 255, and I get a BCD overflow on the field.<br> To replicate the problem, just create a table with a column NUMBER (19,9), and run a SELECT SUM(<i>column_name</i>) <i>column_name</i> FROM <i>table_name</i> GROUP BY <i>column_name</i>. Despite the fact that the column is a NUMBER(19,9), the resulting column will be a NUMBER with no precision defined. In Delphi, load the query into a ADOQuery, with a DataSetProvider linked to it and a ClientDataSet linked to the DataSetProvider. After I call the ClientDataSet.Open, on some machines I get a BCD overflow message on the NUMBER field, but in a lot of machines it works nice. <br> Why am I getting this 255 precision on some machines, when the midas.dll, ADO, server, user, oracle client are all the same on both machines? Any ideas? <br> Thanks</p> http://stackoverflow.com/questions/1767126/print-fastreport-directly 1 Print FastReport directly ChuckO 2009-11-19T22:48:03Z 2009-11-19T23:50:49Z <p>I'm using FastReport in Delphi Win32. </p> <p>When a FastReport is called, it is previewed before you can print it.</p> <p>The user sometimes needs to print a series of reports. It's a PITA to preview then print each one separately.</p> <p>How can I queue the reports and send them directly to the default printer?</p> http://stackoverflow.com/questions/1766527/how-can-activate-a-glass-effect-windows-vista-7-in-a-console-application-using 4 How can activate a glass effect (windows Vista/7) in a console application using Delphi Salvador 2009-11-19T21:04:28Z 2009-11-19T21:08:12Z <p>As I can activate the glass effect on my console applications. I am using Windows 7 and Delphi 2010.</p> <p>I found <a href="http://www.lifehacker.com.au/2009/05/glass-cmd-enables-aero-transparency-for-the-command-prompt/" rel="nofollow">this</a> application so it should be possible.</p> <p><img src="http://img.photobucket.com/albums/v374/vishaal%5Fhere/Glass%5FCMD.png" alt="alt text"></p> <p>Thanks.</p> http://stackoverflow.com/questions/1494037/static-classes-in-delphi-win32 2 Static classes in Delphi (Win32) Wolfhard Kupfer 2009-09-29T17:54:34Z 2009-11-19T20:20:03Z <p>Is it in Delphi (Win32) possible to declare a whole class (not only a function of the class) as static?</p> http://stackoverflow.com/questions/1639125/form-is-hidden-behind-other-forms-when-showmodal-is-called 1 Form is hidden behind other forms when ShowModal is called. LukLed 2009-10-28T18:20:15Z 2009-11-19T19:37:07Z <p>My application is based on modal forms. Main form opens one form with ShowModal, this form opens another with ShowModal, so we have stacked modal forms. There is sometimes a problem that when we call ShowModal in new form, it hides behind previous forms, instead of showing on top. After pressing alt+tab, form comes back to the top, but this is not good solution. Did You meet this problem and how did you handle it?</p> <p><strong>EDIT</strong>:</p> <p>I use Delphi 7.</p> http://stackoverflow.com/questions/1575286/delphi-get-what-files-are-opened-by-an-application 2 Delphi - get what files are opened by an application Chris 2009-10-15T21:46:04Z 2009-11-19T15:59:07Z <p>How can I get the list of opened files by an application, using Delphi? For example what files are opened by winword.exe</p>