0
votes
0answers
28 views
How can I print SelectedRows in DBGrid using Rave Report ?
To report current record in dataset I have made (one record by page):
RvSystem1.SystemPrinter.FirstPage := DataSet.RecNo;
RvSystem1.SystemPrinter.LastPage := DataSet.RecNo;
So, …
4
votes
4answers
147 views
GetStackTrace in Delphi 7?
Using Delphi 7, how can I get a string representing the stack-trace from an Exception?
try
SomethingDodgy();
except
on E:Exception do begin
// print stack trace
Log.Wr …
0
votes
0answers
25 views
Some components cause block threads
I wrote a Delphi application that have some threads.In one of my forms there is a Shelltreeview component and whenever i click on a node to expand it, it takes some minutes to expa …
0
votes
2answers
116 views
How should I call this native dll function from C#?
Here's the native (Delphi 7) function:
function Foo(const PAnsiChar input) : PAnsiChar; stdcall; export;
var
s : string;
begin
s := SomeInternalMethod(input);
Result := …
1
vote
5answers
231 views
Form is hidden behind other forms when ShowModal is called.
My application is based on modal forms. Main form opens one form with ShowModal, this form opens another with ShowModal, so we have stacked modal forms. There is sometimes a proble …
1
vote
3answers
73 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 …
1
vote
3answers
88 views
Delphi MDI Application Next Window menu item
How would I go about implementing the Ctrl+F6 Next Window action in the Windows menu for an MDI application in Delphi 7?
2
votes
4answers
253 views
Persistent Objects in Windows XP/Delphi 7
Hi Folks:
I am trying to make an AlarmSystem in Delphi 7, Windows XP. I have to register alarms in a Database (MS SQL Server 2000). But what if the server is down??? Well, I can im …
2
votes
0answers
151 views
Persisting more than one object in Delphi 7 [closed]
This is not a duplicate but a follow-up to "Persistent Objects in Windows XP/Delphi 7."
I need to persist more than one object in Delphi 7, and the objects are a class family. RRU …
1
vote
3answers
127 views
How to debug Delphi project?
I'm a .NET developer, but I have got quest - must find errors in Delphi project.
After opening a project (Borland Delphi 7) and trying to debug it ('Run' menu), I've noticed all …
0
votes
7answers
205 views
Processing large images with Delphi for saving as .jpeg
In Delphi 7, I have a library that uses the TCanvas component to output some information. The resulting image is about 4800*6000 pixels and I would like to print it and save it as …
0
votes
3answers
101 views
Get Object Data from a class Procedure or Function?
Is there a way to get Object data from its class procedure or function without instantiate it?
1
vote
7answers
195 views
How do I get the command-line parameters for certain button clicks in a application?
I want to start a program using Delphi code, and "command" it to perform an action, in this case a button click.
I know you can start a program using the command line, but I would …
0
votes
0answers
23 views
How to cast an PSafeArray item into its original type
Hi
I am using an COM in Delphi 7 that was created in C# and one of the methods of a class return an array of an type. However, when Delphi imports it, instead of an array of that …
0
votes
1answer
104 views
How can I get all installed components inside IDE? (Delphi)
How can I get all installed components in TStrings?
I think this code work only in packages:
uses TypInfo, ToolIntf, Exptintf;
procedure GetComponentNames(lst: TStrings);
var …
