Allen Bauer

2,835
Reputation
559 views

Registered User

name Allen Bauer
member for 1 year
seen 21 hours ago
website
location
age
1d
accepted Adding forms and frames to packages
1d
awarded  Mortarboard
Nov
30
comment ShLwApi.StrFormatByteSize and Delphi 2010 Unicode
That's a bug in the header translation. The unadorned API should be directed to the "W" version. In fact, it is declared with PChar, which in D2009 and D2010, is the same as PWideChar. So even if you called it, it would be wrong.
Nov
27
comment Is it good practice to use a Dynamic Array in an object field ?
"this can cause eventual errors from the memory manager" Would you mind elaborating? What does that mean?
Nov
27
comment Is it better to use TThread’s “Synchronize” or use Window Messages for IPC between main and child thread?
Ever since D6, TThread doesn't use SendMessage anymore. It uses a thread-safe work queue where the "work" intended for the main thread is placed. A message is posted to the main thread to indicate that work is available and the background thread blocks on an event. When the main message loop is about to go idle, it calls "CheckSynchronize" to see if any work is waiting. If so, it processes it. Once a work item is completed, the event on which the background thread is blocked is set to indicate completion. Introduced in D2006 timeframe, TThread.Queue method was added that doesn't block.
Nov
16
accepted How to import a function from a DLL made in Delphi?
Oct
26
accepted Trouble with detecting mouse movements in a TcxGrid when dragging files from Windows Explorer
Oct
25
answered Get Correct Relative Path in Delphi
Oct
25
answered Trouble with detecting mouse movements in a TcxGrid when dragging files from Windows Explorer
Oct
22
comment Can Delphi 5 generate a .PDB file that VS can use?
Agreed. This is extremely frustrating to many tool vendors, not just us on the RAD Studio team. Maybe MS should support the Turbo Debugger format which is actually documented and we even provide a library to read them. :-).
Oct
4
comment Difference between “strict private” and “protected” Access Modifiers in Delphi?
So who defined what "standard OOP" is? I was unaware that there was some OOP standards board. OOP merely defines a paradigm centered around encapsulation, inheritance, and polymorphism. There is no strict (pun intended) rule about how access modifiers are to be implemented. To better clarify, the access rules implement implicit "friendship" at the unit level without adding explicit syntax to do so.
Oct
3
awarded  Popular Question
Oct
1
answered System wide keyboard hook on Vista and later
Sep
26
answered How to recreate a function retrieving the highest element of an object?
Sep
23
awarded  Yearling
Sep
22
comment exception EInoutError in the Data Module at 000C50BC I/O Error 103
Did you check the file while it was running? Could be due to buffering, so the data may not be fully written until the app terminates or the output file is closed.
Sep
21
answered exception EInoutError in the Data Module at 000C50BC I/O Error 103
Sep
9
comment String concatenation VS string format
That is identical to s := V1 + V2; Concat is a compiler "magic" function that is collapsed to call the same internal helper as <str> + <str>.
Aug
25
accepted Why is DebugHook not set to 1 in my Delphi add-in DLL?
Aug
18
awarded  Enlightened
Jul
22
accepted Delphi 2009 only halts at breakpoints in one unit
Jul
21
answered Delphi 2009 only halts at breakpoints in one unit
Jul
20
answered How does one change the text on the clipboard without altering the format information?
Jul
18
answered Why is DebugHook not set to 1 in my Delphi add-in DLL?
Jul
14
comment How to get the address of Result?
Yes, that was a copy/paste error. I fixed it. Thanks for catching that.
Jul
14
revised How to get the address of Result?
added 1 characters in body
Jul
14
accepted How to get the address of Result?
Jul
13
awarded  Nice Answer
Jul
13
answered How to get the address of Result?
Jul
12
comment How to declare a pointer(byte^)?
PByte is declared in System, so there should be no need to "use" Windows.
Jul
10
answered Why Do You Use Delphi?
Jun
30
awarded  Enlightened
Jun
30
accepted Opening a TStream on stdin/stdout in a Delphi console app
Jun
30
awarded  Nice Answer
Jun
29
answered Opening a TStream on stdin/stdout in a Delphi console app
Jun
26
awarded  
Jun
18
comment Problem with Delphi 2009 and old-style object type
Minor nit: 1995 ;-) Trust me. My wife will never let me forget that date.
Jun
14
awarded  Nice Answer
Jun
13
awarded  Scholar
Jun
12
accepted How do I keep Vista from killing my program on exceptions?
Jun
12
answered How do I keep Vista from killing my program on exceptions?