User Pavan - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T17:00:08Z http://stackoverflow.com/feeds/user/129366 http://www.creativecommons.org/licenses/by-nc/2.5/rdf 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/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/1740636/how-to-save-dom-with-xml/1740718#1740718 0 Answer by Pavan for How to save dom with xml Pavan 2009-11-16T07:56:50Z 2009-11-16T07:56:50Z <p>IXMLDOMDocument2 interface has a save method. Check <a href="http://msdn.microsoft.com/en-us/library/microsoft.office.interop.infopath.xml.ixmldomdocument2.save.aspx" rel="nofollow">this</a>.</p> http://stackoverflow.com/questions/1728141/tbitmap-drawing-transparent-image-in-delphi-2009 0 TBitmap drawing transparent image in Delphi 2009. Pavan 2009-11-13T09:28:46Z 2009-11-13T09:53:14Z <p>Hi,</p> <p>Problem in drawing a semi transparent PNG image on TBitmap object.</p> <p>If the TBitmap's ,HandleType is set to bmDDB, then the canvas is drawn transparent. But the problem is it doesn't work on all kinds of machines (for ex: Windows on apple computers).</p> <p>When a TBitmap's HandleType property is set to bmDIB, canvas background is drawn white.</p> <pre><code>bmp.HandleType := bmDIB; </code></pre> <p>I tried setting Brush style to bsClear. But it draws the transparent pixels in black color.</p> <p>How can I draw an image preserving its transparency and smooth curved edges.</p> <p>Thanks Pavan.</p> http://stackoverflow.com/questions/1509961/is-there-any-pattern-for-handling-resource-libraries 0 Is there any pattern for handling resource libraries? Pavan 2009-10-02T14:45:22Z 2009-10-02T14:58:57Z <p>Hi,</p> <p>Good morning!</p> <p>Is there any pattern (software design pattern) for loading images or message strings from resource files?</p> <p>-Pavan.</p> http://stackoverflow.com/questions/1443327/dcc-error-e2161-error-rlink32-too-many-resources-to-handle-delphi-error 0 [DCC Error] E2161 Error: RLINK32: Too many resources to handle. Delphi Error Pavan 2009-09-18T08:56:03Z 2009-09-18T19:43:35Z <p>Hi,</p> <p>I get the below error when I try to link resources in a dll.</p> <p>[DCC Error] E2161 Error: RLINK32: Too many resources to handle.</p> <p>Number of resources are more than 10K. </p> <p>I am not sure, if there is any limit on the size of resource names in a dll. <a href="https://forums.codegear.com/message.jspa?messageID=58473" rel="nofollow">https://forums.codegear.com/message.jspa?messageID=58473</a></p> <p>Is there any way to add more resources to a dll. </p> <p>-Pavan.</p> http://stackoverflow.com/questions/1190539/remove-focus-rect-on-control-delphi 0 Remove focus rect on control - Delphi Pavan 2009-07-27T20:54:07Z 2009-07-28T02:04:11Z <p>Hi,</p> <p>Is there any option to not draw "focus rect" on a control in Delphi 2009?</p> <p>-Pavan.</p> http://stackoverflow.com/questions/1179800/use-debug-dcus-option-in-delphi-2009 0 Use debug dcus option in Delphi 2009 ? Pavan 2009-07-24T19:46:41Z 2009-07-26T03:35:47Z <p>Hi,</p> <p>On setting "Use debug .dcus" option to True in project options, method calls in my application does not work as expected.</p> <p>Say for example,</p> <p>I call a method func(a, b, c); </p> <p>In the "func" definition c's value is assigned to "a" and a's values is assigned to "c" and everything goes crazy.</p> <p>I tried to create it in sample application, but with no luck. It is happening only in my live project.</p> <p>Any one faced the same issue?</p> <p>From delphi docs I see that Debug dcus option builds information using stack frames. Anything related to this?</p> <p>Pavan.</p> http://stackoverflow.com/questions/1051050/reference-to-parent-node-in-xsd 2 Reference to parent node in XSD? Pavan 2009-06-26T20:14:16Z 2009-07-19T18:19:41Z <p>Hi</p> <p>In current w3c version of XSD, is there a way to refer to parent node or child node, when defining rules for a particular node?</p> <p>To make it more clear, can i add a rule in child node that compares the parent node value and vice versa?</p> <p>Thanks &amp; Regards, Pavan. </p> http://stackoverflow.com/questions/1082968/delphi-2009-command-line-compiler-using-dcc32-cfg 0 Delphi 2009 command line compiler using dcc32.cfg? Pavan 2009-07-04T21:08:22Z 2009-07-15T14:18:49Z <p>Hi,</p> <p>In Delphi 2009, how can I build a project using command line. I tried using the command line compiler and supplying -a -u -i -r in dcc32.cfg file. But compiler is not recognizing the paths and throwing the error required package xyzPack is not found. </p> <pre><code> -aWinTypes=Windows;WinProcs=Windows;DbiProcs=BDE;DbiTypes=BDE;DbiErrs=BDE -u"C:\MyProj\Output\DCP" -i"C:\MyProj\Output\DCP" -r"C:\MyProj\Output\DCP" </code></pre> <p>and on command line i execute the command :</p> <pre><code> dcc32 "C:\MyProj\MyProject.dpr" -B -E"c:\MyProj\Output\EXE" </code></pre> <p>What am I doing wrong here?</p> <p>Thanks &amp; Regards, Pavan.</p> http://stackoverflow.com/questions/1076861/adding-or-inserting-an-item-to-a-tlistview-always-adds-it-to-the-end-when-groupvi 1 Adding or inserting an item to a TListView always adds it to the end when GroupView is Active Pavan 2009-07-02T21:58:19Z 2009-07-05T21:34:17Z <p>Hi,</p> <p>In Delphi 2009 :</p> <p>When TListView's GroupView is Active, adding or inserting an item to a TListView always adds it to the end of the list, regardless of Index specified as param. When GroupView is set to false it adds it at the specified index. But when it is true, this behavior is not seen. </p> <pre><code>ListView2.Items.Insert(1) </code></pre> <p>The above should insert item at the sepecified index "1", but always adds it to the end of the list. What am I doing wrong here?</p> <pre><code>object ListView2: TListView Left = 32 Top = 40 Width = 161 Height = 233 BorderWidth = 5 Columns = &lt; item AutoSize = True end&gt; DoubleBuffered = False FlatScrollBars = True Groups = &lt; item Header = 'test' Footer = 'aksdlkajsd;flkj' GroupID = 0 State = [lgsNormal] HeaderAlign = taLeftJustify FooterAlign = taLeftJustify Subtitle = 'adgasdfasdf' TopDescription = 'test desc' BottomDescription = 'adsfasdfasdf' TitleImage = 0 ExtendedImage = 0 end item Header = 'test1' GroupID = 1 State = [lgsNormal] HeaderAlign = taLeftJustify FooterAlign = taLeftJustify TopDescription = 'test1 desc' TitleImage = 1 ExtendedImage = 1 end&gt; HideSelection = False IconOptions.WrapText = False Items.ItemData = { 03D80000000500000000000000FFFFFFFFFFFFFFFF0000000000000000000000 0003740077006F00FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000 086100730064006600610073006400660000000000FFFFFFFFFFFFFFFF000000 000000000000000000057400680072006500650000000000FFFFFFFFFFFFFFFF 000000000000000000000000036F006E00650000000000FFFFFFFFFFFFFFFF00 00000000000000000000001866006F0075007200320033003300330033003300 33003300330033003300330033003300330033003300330033003300} MultiSelect = True GroupView = True ParentDoubleBuffered = False ShowColumnHeaders = False TabOrder = 0 ViewStyle = vsReport </code></pre> <p>end</p> <p>and Code to add item @ index 0</p> <pre><code>procedure TForm1.Button1Click(Sender: TObject); var oListItem: TListItem; begin oListItem := ListView2.Items.Insert(0); oListItem.Caption := 'CCCCCCCC'; oListItem.GroupID := 0; end; </code></pre> <p>Thanks &amp; Regards, Pavan.</p> http://stackoverflow.com/questions/1083334/how-to-specify-msbuild-output-folder 1 How to specify MSbuild output folder? Pavan 2009-07-05T01:54:09Z 2009-07-05T17:32:32Z <p>Hi,</p> <p>When I execute delphi 2009 project using MSBuild command line, output always goes to C: drive</p> <pre><code>C:\MyProjects&gt;MSbuild "C:\MyTestProject\Test.dproj" /t:Build /p:OutDir="C:\Output\bin\" </code></pre> <p>Why is this happening?</p> <p>Thanks &amp; Regards, Pavan.</p> http://stackoverflow.com/questions/1060321/how-to-convert-byte-array-to-its-hex-representation-in-delphi 0 how to convert byte array to its hex representation in Delphi Pavan 2009-06-29T20:25:09Z 2009-07-02T23:35:55Z <p>Hi,</p> <p>I have TBytes variable with a value [0,0,15,15]. How can I convert it to "00FF" ?</p> <p>I dont want to use loops, bcoz this logic to be used in time intensive function.</p> <p>(I tried using BinToHex, but I could not get it working with string variable.)</p> <p>Thanks &amp; Regards,</p> <p>Pavan.</p> http://stackoverflow.com/questions/1066153/fade-all-other-windows-of-an-application-when-a-dialog-is-shown 5 Fade all other windows of an application when a dialog is shown? Pavan 2009-06-30T21:24:25Z 2009-07-02T15:55:23Z <p>Hi,</p> <p>How to dim / fade all other windows of an application in Delphi 2009.</p> <p>Form has an AlphaBlend property, but it controls only transparency level. But it would be nice if we can have something like this <a href="http://www.anappaday.com/downloads/2006/09/day-10-jedi-concentrate.html" rel="nofollow">(Concentrated window)</a> . Even stackoverflow.com does that, when we try to insert a link/ image etc in the post.</p> <p>How can we achieve this in a delphi application?</p> <p>Thanks &amp; Regards, Pavan</p> http://stackoverflow.com/questions/1064446/why-doesnt-thashedstringlist-ignore-duplicates 6 Why doesn't THashedStringList ignore duplicates? Pavan 2009-06-30T15:44:06Z 2009-06-30T16:03:50Z <p>I have the following code:</p> <pre><code>var sl: THashedStringList; begin sl:= THashedStringList.Create; sl.Duplicates := dupIgnore; sl.Add('12345'); sl.Add('12345'); sl.Add('12345'); sl.Add('12345'); sl.Add('12345'); sl.Add('12345'); sl.Add('12345'); ShowMessage(IntToSTr(sl.Count)); end; </code></pre> <p>But when I see <code>sl.Count</code>, it gives me 7. What is the bug in this?</p> http://stackoverflow.com/questions/1060833/datasets-tbytes-column-and-sql-varbinary-field-combination 0 Dataset's TBytes column and SQL VarBinary field combination Pavan 2009-06-29T22:09:45Z 2009-06-29T23:39:42Z <p>Hi,</p> <p>select convert(varbinary(8), 1) in MS SQL Server produces output : 0x00000001</p> <p>On assigning the above query to dataset in Delphi, and accessing field value, we get byte array as [1, 0, 0, 0] . So Bytes[0] contains 1.</p> <p>When I use IntToHex() on this bytes array it would result me value as "10000000" .</p> <p>Why is IntToHex considering it in reverse order?</p> <p>Thanks &amp; Regards,</p> <p>Pavan.</p> http://stackoverflow.com/questions/1053541/problem-with-check-for-updates-in-rad-studio 0 Problem with Check for updates in RAD studio Pavan 2009-06-27T20:24:48Z 2009-06-28T11:04:23Z <p>Hi,</p> <p>I installed Embarcadero RAD Studio (Delphi 2009). When the IDE ran for the first time, it downloaded updates and ran the MSI automatically. Accidentally I pressed cancel, instead of ok. </p> <p>So I thought of reopening the studio so that it may check for updates. But this time it didnot happen !!</p> <p>So, I used "Check for updates" from menu options. Surprising it gave me "RAD sudio is upto date".</p> <p>What is the location of these downloaded update files on the system? Where do these files get saved after auto download?</p> <p>Thanks &amp; Regards, Pavan.</p> http://stackoverflow.com/questions/1053541/problem-with-check-for-updates-in-rad-studio/1054718#1054718 4 Answer by Pavan for Problem with Check for updates in RAD studio Pavan 2009-06-28T11:00:39Z 2009-06-28T11:00:39Z <p>Hi,</p> <p>In the following location &lt;\Documents and Settings\All Users\Application Data{65B1AA84-C1DF-4A2E-A28C-E242BD7DE4B3}> </p> <p>there is a file <strong>InstalledUpdates.dat</strong> , open the file in notepad, and you can see the entries of updates installed.</p> <p>Remove the entries from the file and save it.</p> <p>Now click on "Check for updates". It brings up the screen giving available updates and then you can proceed further.</p> <p>Note that updates screen asks to download again, but it doesnt download, as updates are already downloaded and on clicking next it proceeds to screen where it asks for install updates.</p> <p>Thanks &amp; Regards, Pavan.</p> http://stackoverflow.com/questions/1048989/how-to-remove-duplicate-records-in-grid 1 How to remove duplicate records in grid ? Pavan 2009-06-26T12:57:25Z 2009-06-26T17:01:52Z <p>Hi,</p> <p>Good morning !</p> <p>What is the best way to remove duplicate records from grid control? I use Delphi 2009 and devEx quantumGrid component.</p> <p>I tried looping through all the records and when a duplicate record is found then add it to list and apply filter on grid. I found this as time consuming logic. There are also two downsides of this approach.</p> <p>[1] When the duplicate records are considerably more say 10K records then applying filter takes lot of time, because of lot of entries to filter out.</p> <p>[2] Looping through all the records is itself time consuming for big result set like 1M rows.</p> <p>SQL query returns me distinct rows, but when the user hides any column in grid, then it resembles as if there are duplicate records(internally they are distinct).</p> <p>Is there any other way of doing this?</p> <p>Any ideas on this are greatly helpful !</p> <p>Thanks &amp; Regards, Pavan.</p> http://stackoverflow.com/questions/1048572/how-to-precompile-stored-procedures-in-sql-server 0 How to precompile stored procedures in SQL server? Pavan 2009-06-26T11:18:22Z 2009-06-26T13:47:43Z <p>Hi,</p> <p>Good morning !</p> <p>Is there any way to pre compile stored procedures in SQL Server? My requirement goes like this.. I have some stored procedures, which take more time in compiling than executing. So I want to precompile all the stored procedures. It would be nice to precompile them when the db server is started and running.</p> <p>Any ideas on this would be greatly helpful!</p> <p>Thanks &amp; Regards, Pavan.</p> http://stackoverflow.com/questions/1772411/adding-validator-symbol-next-to-control-on-a-delphi-form/1772587#1772587 Comment by Pavan on Adding validator symbol next to control on a Delphi form. Pavan 2009-11-20T19:11:50Z 2009-11-20T19:11:50Z Can we have some custom behavior instead of changing the values of existing control properties. Again, like drawing red circle next to the control. And the big thing is this approach need to work for every control on form, derived or not derived. http://stackoverflow.com/questions/1740636/how-to-save-dom-with-xml/1740718#1740718 Comment by Pavan on How to save dom with xml Pavan 2009-11-16T13:18:32Z 2009-11-16T13:18:32Z Check this URL: <a href="http://articles.techrepublic.com.com/5100-10878_11-6141415.html" rel="nofollow">articles.techrepublic.com.com/5100-10878_11-61414&hellip;</a> http://stackoverflow.com/questions/1728141/tbitmap-drawing-transparent-image-in-delphi-2009/1728255#1728255 Comment by Pavan on TBitmap drawing transparent image in Delphi 2009. Pavan 2009-11-13T13:04:00Z 2009-11-13T13:04:00Z Trying to load a png image which has semi transparent pixels on the corner edges. Using the above procedure those semi transparent pixels are drawn in black color. http://stackoverflow.com/questions/1509961/is-there-any-pattern-for-handling-resource-libraries/1510063#1510063 Comment by Pavan on Is there any pattern for handling resource libraries? Pavan 2009-10-02T15:10:22Z 2009-10-02T15:10:22Z Think of a larger project with multi language support. http://stackoverflow.com/questions/1443327/dcc-error-e2161-error-rlink32-too-many-resources-to-handle-delphi-error/1443537#1443537 Comment by Pavan on [DCC Error] E2161 Error: RLINK32: Too many resources to handle. Delphi Error Pavan 2009-09-18T10:00:46Z 2009-09-18T10:00:46Z I had tried this. Splitting into multiple RES files does not work. http://stackoverflow.com/questions/1443327/dcc-error-e2161-error-rlink32-too-many-resources-to-handle-delphi-error Comment by Pavan on [DCC Error] E2161 Error: RLINK32: Too many resources to handle. Delphi Error Pavan 2009-09-18T09:10:37Z 2009-09-18T09:10:37Z Delphi 2009 and PNG images http://stackoverflow.com/questions/1179800/use-debug-dcus-option-in-delphi-2009/1180096#1180096 Comment by Pavan on Use debug dcus option in Delphi 2009 ? Pavan 2009-07-24T21:05:18Z 2009-07-24T21:05:18Z Hi Mason, thank you for showing interesting in finding a solution to this problem. Actually, I am not using any new features. I have overloaded method with params func1(obj : TObject; a : integer; d : Tdatetime) and func1(obj: TObject; f: Double; d: Tdatetime). First time I observed the erroneous behaviour in this case. So I thought that it could be related with method overloading, and I gave a try by defining two seperate functions but still the same behaviour. And note that, this happens only when I set &quot;Use debug DCUs&quot; option to True.If I dont set that option everything works normally. http://stackoverflow.com/questions/1179800/use-debug-dcus-option-in-delphi-2009 Comment by Pavan on Use debug dcus option in Delphi 2009 ? Pavan 2009-07-24T20:42:58Z 2009-07-24T20:42:58Z It is happening in my own code. To be very specific, I go deep inherited and at 4th level this behavior is seen for all methods. http://stackoverflow.com/questions/1179800/use-debug-dcus-option-in-delphi-2009/1179923#1179923 Comment by Pavan on Use debug dcus option in Delphi 2009 ? Pavan 2009-07-24T20:17:31Z 2009-07-24T20:17:31Z Hi Mason, yes, I rebuilt the whole project group. I deleted all the dcu files and made sure that everything is latest built. But the same behaviour. http://stackoverflow.com/questions/1179800/use-debug-dcus-option-in-delphi-2009 Comment by Pavan on Use debug dcus option in Delphi 2009 ? Pavan 2009-07-24T20:12:58Z 2009-07-24T20:12:58Z @TOndrej : Hello Mr....Then wat else do you expect after spending hours together to find such an incredible feature? http://stackoverflow.com/questions/1076861/adding-or-inserting-an-item-to-a-tlistview-always-adds-it-to-the-end-when-groupvi Comment by Pavan on Adding or inserting an item to a TListView always adds it to the end when GroupView is Active Pavan 2009-07-03T08:30:52Z 2009-07-03T08:30:52Z Please note that this problem occurs when ViewStyle = vsReport http://stackoverflow.com/questions/1076861/adding-or-inserting-an-item-to-a-tlistview-always-adds-it-to-the-end-when-groupvi/1077179#1077179 Comment by Pavan on Adding or inserting an item to a TListView always adds it to the end when GroupView is Active Pavan 2009-07-03T07:09:12Z 2009-07-03T07:09:12Z This problem occurs only when GroupView is active and the items are associated with in groups http://stackoverflow.com/questions/1076861/adding-or-inserting-an-item-to-a-tlistview-always-adds-it-to-the-end-when-groupvi/1077179#1077179 Comment by Pavan on Adding or inserting an item to a TListView always adds it to the end when GroupView is Active Pavan 2009-07-03T07:08:12Z 2009-07-03T07:08:12Z It seems to be not working when ViewStyle = vsReport , if I want to insert at a specified index, then do I need to switch back and forth between ViewStyles ? http://stackoverflow.com/questions/1064446/why-doesnt-thashedstringlist-ignore-duplicates/1064491#1064491 Comment by Pavan on Why doesn't THashedStringList ignore duplicates? Pavan 2009-06-30T16:24:37Z 2009-06-30T16:24:37Z Sorry, dumb mistake. http://stackoverflow.com/questions/1060321/how-to-convert-byte-array-to-its-hex-representation-in-delphi/1060455#1060455 Comment by Pavan on how to convert byte array to its hex representation in Delphi Pavan 2009-06-29T22:13:19Z 2009-06-29T22:13:19Z is there any way to specify byte order instead of accessing it element by element..??