Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
5
votes
1answer
417 views

How do I get started making Web sites with Delphi Prism?

I'm new to Delphi Prism 2011. Where can I find step by step instructions for writing and testing a basic Hello,world type website? I need to write, run and debug a simple website to see how the IDE ...
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
2answers
102 views

How do you assign “null” to a Delphi.net Nullable

How do you assign null to a Delphi.net Nullable? I have a field which previously contained a value , I need to clear its value back to null. depth : Nullable<Double>; Procedure ClearDepth; ...
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
1answer
493 views

Creating same-width hit-zones on MenuItems in ASP.NET 2.0 Menus that include MenuItems added at runtime

In an ASP.NET 2.0 application, I want to permit a user to select a MenuItem, even if the user does not click the actual text of the MenuItem, but instead only clicks the highlight area that ASP.NET ...
1
vote
2answers
165 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
2answers
80 views

Delphi.NET Socket BeginSend callback never get called

Recently, i found my application, which's developped under Delphi.NET, the socket callback function never get called, causing the socket message cannot be sent to the target client. Is it possible a ...
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 ...
0
votes
1answer
21 views

.NET GC Clarification Needed for non .net classes in a .net project

I am combating some memory issues in my app and am finally managing to get to the bottom of it. I have had an example recently where my process memory went up to 800mb when processing a task. I have ...
0
votes
2answers
195 views

Port Delphi.NET (ASP.NET 1.1) Project to ASP.NET 3.5 using C# in Visual Studio

i have an ASP.NET project written in Delphi.NET with Borland Studio 2006. Well it seems that the .NET Version is 1.1 and i need to port it to 3.5. My problem is that the project is a .bdsgroup and ...
0
votes
5answers
384 views

How Do I serialize a COM object in .Net?

I need serialize a Com Object using .net using c# or Delphi .Net is this possible? Bye.