Pavan

260
Reputation
80 views

Registered User

Name Pavan
Member for 5 months
Seen yesterday
Website
Location Amersfoort
Age 26
A Professional software developer
Nov
20
comment Adding validator symbol next to control on a Delphi form.
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.
Nov
20
asked Adding validator symbol next to control on a Delphi form.
Nov
19
asked Working with IME names in Delphi
Nov
16
comment How to save dom with xml
Check this URL: articles.techrepublic.com.com/5100-10878_11-61414…
Nov
16
answered How to save dom with xml
Nov
13
comment TBitmap drawing transparent image in Delphi 2009.
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.
Nov
13
asked TBitmap drawing transparent image in Delphi 2009.
Oct
2
comment Is there any pattern for handling resource libraries?
Think of a larger project with multi language support.
Oct
2
asked Is there any pattern for handling resource libraries?
Sep
18
comment [DCC Error] E2161 Error: RLINK32: Too many resources to handle. Delphi Error
I had tried this. Splitting into multiple RES files does not work.
Sep
18
comment [DCC Error] E2161 Error: RLINK32: Too many resources to handle. Delphi Error
Delphi 2009 and PNG images
Sep
18
asked [DCC Error] E2161 Error: RLINK32: Too many resources to handle. Delphi Error
Jul
28
awarded  Peer Pressure
Jul
27
accepted Problem with Check for updates in RAD studio
Jul
27
asked Remove focus rect on control - Delphi
Jul
24
comment Use debug dcus option in Delphi 2009 ?
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 "Use debug DCUs" option to True.If I dont set that option everything works normally.
Jul
24
comment Use debug dcus option in Delphi 2009 ?
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.
Jul
24
comment Use debug dcus option in Delphi 2009 ?
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.
Jul
24
comment Use debug dcus option in Delphi 2009 ?
@TOndrej : Hello Mr....Then wat else do you expect after spending hours together to find such an incredible feature?
Jul
24
asked Use debug dcus option in Delphi 2009 ?
Jul
5
revised Adding or inserting an item to a TListView always adds it to the end when GroupView is Active
edited body
Jul
5
asked How to specify MSbuild output folder?
Jul
4
asked Delphi 2009 command line compiler using dcc32.cfg?
Jul
3
awarded  Critic
Jul
3
comment Adding or inserting an item to a TListView always adds it to the end when GroupView is Active
Please note that this problem occurs when ViewStyle = vsReport
Jul
3
revised Adding or inserting an item to a TListView always adds it to the end when GroupView is Active
added 1908 characters in body; added 4 characters in body; deleted 4 characters in body
Jul
3
comment Adding or inserting an item to a TListView always adds it to the end when GroupView is Active
This problem occurs only when GroupView is active and the items are associated with in groups
Jul
3
comment Adding or inserting an item to a TListView always adds it to the end when GroupView is Active
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 ?
Jul
2
asked Adding or inserting an item to a TListView always adds it to the end when GroupView is Active
Jun
30
asked Fade all other windows of an application when a dialog is shown?
Jun
30
comment Why doesn’t THashedStringList ignore duplicates?
Sorry, dumb mistake.
Jun
30
asked Why doesn’t THashedStringList ignore duplicates?
Jun
29
comment how to convert byte array to its hex representation in Delphi
is there any way to specify byte order instead of accessing it element by element..??
Jun
29
asked Dataset’s TBytes column and SQL VarBinary field combination
Jun
29
comment SQL Query convert integer to hex and hex to integer
Converting it to VARBINARY will give data in hex value . String operations cannot be performed on it
Jun
29
comment how to convert byte array to its hex representation in Delphi
IntToHex(IntBytes^, 8); generates the string in reverse order. If you see my question i need it as "00FF", but the above function generates it as "FF00" .. Can i specify byte order ?
Jun
29
comment how to convert byte array to its hex representation in Delphi
it is TBytes and not a single byte.. and i dont want to use loops to compute each and every value. If I am not wrong, your logic works per byte..
Jun
29
asked how to convert byte array to its hex representation in Delphi
Jun
29
awarded  Scholar
Jun
28
awarded  Self-Learner
Jun
28
awarded  Teacher
Jun
28
answered Problem with Check for updates in RAD studio
Jun
27
asked Problem with Check for updates in RAD studio
Jun
27
awarded  Supporter
Jun
26
revised Reference to parent node in XSD?
In other words
Jun
26
asked Reference to parent node in XSD?
Jun
26
comment How to precompile stored procedures in SQL server?
Hi, I am using Sql Server 2005, and in the stored procedure contains a plain insert statement. Index views exists on the table. So preparing execution plan is consuming time. Any idea how we can prepare all this ahead and keep sp ready for execution?
Jun
26
awarded  Commentator
Jun
26
comment How to remove duplicate records in grid ?
Hi, it sounds good, but i did not understand what is meant by "something fast and simple" . Sum of all chars will not give me unique values.. because string "ba" is differnt from "ab", but sum will give me the same value, if i am not wrong. It would be great and helpful if you have any idea for calculating the value of calculated column.
Jun
26
comment How to remove duplicate records in grid ?
Hi, I am glad to hear that it can be implemented manually. But is there any other way apart from looping all grid records and applying filter? I mean, is there any possibility of avoiding adding duplicate rows to grid (if we know the hidden column, prior to populating grid)?