Marco van de Voort

2,517
Reputation
654 views

Registered User

Name Marco van de Voort
Member for 7 months
Seen 1 hour ago
Website
Location Eindhoven, NL
Age 35
Fulltime Delphi devel (doing vision for a machine builder), and FPC devel in the evening.
3h
answered Delphi non visual TTree implementation
21h
comment How to implement a callback method within DLL (Delphi / TJVPluginManager + TJvPlugin)
Are you sure OBones meant to implement this within the jvplugin framework?
1d
answered Circular buffer pointer irregularities
Nov
30
comment (Delphi) Call DLL with function pointer parameter
+1 original diagnosis is correct I think, the second code dragment is still wrong I think, it still uses dyn arrays while communicating with C
Nov
28
accepted GUI Only By Using FPC
Nov
28
answered Delphi 2010 inlining useless?!
Nov
28
answered GUI Only By Using FPC
Nov
28
answered Is $apptype a Best Pratice Comment?
Nov
26
comment “Assembly” vs. “Assembler”
Personally I think it went wrong when the term "National Assembly" was introduced during the French revolution :-)
Nov
26
comment What is the best way to go about writing a simple x86 assembler?
Not even compilers. It's more parsers. The other parts get one chapter max.
Nov
26
revised What is the best way to go about writing a simple x86 assembler?
added 145 characters in body
Nov
26
answered Definition of fix-up?
Nov
26
comment How Should I Implement a Huge but Simple Indexed StringList in Delphi?
In this case not I guess (though I'd have to rewind the original question to which I originally replied). I was hacking synedit late at night when I replied it, and I was frustrated. I assume you know the feeling :-)
Nov
26
comment How Should I Implement a Huge but Simple Indexed StringList in Delphi?
Here are my FPC bindings btw stack.nl/~marcov/bdb.zip
Nov
26
comment C++ Pascal’s triangle
Removed Pascal tag. Not Pascal language related.
Nov
26
revised C++ Pascal’s triangle
Pascal tag is used for pascal language not triangle.
Nov
26
comment moving data between Assembler Registers
That's not the problem. The whole need for ebp-44 is the question. Why doesn't it use ebp-40 throughout the block and save the instructions? It is more likely related to what happens if the constructor yields an exception.
Nov
26
revised How Should I Implement a Huge but Simple Indexed StringList in Delphi?
added 520 characters in body
Nov
26
revised How Should I Implement a Huge but Simple Indexed StringList in Delphi?
added 957 characters in body; deleted 4 characters in body
Nov
26
comment How Should I Implement a Huge but Simple Indexed StringList in Delphi?
lkessler: If it is for an user app, forget it. mghie: I need to have more room to comment on you, I'll do that in the post.
Nov
25
accepted moving data between Assembler Registers
Nov
25
revised Which embedded (microcontroller) platform to move to
added 176 characters in body; added 96 characters in body
Nov
25
comment Which embedded (microcontroller) platform to move to
compiler is different. 8-bit PIC is not gcc based afaik, 16 and 32-bit lines are. Though it doesn't matter much in practice. Recycling programmer and debugger HW is a minor benefit too. But of course that only makes sense if you like the device.
Nov
25
answered Which embedded (microcontroller) platform to move to
Nov
25
comment Code that causes physical effects in hardware?
Strictly speaking wiping flash is still software.
Nov
25
answered How Should I Implement a Huge but Simple Indexed StringList in Delphi?
Nov
25
revised moving data between Assembler Registers
added 29 characters in body
Nov
25
revised moving data between Assembler Registers
added 9 characters in body
Nov
24
answered moving data between Assembler Registers
Nov
24
comment Delphi 64-bit Preview Compiler available?
While COM has improved significantly in the last months, it is probably not up to snuff enough for Office integration.
Nov
24
accepted Untyped Pointer in Pascal
Nov
24
revised Building a GUI Form Using Pascal
added 162 characters in body
Nov
24
accepted Building a GUI Form Using Pascal
Nov
24
answered Building a GUI Form Using Pascal
Nov
24
revised Untyped Pointer in Pascal
pointer arithmetic added.
Nov
23
answered Tutorial for Pascal/Delphi for C++-Coders
Nov
23
comment How to do OOP with Pascal?
-1 Pretty pathetic. Despite all the cloud, Python jobs are not exacty easy to find either. Delphi is way easier.
Nov
23
comment How to do OOP with Pascal?
All Object Pascal is a non-standard extension. The object Pascal draft was never ratified.
Nov
23
answered Untyped Pointer in Pascal
Nov
23
comment Large dynamic array - slow writing
fastmm will hide it a bit, maybe 100% faster, but if you go another magnitude 2, that will be gone already. Better rethink your structure
Nov
16
answered Why does Delphi 2009 sometimes (more often that not) insist I build?
Nov
16
answered TIdHTTP in Indy 10
Nov
16
revised Problem with converting Delphi form to Lazarus
updated some unclear points
Nov
16
accepted Problem with converting Delphi form to Lazarus
Nov
16
answered Problem with converting Delphi form to Lazarus
Nov
15
comment rotating bitmaps. In code.
The problem with such libraries is that the transformation of the format you have to the format the library uses, is usually already in the magnitude of the possible gain.
Nov
15
comment rotating bitmaps. In code.
Done, I updated the question
Nov
12
answered How can I display Unicode strings while debugging on linux?
Nov
12
answered How to automate perl script in Delphi?
Nov
9
comment What is the best way to convert Bytes to Cardinal and vice versa
The classic union trick then? It worked on old bytecode languages (UCSD Pascal)