1
vote
5answers
380 views
Getting BPL Versions at program start.
Is it possible to check what version of BPL (ie Rtl70.BPL, Indy70.bpl etc) are installed on a clients computer when the program starts?
I have had some programs crash because the BPL on the …
3
votes
4answers
298 views
Can you Catch an Exception after the main application unit has ended?
In one of our application im getting an exception that i can not seem to find or trap.
...
Application.CreateForm(TFrmMain, FrmMain);
outputdebugstring(pansichar('Applicati …
4
votes
5answers
845 views
Delphi Project Needing runtime Packages, even with runtime Packages off.
My Delphi7 project will not run on my clients computer if i don't have a few of the runtime packages in the path. eg rtl70.bpl
I have Build with runtime packages unticked, so shouldn …
3
votes
5answers
540 views
Can you override MessageDlg calls to a Custom TForm/Dialog?
I have been using code similar to this
MessageDlg('', mtWarning, [mbOK], 0);
throughout my project, (thanks to the GExperts Message Dialog tool :) ) and i was wond …
3
votes
3answers
483 views
safe(st) way rename a delphi Project
Im sure this will be a simple one but have a project that started as a test.
When it was created it was saved as "Project2.dpr"
Now the test is no longer a 'test', i would like to cha …
3
votes
6answers
452 views
Delphi Short Cut to add Date and Name Comment
Does anyone know of a short cut to place my name and the date where the cursor is i.e.
//021208 DarkAxi0m
so i don't keep check what the date is when i'm adding c …
0
votes
2answers
168 views
Create a 2 dimension Quickreport
I think im asking for the right type of report from Quickreport.
What we have is a simple table,
gauge,site,value
Gauge and site are the keyfields, (ther …
1
vote
1answer
153 views
Dataset Update Filter Location
This has always bugged me to what is the best way to do the following...
with a simple one to many db, when you have 2 tables/grids on a form and the 2nd one filtered by the first.
…
4
votes
3answers
427 views
In Delphi, is outputdebugstring thread safe?
Simple question i belive, is
outputdebugstring(pansichar(''));
Thread safe?
I/We have been using it in threads for debugging, and i never occurred to me i …
1
vote
4answers
964 views
Delphi, How to get all local IPs?
Any one know a way in delphi get a simple list (eg tstrings) of the local ip address.
I have had a look at the other related question, and cant seem to get my head around converting them to …
0
votes
2answers
147 views
AV When using a Procedure from one Component called by another
Im not sure if i have explaned this the best i can but, here we go...
I have 2 Custom components on a form, Which are link together at design time through the IDE. Whenever i call a procedu …
2
votes
1answer
275 views
Delphi: Canceling a TDataSet.Post in an OnBeforePost Event
On our main data entry screen, we have an OK/Cancel dialog in the OnBeforePost event.
OK lets things take their course
Cancel right now does a Dataset …
0
votes
1answer
99 views
DBCtrlGrid with a Lookup ComboBox
has anyone managed to get a DBLookupComboBox to work with a DBCtrlGrid?
a pre filled in DBComboBox works ok, but it dose not work to well for lookup tables;
delphi 7
…
3
votes
2answers
72 views
Get BPL File Name
From within a BPL, is it possible to get its own file name? e.g. C:\foo\bar.bpl
(dynamically loaded and delphi7, if it matters)
…
1
vote
3answers
75 views
Returning a string from a BPL function
have a function, simplified below, that is exported from a BPL
function DoA(amount: currency; var Info: string): Currency; stdcall;
begin
result := amount * 19;
Info:= 'Some Te …
