Tagged Questions

10
votes
4answers
516 views

Delphi style: How to structure data modules for unit-testable code?

I am looking for some advice about structuring Delphi programs for maintainability. I've come to Delphi programming after a couple of decades of mostly C/C++ though I first learned to program with ...
8
votes
3answers
885 views

Drawing on a DataModule in Delphi

I wonder how difficult it would be to be able to have a custom background or be able to draw on the datamodule canvas somehow so that the relationships of all the datasets can be nicely represented ...
6
votes
2answers
293 views

Example of Delphi refactoring involving data aware controls and datamodules with direct access to db tables

I am trying to define the best way to refactor the project I am working on. Due to lack of good design almost all project is made up of: 1) forms containing business logic 2) huge datamodules (1 ...
6
votes
2answers
403 views

Why would a module be unsavable until another module is loaded?

Most of the units I work on rely on a Data Module. One of the most annoying things I come accross is an error message telling me Module X references another module and cannot be saved until ...
5
votes
4answers
1k views

Delphi DataModule Usage - Single or Multiple?

Hello I am writing an application, there are various forms and their corresponding datamodules. I wrote in a way that they are using each other by mentioning in uses class(one in implementation and ...
4
votes
1answer
492 views

Delphi - How do I Sending a windows message to TDataModule?

I need to send a windows message to a TDataModule in my Delphi 2010 app. I would like to use PostMessage(???.Handle, UM_LOG_ON_OFF, 0,0); Question: The TDataModule does not have a Handle. How I ...
3
votes
2answers
201 views

TDataModule inheritance

When I'm trying to inherit TDataModule Delphi treat descendant class like a form giving them properties like font and Client properties. ("property does not exists" exception on a run-time) ...
3
votes
1answer
235 views

Get TDataModule in design mode

How can I get all created objects (of TDataModule type let's say) in design mode (component writing)?
3
votes
5answers
549 views

Call a TDataModule method in TThread.Execute

In general, is it possible in a TThread.Execute procedure to call a TDataModule method, in which there is no visual activity involved? Thanks to all, Massimo.
3
votes
5answers
337 views

Where should the TClientDataset component be located?

Some background: I want to develop a desktop application, with a SQL database as storage. There is only one user at one time connected to the database. To make maintainance easier, I would like to ...
3
votes
6answers
440 views

How can I search a large XML data set?

I have a DataModule with XML and I need do a search... Unfortunately there are more than 300,000 records and I can't make a loop to check one-by-one. Is it possible to make a query without using a ...
3
votes
3answers
522 views

Access an event on a DataModule from another Form

In Delphi 2009 I have a Form with a procedure MyProcedure that writes to a label on the Form. The form uses a DataModule with a ClientDataSet. When the AfterScroll event of the ClientDataSet is fired ...
3
votes
3answers
785 views

Unit-testing Delphi data modules

If all the business logic is present in a datamodule (TSQLDataSets and TDataSetProviders) how would you refactor the code to make the application more appropiate for unit testing?
2
votes
1answer
210 views

Delphi Prism - DataModule - Data binding

What is the equivalent for Datamodule in Delphi Prism XE? How data binding is supported in Winform applications using Delphi Prism XE?
2
votes
3answers
345 views

Use a Datamodule in a Service Application

I wrote my Win32 App to test and debug. I've created a datamodule with all functionality needed to run the TCP sockets and IBDatabase components. After successfully testing the Datamodule in the ...
2
votes
4answers
588 views

DataModule created before main form

Some database application developers prefer to create a data module before main form by editing the project source file like this begin Application.Initialize; Application.MainFormOnTaskbar := ...
2
votes
3answers
803 views

Creating a custom form designer

I'd like to create a custom "datamodule" in Delphi, a TDataModule like (maybe inherited) class which would have a custom grid based design interface (one component per line, some properties as ...
2
votes
6answers
1k views

Debug Breakpoint doesn´t work only in DataModule unit - Delphi

Debug breakpoint's works fine in all other 38 units of my system. But, in my DataModule, that have +- 10.000 lines, delphi disables then after I launch by F9/F8/F7. In any part of source that unit, ...
2
votes
1answer
447 views

Access Violation when assigning component property on Data Module

I'm on Delphi 2009, and my application contains a data module, which has a custom component named 'Globals' on it. In another form in the application, I'm trying to change a published property (a ...
2
votes
7answers
2k views

Delphi: App initialization - best practices / approach

I run into this regularly, and am just looking for best practice/approach. I have a database / datamodule-containing app, and want to fire up the database/datasets on startup w/o having "active at ...
1
vote
2answers
150 views

Class TADOConnection / TADOTable Not Found

Okay, so my application was working just fine until I decided to clean up the design-time form a bit by creating a DataModule form and moving all database components to it. I'm using Delphi XE2 ...
1
vote
4answers
238 views

separate dataset instances using datamodules in delphi

I am using Delphi6 and have a data module with an ADO DataSet which is used by two forms, formA and FormB. Each form has a Dataset.Open() in OnCreate and Dataset.Close() in OnClose. If both forms are ...
1
vote
1answer
106 views

access a component on one of tabsheets from datamodule

Maybe trivial,but can't seem to figure it out.... I am using RAIZE components i.e rzPageControl1 and one of my sheets is called PRO.It (rzPageControl1) resides on Form1. Now,I have an cxTextEdit4 on ...
1
vote
1answer
116 views

Why does TDataModule not execute actions when I hit shortcut?

Shortcut-handling module of my application contains some sort of 'global' hotkeys, that are linked to their own actions in action list in TDataModule. I did so, because it is part of shortcut ...
1
vote
3answers
794 views

How to write a Remote DataModule to run on a linux server?

i would like to know if there are any solution to do this. Does anyone? The big picture: I want to access data over the web, using my delphi thin clients. But i´would like to keep my server/service ...
0
votes
1answer
87 views

Delphi - Error in using TTable in DataModule in DLL

I have an app that works fine... Porting it to be implemented as a DLL. I have a datamodule that has my Database and TTable components on it... In Design mode, the Database is set to Active. Tables ...
0
votes
3answers
154 views

How to connect in a firebird database in execution time?

I'm having a hard time to make my code work. I want to connect to a database with my application in Delphi 7, but if I change the folder of the application, for example, if I install in another ...
0
votes
1answer
129 views

Why main form can't access to DataModule's images and actions when project is open in Delphi XE?

My Delphi XE application was fine till a couple of days and I can't figure out what is wrong. My project layout: Visual controls are on the main form Actions and image lists for those controls are ...
0
votes
0answers
225 views

One Data module or many, per application? [closed]

Possible Duplicate: Delphi DataModule Usage - Single or Multiple? I just finished a new application and in this one I created several Data Modules instead of one for the all application. ...
0
votes
2answers
1k views

Data Module in Dll with delphi?

I am Tobassum Munir from Pakistan. I created a database program which has a problem. I used Borland Delphi 7.x My Question is "How to create a data module in Dll (Dynamic Link Library) With Delphi? ...