Tagged Questions

Delphi Prism is a rapid application development tool for the Microsoft .NET Framework and Mono, developed by RemObjects Software and distributed by Embarcadero Technologies. is based on the Oxygene language and compiler, integrated within the Microsoft Visual Studio and MonoDevelop IDEs.

learn more… | top users | synonyms

15
votes
5answers
1k 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) why is Self writable ...
13
votes
1answer
1k views

Why are there so many $IF DEFINED(CLR) in the VCL/RTL?

I've just compared the Delphi 2009 VCL/RTL code to the 2010 one. I noticed that there are many $IF DEFINED(CLR) conditional defines and they got more in the 2010 version. I thought that these ...
9
votes
3answers
866 views

Plugin for VS 2008 - With Structural Highlighting - Support Syntax Delphi Prism

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, but just work on Rad Studio. ...
8
votes
4answers
292 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 we discovered in ...
7
votes
2answers
97 views

Cannot access underlying event field

I am trying to cause TButton Click event from within TListBox doubleclick event by simply calling: Button1.Click; I am always able to do that under Delphi XE and version below it, but now it is ...
6
votes
4answers
471 views

Has anyone done or does anyone knows of a way to use Delphi/Prism to develop for the Android os?

Is it somehow possible to use the Delphi language (or Prism if absolutely necessary) to develop programs for the Android platform ? Any starting point ?
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 ...
5
votes
3answers
849 views

delphi prism online resources

google search on ''delphi prism' , ''delphi prism resources'' or ''delphi prism code snippets'' reveal almost no good site at all are there any good programming site(s) with some good amount of code ...
4
votes
1answer
109 views

Why doesn't with…do statement and rectangle work together flawlessly?

Lately, I have been noticing that anytime I use Rectangle variable with With...do statement, it doesn't work at all for some reason. For instance: var bounds:=new Rectangle(0,0,0,0); with bounds do ...
4
votes
1answer
216 views

Access Delphi Prism Class Library from Delphi XE

I need to access in Delphi XE the method "Auth" from this Delphi Prism class library: namespace ClassLibrary1; interface uses System, System.IO, ...
4
votes
4answers
2k views

List.AddRange inline declaration

This may seem an easy question, but not to me, also a search has led to nothing. Up until now the only .net programming I have done is with Delphi Prism. With Prism I can do things like: var l := new ...
4
votes
2answers
833 views

How can I pass a Delphi string to a Prism DLL?

We try to pass a string from a native Delphi program to a Delphi Prism DLL. We have no problem passing integers, but strings are mismatched in the DLL. We saw Robert Love's code snippet in response to ...
4
votes
3answers
1k views

Replacement for TStringList in Delphi Prism

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.
4
votes
1answer
663 views

How to generate Pascal code from an XML schema in Delphi Prism?

I need to import some XML schemas. In Delphi, I would use the the XML Data Binding Wizard to generate the Pascal code from the schemas. Is there something like that in Delphi Prism to avoid writing ...
3
votes
3answers
217 views

How to assign Objects from ListBox to ArrayList in a single statement?

In Delphi Prism, I need to assign objectcollection from ListBox to an ArrayList in a single statement. So far I have not found any solution. In Delphi, this is how I did it. ...
3
votes
1answer
139 views

Using MbUnit with Delphi Prism

I have created below simple testcase in Delphi Prism. When I run the testcase using Gallio Icarus, it returns a This test is not supported by any available test framework. I can think of only two ...
3
votes
3answers
320 views

How to make Delphi Prism indexed properties visible to C# when properties are not default

I have several Delphi Prism classes with indexed properties that I use a lot on my C# web applications (we are migrating a big Delphi Win32 system to ASP.Net). My problem is that it seems that C# ...
3
votes
1answer
1k views

Cast int to Enum in Delphi Prism

Basically the same as this question, but in Delphi Prism: http://stackoverflow.com/questions/29482/cast-int-to-enum-in-c I manage to do it from a string: YourEnum := Enum.Parse(TypeOf(YourEnum), ...
3
votes
5answers
661 views

Is Delphi Prism a new version of Delphi .net?

First of all (before this question get down voted): I am a developer developing 99,99% of my programs using Delphi targeting Win32 (developing in Delphi 7 still, very slowly migrating to Delphi 2010). ...
3
votes
2answers
973 views

Where can I define Conditional compilation constants for Delphi Prism?

I've just ported a Web service from Delphi.NET 2006 to Delphi Prism 2009 (running in the Visual Studio 2008 IDE). But I can't find where I'm supposed to set (or unset) the conditional compilation ...
3
votes
5answers
1k 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" ...
2
votes
2answers
46 views

How to make an event empty again?

If you have an Winform MouseDown event set to a method, how do you empty or reset the event. so that it has no methods to call when it fires. Take for instance: MouseDown += new ...
2
votes
1answer
126 views

Replacement for CharInSet function in Delphi Prism

Is there a similar function as CharInSet in Delphi Prism? If not, how would you do it? I looked online and on StackOverflow, but they speak in terms of Delphi not Delphi Prism for .NET. I also found ...
2
votes
3answers
122 views

How to free an arraylist of objects in a Delphi Prism?

I need to free list of objects stored in an ArrayList. I know you can call Free procedure in Delphi, but in Delphi Prism there is no free procedure. I don't just want to remove objects from the list ...
2
votes
2answers
75 views

how to create inifile in Delphi Prism for .net that will work on window and Linux(Mono)?

My Delphi Prism program needs to create and read and write into an inifile, but I think I noticed Delphi Prism doesn't really support any sort of Inifile structure. (Correct me if I am wrong.) This ...
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
1answer
432 views

How do I fix Delphi Prism ASP.NET error: “Parser Error Message: 'Oxygene' is not a supported language”

