2
votes
1answer
70 views
Delph/Builder drag and drop with image, image disappears when leaving control
I have a tree control that implements drag and drop. I use an overridden OnStartDrag() to get my own TDragObjectEx that shows an image while dragging. This works perfectly within the tree control, …
1
vote
3answers
58 views
Delphi 2009 - Detect if component installed
Hi there,
I got some code that I share with another developer. I have a nice debugging module which I leave through out the unit tests but he doesn't have this, so it's a battle of adding and remove …
0
votes
5answers
101 views
Differences between visual component library(vcl) and WinApi
Is there any difference between using vcl components in Delphi and WinApi functions to create gui application.
1
vote
1answer
85 views
How to mark all TClientDataSet records as Inserted?
I have a complex transaction that saves data from multiple TClientDataSets in database.
One of those ClientDataSets always append data to underlaying table, eg. generate INSERT statements, regardless …
2
votes
3answers
93 views
+100
deploy application with OraOLEDB provider
I developed an application that uses Delphi 7, ADO and ORACLE, the provider I use is OraOLEDB (I need use this provider because the BLOB fields support). now I want to distribute this application with …
0
votes
2answers
75 views
Ok to use VirtualProtect to change resource in Delphi?
I'm working o a simple localization effort in D2010. I'm handling all strings on forms because ETM seems like overkill for my needs, as did other 3rd party tools... (although I'm not so sure at this …
1
vote
1answer
91 views
Is learning the Caché database hard coming from relational databases and object oriented programming language like Delphi ?
I am currently running the local version of Caché on my system in order to determine if I can (and will) take on a new possible project.
The current project uses Delphi 7 as a front end calling a …
1
vote
2answers
112 views
Framework for Delphi similar to Castor
Can anyone suggest: a framework for Delphi for work with XML / XSD like the one that makes Castor for JAVA?
Borland XML Data Binding does not offer - he is not flexible.
0
votes
2answers
90 views
Draw and manipulate shapes at run time
What's the best way to draw shapes interactively at run time using Delphi? I need to be able to select, drag and resize the shapes. This will be used to mark up existing images and documents.
This …
2
votes
1answer
97 views
Why does ShGetFolderPath return nil when the folder exists on some Vista pc’s
While testing our apps we found that using ShGetFolderPath to return the AppData path the function returns nil even though the folder exists on a test PC. On the development PC ShGetFolderPath …
1
vote
1answer
104 views
Is Delphi generic TInterfaceList possible?
In Delphi 2010, I have defined a generic TInterfaceList as follows:
type
TInterfaceList<I: IInterface> = class(TInterfaceList)
function GetI(index: Integer): I;
procedure PutI(index: …
0
votes
0answers
54 views
Painting TPaintBox during Drag&Drop with DragImage
In my application (Delphi 2007) I want to drag items from a ListView to a PaintBox and highlight corresponding areas in the PaintBox's OnPaint handler. However I always get ugly artefacts. Do you have …
19
votes
10answers
398 views
Advice for converting a large monolithic singlethreaded application to a multithreaded architecture?
My company's main product is a large monolithic C++ application, used for scientific data processing and visualisation. Its codebase goes back maybe 12 or 13 years, and while we have put work into …
1
vote
2answers
58 views
[delphi] madExcept, checking state of checkbox in custom assistant before attaching additional files to the report
Hi,
I have modified the send-assistant of madExcept with a new checkbox. If the use checks this box, I want to send additional attachments with the bug report (a copy of the users data files).
How …
1
vote
1answer
27 views
Derive IntraWeb forms from parent and not TIWAppForm directly - error in IDE
I have forms in my application that I derive from a common ancestor, like:
TAtFormBaseIW = class( TIWAppForm )
and
TAtFormExplorerIW = class( TAtFormBaseIW )
This works for certain forms, but not …
