0
votes
2answers
41 views
Strange GAC error in ASP.Net application
I'm experiencing a strange failure when trying to view my website under IIS. If I create a new ASP.Net web site application, don't modify it at all and run it (F5) the web page sh …
1
vote
2answers
29 views
Hidden Features of Delphi prism
Continuing with the series "Hidden features" I think it's time to Delphi Prism. I believe that's a great way to encourage the development of delphi prism, is that we all share what …
0
votes
1answer
55 views
How to instantiate a COM object using interop in Delphi Prism
What is the correct syntax for instantiating a COM object in Delphi Prism using COM interop - new does not seem to do the job.
I've added it as a reference to the website project. …
1
vote
1answer
30 views
How access datarow value using Delphi Prism
The following line of code generates the compile time error (PE19) There is no overloaded method "get_item" with 0 parameters. Any idea on how to access the data in the datarow us …
1
vote
2answers
112 views
How convert string to integer in Delphi Prism
In Delphi, there is a function StrToInt() that converts a string to an integer value; there is also IntToStr(), which does the reverse. These functions doesn't appear to be part o …
1
vote
2answers
114 views
How set dynamic array size in Delphi Prism (SetLength doesn’t work)
What is the equivalent of SetLength using Delphi Prism? I'm trying to size an integer array.
var listIndexes: array of integer;
begin
setLength(listIndexes,5); // doesn't w …
0
votes
1answer
35 views
DLL example in Prism2010.
Can somebody tell me where to find an example in how to make an DLL(WindowsControlLibrary) i prism?
In the old Delphi, you make an Export section.
Thank in advance.
Frank Sidor.
1
vote
1answer
100 views
How i can declare a global method in delphi prism
Hello,
How i can declare a global method in delphi prism using the __Global class?
And It is recommended to use global methods?
unfortunately I have not found any example.
Tha …
9
votes
3answers
382 views
Plugin for VS 2008 - With Structural Highlighting - Support Syntax Delphi Prism
Hello, Anybody know any plugin for Visual Studio 2008 that has the ability to "Structural Highlighting" and Syntax support for Delphi-Prism.
Currently use Castalia and CnPack, bu …
0
votes
1answer
174 views
Replacement for TList in Delphi Prism.
Hello, I am migrating an application written in Delphi 2007 to Delphi Prism, which is the best option to replace the TList class?
Thanks in advance.
Bye.
4
votes
3answers
269 views
Replacement for TStringList in Delphi Prism.
Hello, I am migrating an application written in Delphi 2007 .Net to Delphi Prism, which is the best option to replace the TStringList and TStrings class?
Thanks in advance.
Bye. …
10
votes
3answers
502 views
Why is Self assignable in Delphi?
This code in a GUI application compiles and runs:
procedure TForm1.Button1Click(Sender: TObject);
begin
Self := TForm1.Create(Owner);
end;
(tested with Delphi 6 and 2009)
wh …
2
votes
5answers
787 views
Doing XNA in Delphi Prism
I have installed Delphi Prism and XNA Game Studio 3.0. I have managed to translate to Delphi Prism XNA Tutorial 1 "Displaying a 3D Model on the Screen" (http://msdn.microsoft.com/e …
1
vote
1answer
96 views
Exposing functionality via Prism & Com Interop
How does one go about exposing a class written in Prism via COM Interop? For example, given the following interface:
TYPE
IFoo = public interface
property bar: string; read …
2
votes
1answer
153 views
Delphi Prism Cirrus accessing and setting the Result of a function
Background
This question relates to the new Cirrus infrastructure for Aspect Oriented Programming in Delphi Prism.
I currently have an aspect which I am Auto-Injecting into a cla …