I have written an ASP.NET web application (not site) in Delphi Prism. Everything works fine on my devlopment machine, but when I install it on a test server I get the following error: Server Error in ...
2
votes
1answer
56 views

Roll populating a Dictionary into a LINQ of For expression

I have a data object Data = class public s: string; i: Integer; end; with many of them in a list (or some collection): var ol : List<Data> := new List<Data>; ...
2
votes
1answer
162 views

Why does Delphi Prism complain about System type mismatches?

I encountered a strange compiler error in Delphi Prism 2010 that I am unable to resolve. The error is calling a method on an object defined in a third-party assembly that manipulates a specialized ...
2
votes
1answer
207 views

What is the paramstr equivalent in Delphi Prism

Is there a simple statement that can give a result similar to paramstr() in Delphi?
2
votes
1answer
228 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 class and am attempting ...
2
votes
3answers
3k views

C# to Delphi Prism code converter

I know CodeGear made BabelCode that uses the Code DOM to convert C# to Delphi for .NET. I am curious if there are any other similar tools to convert C# to Delphi Prism? If not, what is involved in ...
1
vote
2answers
56 views

How to draw a transparent line on Winform?

I would like to draw a transparent line on a winform. I am able to draw lines with different patterns or DashStyle with following code: var r := new Rectangle(0,0,0,0); var thepen := new ...
1
vote
1answer
68 views

Why is MouseMove event firing when left mouse is clicked only for MouseDown event?

Either I am not totally understanding how events work or Delphi Prism has gone mad!!! I have a winform, mousedown event and mousemove event. Whenever I click the left mouse button only, MouseDown ...
1
vote
1answer
21 views

.Net AssemblyInfo Delphi-Prism

What for is the implementation end. part of the AssemblyInfo.pas file in DelphiPrism projects? I know that between 'implementation' and 'end' there should be an implementation of a method, but ...
1
vote
1answer
52 views

How to use TreeView for .NET?

Coming from Win32, I am having bit of an issue or a problem trying to work with treeview for .NET. I have searched online, msdn library and stackoverflow and none seem to help me. Could someone, ...
1
vote
2answers
99 views

How to display FontFamily in Combobox?

I have a combobox and I need to populate it with all the available fonts in the system - their actual name, style, etc... From all the information I can find online, I am able to put together the ...
1
vote
1answer
89 views

How to move Label within a panel using MouseMove event?

I know this should be very simple especially given all the information and example codes online, but for some reason I just can't get this to work. I have a Label and a Panel on a winform. I want the ...
1
vote
1answer
65 views

There is no overloaded method “OnMouseDown” with 0 parameters

I am trying to set winform OnMouseDown event to a method I defined called SelectMouseDown. The method is defined as follows: method Maker.SelectMouseDown(Sender: Object; e: ...
1
vote
1answer
58 views

Why doesn't toolstriplabel's backcolor property change during design time or run time?

I need to have a toolstrip label and its back color changed during runtime, but no matter what I do. It just won't change its backcolor, even though they give option to change its backcolor. Why is ...
1
vote
1answer
57 views

Why are the controlpaint draw methods paint outside of its client paint area?

I have a winform on which I want to draw dashed frame as you click the left mouse button and drag. When the left mouse button is released, the frame should disappear. I am able to do that with ...
1
vote
3answers
51 views

How to draw on a Winform without having access to System.Windows.Forms.PaintEventArgs namespace?

Form what I have done so far in my program, it seems that the only way to draw anything on a winform is through System.Windows.Forms.PaintEventArgs. What if you don't have access to these arguments or ...
1
vote
2answers
172 views

Why UnManaged Export example is doesnt work in prism XE

I'm trying to compile This Example for unmanaged export in XE but I getting (PE9) Unknown identifier "UnmanagedExport" error when build. Under Compatibility select "Allow unsafe code" Under Build, ...
1
vote
1answer
134 views

Delphi Prism: How to override GetHashCode and Equals method for IndexOf to work correctly?

I am not sure if I am doing this right. I have a list of objects in the listbox and need to use IndexOf to get an object's index in the list. if AlarmListBox.items.indexOf(alrm.Tagname) = -1 then ...
1
vote
2answers
161 views

How to read and write “SET OF” type into a file using BinaryWriter?

This is for Delphi Prism. Say, I have the following enum SET type that I would like to save into a binary file. Fruit = (Apple, Banana, Mango, Cherry, Grapes, BlueBerry); Fruits = set of Fruit; ...
1
vote
2answers
108 views

Delphi Prism: Does BinaryWriter “Write method” work the same as Writeln method from Delphi?

I am working with Delphi Prism and creating and writing into binary file using BinaryWriter as follows. method TUnit.Write(bw:BinaryWriter); var i:Integer; begin bw.write(ord(uType)); ...
1
vote
2answers
51 views

calling event within the same Window Form in Delphi Prism

I am trying to call a click event from within another a method from the same Window Form file. It just won't work form me. For instance: theClass = partial class(System.Windows.Forms.Form) ...
1
vote
1answer
66 views

How to call correctly base class constructor from inherited class in Delphi Phrism?

I have two classes - base class and inherited class as follows. Base Class: TAlarm = class(System.Object) private: protected: public: constructor (tag:TTagname); end; inherited class: ...
1
vote
1answer
57 views

Operating System Directive in Delphi Prism

Since I am writing a program that will eventually run on Windows and Linux environment compiled from the same project files, I wanted to test and see how well the Operating System directives are. So, ...
1
vote
2answers
58 views

InputBox is not accessible on Delphi Prism after adding Microsoft.VisualBasic reference

I need to display an Input message box to gather information from the user. I am using Delphi Prism. I did try someone else's suggestion by adding Microsoft.VisualBasic reference to my program to ...

1 2 3