Andreas

2,309
reputation
303 views

Registered User

name Andreas
member for 1 year
seen 11 hours ago
website
location Germany
age
1d
comment Application is visible on taskbar?
I think you gave too less information. An VCL Delphi application always has a taskbar button, so the answer would be "You know because it is always there".
2d
awarded  Yearling
Nov
27
answered which is the correct text comparison method for an international application…AnsiCompareText or CompareText?
Nov
26
answered Delphi 5 IDE command-line return codes
Nov
8
accepted Is There A Fast GetToken Routine For Delphi?
Nov
8
answered Is There A Fast GetToken Routine For Delphi?
Oct
30
comment Case-insensitive Bob Jenkins Hash?
CompareText() and UpperCase() are also wrong for AnsiStrings because they only operate on ASCII strings.
Oct
26
accepted Delphi 2010: New RTTI, setting propertyvalue to arbitary value
Oct
21
answered Delphi 2010: New RTTI, setting propertyvalue to arbitary value
Oct
16
comment How to hunt a Heisenbug
@onnodb: The enum type is nothing else than a Byte/Word/Integer (depending on the $MINENUMSIZE). And without initialization it can contain data that fits into the Integer range but not into the enum range. The same is for Sets. A Set can consists of up to 32 Bytes. And without initialization the bits can be set for "elements" that aren't elements.
Oct
13
awarded  Enlightened
Oct
13
awarded  Nice Answer
Oct
10
comment Delphi - most successful applications developed
Because it contains a DVCLAL resource and has DFM file resources in the monolithic EXE ;-)
Oct
7
comment How to call a dll with “_pascal calling convention” from Delphi ?
Better make it PAnsiChar and AnsiString because in C a "char" is a 1 byte char.
Oct
2
awarded  Enlightened
Oct
2
awarded  Nice Answer
Oct
1
accepted How can I make a component disappear in the form designer?
Oct
1
answered How can I make a component disappear in the form designer?
Oct
1
answered how can i make a TCheckbox without transparent text (ie: it ignores themes)?
Sep
18
comment What is the best way to stop an application being copied and used without the owner’s permission?
Do you mean the SAP model? :-)
Sep
10
awarded  Enlightened
Sep
10
awarded  Nice Answer
Sep
7
accepted Delphi & JVCL - JvWizard, page add at runtime
Sep
6
answered Delphi & JVCL - JvWizard, page add at runtime
Sep
6
accepted Is there a way to install Delphi 2010 on Windows 2000
Sep
6
answered Is there a way to install Delphi 2010 on Windows 2000
Sep
6
comment Is there a way to install Delphi 2010 on Windows 2000
@dummzeuch: .NET 2.0 is not enough, they require .NET 3.5 which is not available for Windows 2000. I don't know what requires .NET 3.5 in the IDE but the installer has it as a prerequisite.
Sep
6
comment Is there a way to install Delphi 2010 on Windows 2000
I can also target Windows 95 with Delphi 2010 if I modify the System.pas. But targeting a system is something completely different than running the application (aka IDE) that targets the system.
Sep
1
comment Delphi 7 forms, anchors not working in Vista
It depends on how many WH_CALLWNDPROC window hooks are system-wide installed. (Logitech for example uses WH_CALLWNDPROC hooks, and so does the TActionManager).
Aug
31
answered Delphi 7 forms, anchors not working in Vista
Jul
19
awarded  Scholar
Jul
17
awarded  Student
Jul
17
revised ImageList_Add returns -1 on PC controlled with pcAnywhere
edited tags; deleted 2 characters in body
Jul
16
accepted Why my child class doesn’t inherit all methods from the parent class?
Jul
16
comment How to leak a string in Delphi
It doesn't AV because in Delphi 2009 the "const" looses its functionality if $STRINGCHECKS are ON.
Jul
16
answered Why my child class doesn’t inherit all methods from the parent class?
Jul
15
asked ImageList_Add returns -1 on PC controlled with pcAnywhere
Jul
13
awarded  Nice Answer
Jul
13
accepted How to raise exceptions in Delphi?
Jul
13
answered How to raise exceptions in Delphi?
Jul
11
accepted How to temporarily turn off “snap-to” (anything) in Delphi IDE /visual designer (D2007)
Jun
26
awarded  
Jun
17
comment Is each source line address in a detailed MAP file a valid address to insert a Int3h?
Not all code lines are executable code. For example the System._LStrToPChar function has data (@@zeroByte) in the code segment.
Jun
16
accepted Installing multiple library versions in Delphi / C++Builder
Jun
15
comment How are the basic Delphi types related to each other?
"The LongInt and LongWord types will become 64-bit types". That's something that was discussed and no consensus was found, especially because they were advertised as the non-generic 32 bit types since the TurboPASCAL days. And Pointers in the 16 bit land where 20 bit large not 32 bit: "(Seg16 << 4) + Ofs16)"
Jun
15
answered Installing multiple library versions in Delphi / C++Builder
Jun
15
answered How are the basic Delphi types related to each other?
Jun
15
comment Accidentally created a virus?
That's interesting, because Avira doesn't warn me about a virus in all our applications. Maybe it is the combination with other units.