Roddy

10,254
Reputation
2486 views

Registered User

Name Roddy
Member for 1 year
Seen 13 mins ago
Website
Location UK
Age 50
Nov
27
comment Is 23,148,855,308,184,500 a magic number, or sheer chance?
Scary. I hgad to "favourite" my own question just to get it past the 127 value!
Nov
25
awarded  Popular Question
Nov
23
comment What programming language do you wish would catch on?
@Dan, It's not that assembler interests me - far from it - it's that coders who don't understand anything about assembler are IMO like architects who don't understand the properties of steel and concrete
Nov
19
comment Opening a file with path in malloc
+1 - good catch!
Nov
19
answered Client/Server: Integer always received as 1 (C-programming)
Nov
18
comment Logging safely from a worker thread?
I'm not familiar with signals in QT, but can the actual message to be logged form part of the "signal"?
Nov
15
awarded  Nice Answer
Nov
13
awarded  Popular Question
Nov
13
awarded  Good Question
Oct
27
awarded  Necromancer
Oct
27
comment Which Typesafe Enum in C++ Are You Using?
Why not ask stackoverflow? :-) stackoverflow.com/questions/934183/…
Oct
13
awarded  Popular Question
Oct
8
awarded  Notable Question
Oct
7
answered C++: Does return statement copy values
Oct
2
awarded  Popular Question
Sep
30
comment how to quickly verify the case sensitive filename really exists
Just a small point, butg iven a file "C:\Folder\File.txt"; FileExistsEx("c:\fOlDeR\File.txt") will return true, which may not be what you wanted...
Sep
22
awarded  Popular Question
Sep
21
asked Best way of validating modal dialog fields?
Sep
8
awarded  Popular Question
Sep
5
awarded  Nice Answer
Sep
5
comment Do standard windows .ini files allow comments?
Yes, the spec link isn't really very helpful.
Sep
4
revised Do standard windows .ini files allow comments?
added 278 characters in body
Sep
4
asked Do standard windows .ini files allow comments?
Sep
4
comment How bad is dynamic casting?
class name string tables? Surely it's just working with VMT pointers...??? Well, I guess I need to measure it...
Sep
1
revised sizeof on a class inheriting from a base class with a virtual function
formatted :-(
Sep
1
accepted How can I visualise the memory (SRAM) usage of an AVR program?
Aug
31
revised Adding negative and positive binary?
fix typo
Aug
29
comment Licensing question when running Windows XP under Windows XP (using vmware)
From the TechNet FAQ: You may not use the evaluation software for software development or in an application development environment.
Aug
28
comment threading concepts
"treading in c and also python" !! Don't forget to wipe your feet before you come in the house...
Aug
28
revised TTabSheet hints in Delphi
changed to IndexOfTabAt
Aug
28
comment TTabSheet hints in Delphi
TabAtPos doesn't exist, you meant IndexOfTabAt(x,Y). This so nearly works right. Except that as you move from one tab to another, the hint doesn't update or re-show.
Aug
28
accepted How can I access netstat-like Ethernet statistics from a Windows program
Aug
26
comment How to write “good” user interface text?
Like warm beer, rounders, and not asking "Hi, how are you today?" unless you actually want to know the answer.
Aug
26
revised How to write “good” user interface text?
added 192 characters in body
Aug
25
comment How to write “good” user interface text?
It's a British thing... :-)
Aug
25
asked How to write “good” user interface text?
Aug
24
revised C++ abstract class
edited tags
Aug
24
comment How to pinpoint where a long function returns
@Crashworks. I checked it myself using BCB2009, and on a small test case it works a treat!
Aug
24
revised Why are c/c++ floating point types so oddly named?
Made CW. No real answer here.
Aug
24
comment How to pinpoint where a long function returns
@Crashworks - You'll get a call stack, but will the actual line with the appropriate 'return' statement be listed, or would it be a generic compiler-generated 'return-and-tidy' at the end of the function? @Baiyan - Did this actually work for you?
Aug
24
comment How to pinpoint where a long function returns
+1 for a good suggestion (and I love RAII), but I'm not sure this will actually do what you want: You will hit the breakpoint on return, but the compiler will probably only emit a single call to the destructor and then JMP there after setting the return value. So, while you hit the breakpoint, you may still have no idea how you got there. This behaviour is likely to be compiler-dependent, so you may get lucky, but I wouldn't bet on it. Also, you'll hit the breakpoint if your function throws an exception, which may be useful to you as well.
Aug
22
awarded  
Aug
21
comment How to pinpoint where a long function returns
@Baiyan, I'm at a loss to see how knowing which line the function is returning on is going to help you solve the problem. The 'return' itself isn't the error.
Aug
21
comment How to pinpoint where a long function returns
@Baiyan, I know all about those kind of commercial issues :-( but I feel you don't yet really understand the operation of the code in LongFunction(). And if that's the case, how can you realistically estimate how long it will take to fix a bug in it?
Aug
21
comment How to pinpoint where a long function returns
@binary, well, I wouldn't call it /that/ unhelpful ;-) The question as it stands is more like "I need to go from London to New York for a meeting - Which bus should I take?"
Aug
21
comment Can I get TComboBoxEx to be the same Height as TComboBox?
Wow - neat fix! I suggest you add it as the "accepted answer" to your own question. Well worth an upvote!
Aug
21
answered Can I get TComboBoxEx to be the same Height as TComboBox?
Aug
21
comment How to pinpoint where a long function returns
@sadsido: That was the question, but it's not actually the problem... The problem is a chunk of code that's not behaving as expected, and seems to be not well structured/documented/instrumented/etc.
Aug
21
answered How to pinpoint where a long function returns
Aug
20
answered Overhead due to use of Events