Tagged Questions

15
votes
39answers
10k views

Will you use Delphi Prism

CodeGear announces that their Next .Net product which is known as Delphi Prism Will be RemObjects's Oxygene. Oxygene has many nice features that not found in Delphi or C#, and I think it will be a ...
4
votes
2answers
519 views

Incorrect “Unable to start debugging…Unable to attach to ASP.NET worker process” message in Delphi 2007 for .NET

I have seen this for a long time, and finally decided to put the question up here. I have some applications that I need to maintain that were written in Delphi 2007 for .NET (ASP.NET 2.0). Normally, ...
3
votes
1answer
133 views

Delphi for .NET does not find shared files in the .NET library search directories ("[DCC Error] F1026 File not found)

I have been trying to track down a problem with an installation of RAD Studio 2007 for some time. When compiling an ASP.NET application build with the .NET personability, I get an "[DCC Error] F1026 ...
3
votes
3answers
527 views

Detect if my application is running under the IDE “Delphi 2007 .Net”

How can I detect if my application is running under the IDE "Delphi 2007 .Net", there is something like DebugHook? Bye.
2
votes
1answer
169 views

How can i convert my Delphi.NET project to Delphi Prism?

There's a project of mine wrotten in Delphi.NET, and i want it to be run in Linux (which will be Ubuntu, or RedHat), and i have to convert it to Delphi Prism. So how can i convert it from Delphi.NET ...
2
votes
2answers
154 views

type casting to a dynamic array

Given the following: Type TSomeTypeArray = array of SomeType; var anArray: array of SomeType; function GetSomeTypeArray: TSomeTypeArray; I want to write anArray = GetSomeTypeArray(); but the ...
1
vote
2answers
485 views

Double quotes being replaced with ' + CHAR(34) + ' in SQL using ASP.NET

I am using SQL Server 2008 Web Edition and it seems my SQL queries are automagically having the double quotes replaced with ' + CHAR(34) + '. I am trying to pin down why this is happening, I am using ...
1
vote
2answers
164 views

How Unicode strings can be passed from a managed to an unmanaged function

I will really appreciate anybody's help about how a Unicode string can be passed (marshaled) from a managed (Delphi .NET) to an unmanaged (Delphi's Win32 DLL) function. The managed environment ...
1
vote
1answer
293 views

Debug .NET app with IIS7 and Delphi.NET - Use aspnet_regiis.exe to configure the local IIS web server

I have been trying to set up local debugging for my ASP.NET app in Delphi and am getting the error above. I have used the aspnet_regiis.exe tool with the following: Aspnet_regiis.exe -s ...
1
vote
2answers
274 views

Disable ECO In Delphi

How i can disable ECO in delphi .Net?
0
votes
1answer
73 views

SQL Viewstate in Delphi ASP.Net - How to override PageStatePersister

I am following this example of storing the view state in the database. However, I have come to the end of the page and its asking me to override a property .. I have no idea how to achieve this in ...
0
votes
0answers
250 views

Delphi XE - maintaining VCL.NET readiness? [closed]

Possible Duplicate: Why are there so many $IF DEFINED(CLR) in the VCL/RTL? I'm comparing the VCL/RTL source between Delphi 2010 and Delphi XE. I find it quite interesting that the CLR ...