Forum: Pascal and Delphi Jun 30th, 2009 |
| Replies: 1 Views: 533 if anyone cares to know, you can use COM interop. (Creates a tlb file using your C# classes and converts them into delphi which can then be imported into your delphi program. So you have all the... |
Forum: Pascal and Delphi Jun 24th, 2009 |
| Replies: 1 Views: 533 Heya,
I would like to know how to pass a packed record in delphi into a C# dll procedure. Any ideas? |
Forum: Pascal and Delphi Jun 17th, 2009 |
| Replies: 0 Views: 299 Hi,
I'm using CodeGear RAD Studio for compiling a delphi.NET application.
Is there anyway to check what .NET version is being used to compile the application and how would you set the .NET version... |
Forum: Pascal and Delphi Jun 10th, 2009 |
| Replies: 4 Views: 549 |
Forum: Pascal and Delphi Jun 10th, 2009 |
| Replies: 4 Views: 549 Hey,
I would like to know how to only allowing one instance of a program to run at once. Ie: You can't run the application multiple times creating multiple processes. I only want to allow one... |
Forum: Pascal and Delphi Mar 10th, 2009 |
| Replies: 2 Views: 682 Thanks for the reply. This link kind of gives me what I wanted
http://w-shadow.com/blog/2006/08/27/how-to-get-the-cpu-usage-of-a-process/ |
Forum: Pascal and Delphi Mar 5th, 2009 |
| Replies: 2 Views: 682 Hi,
Does anyone know of some source code or methods that can be used to monitor the CPU utilization in Delphi? |
Forum: Pascal and Delphi Feb 23rd, 2009 |
| Replies: 0 Views: 372 Just a short question..
Does declaring your program as "unsafe" mean your program's memory is no longer managed? |
Forum: Pascal and Delphi Feb 15th, 2009 |
| Replies: 3 Views: 500 I would just like to know how to create and use a "pointer" in Delphi.NET. If you can give me an example that would be great |
Forum: Pascal and Delphi Feb 13th, 2009 |
| Replies: 3 Views: 500 Hi, I would like to know how to port this code in Delphi
a : Word;
b : ^Word;
implementation
{$R *.dfm}
procedure TForm1.Button1Click(Sender: TObject);
begin
b := @a;
Inc(b^); |