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.
0
votes
1answer
37 views
CheckBox is not accepting state change in the code
On a winform I have a three different checkboxes. They all won't accept any changes to their state programmatically but only by a mouse click. Why?
Here is how I am setting their state in my code:
...
0
votes
1answer
39 views
What is the difference between control's bounds and setting X,Y,Width,Height of a control?
So, lets say I have a panel on a winform and I want it displayed at particular point and should have a specific width and height on the winform. Plus, I want to do it during run-time.
So, what is the ...
1
vote
2answers
50 views
Is this copying or referencing?
If I were to do the following, do you consider that to be copying an object from one variable to another or referencing where the pointer to an object is copied.
myPanel:Panel;
myControl:Control;
...
0
votes
1answer
90 views
Thread.Resume Obsolete or decprecated: How to resume a suspended thread without using System.Threading.Thread.Resume?
Here is how I resume a suspended thread.
if SerialThread.ThreadState = ThreadState.Suspended then
SerialThread.Resume;
Although the above code doesn't raise compiler error or syntax error, ...
0
votes
1answer
102 views
Why .net program on linux under mono fails to run?
I ran my Delphi-prism (.NET) program on Linux under Mono. It ran for awhile and crashed with the following error message on the terminal. But the same program runs perfectly fine on Windows 7
Can ...
1
vote
2answers
113 views
Is it normal for a .NET program to be using 50% of the CPU on an average all the time?
I was just test driving my program and was looking at its process' memory usage and others. Then, I noticed my .NET program was about 50% of CPU almost always every once in awhile it would jump to 98% ...
0
votes
1answer
96 views
How to retain content page controls' viewstate when changing master page?
I'm using this code in my Global.asax to change master page:
method Global.Application_PreRequestHandlerExecute(src: System.Object; e: EventArgs);
begin
var p: System.Web.UI.Page := ...
0
votes
2answers
87 views
How to properly change a page's master page?
I have two master pages in my ASP.NET application. One for regular use, and another for printing. I use a session parameter to see if the application is currently in print mode or not:
method ...
0
votes
1answer
68 views
RemObjects: How to prevent UI from freezing when making unsuccessful TCP/IP connection?
I am testing my program TCP/IP connection which uses RemObjects TcpClient and TcpServer controls and running into an issue.
If the host or remote server is not listening for connection, then client ...
1
vote
2answers
98 views
Can a suspended thread be aborted?
I created a thread and that thread can be suspended. So, how do I kill or terminate a suspended thread?
I tried to ABORT the thread and I got a runtime error message saying that the thread is ...
2
votes
1answer
81 views
Can a program leak memory by setting and resetting backcolor property?
Since I can't find any control to use as a LED indicator on my winform for my serial communication transmit and receive, I created my own user-defined indicator from label. It basically sets and ...
2
votes
1answer
171 views
How to preserve ViewState when changing master page of a content page?
I have created two master pages for my website. one for normal use, and another for print. On my normal master page, I have a button which sets Session['P'] to '1'. On the print master page, I have ...
0
votes
0answers
101 views
ASP.Net Web Application Administration Tool does not work after updating my solution from VS2008 to VS2010
I have recently uninstalled Visual Studio 2008, and installed Visual Studio 2010 Shell which was on my Delphi Prism Prism XE Update 1 installation disk. After that, I can not open Web Application ...
1
vote
1answer
32 views
Delphi Prism - how do I determine actual class that TObjectExtender is “extending”
I have a large quantity of logging throughout my Delphi code, which often uses Self.ClassName to log the name of the class containing the currently executing code.
I am now compiling some of this ...
1
vote
1answer
256 views
How to programmatically press toolstripbutton down?
I want to push toolstripbutton down in my code and I can't seem to be able to do that. I know on Delphi RAD Studio or XE, you can do the following and cause the button to be pressed.
...
0
votes
1answer
105 views
Why 32 by 32 4 bit BMP cursor is not displaying?
Since I can't find ZoomIn and/or ZoomOut magnifying glass cursor for my program, I created my own cursor of size 32 by 32 4bit with my compiler. However, when I do assign it to my form cursor, it is ...
1
vote
1answer
128 views
How to create dynamic array of DateTime?
I need to create a dynamic array of DateTime, but I don't know before hand how many dates I will have to add. I did experiment with ArrayList, but it doesn't help.
So, how do you create dynamic ...
0
votes
1answer
135 views
MasterPage property is always empty in content page
I have a HiddenField on my master page, and its value is set in Page_Load event of the master page. In one of my content pages, I need this value in Page_Load event. So I added <%@ MasterType ...
0
votes
1answer
130 views
Graphics.DrawLines : Parameter is not valid
For this problem, I did comb through Stackoverflow similar questions for an answer. Although a lot of them were helpful, they didn't solve my problem. My program draws polygon on a winform using ...
0
votes
1answer
294 views
Why timer (system.windows.forms.timer) won't start?
Within a user-defined class, I have a timer and it just won't start when I Timer.Enabled.
User-Defined Class:
TSerialIndicator = public class
private
method ...
2
votes
3answers
188 views
How to enforce single instance of an application under mono?
So, I am able to enforce single instance of my application on Windows as follows.
[STAThread]
class method Program.Main(args: array of string);
begin
var mutex := new Mutex(true, ...
0
votes
2answers
247 views
How to prevent key entry with NumericUpDown control?
I have a numericupdown control on a winform and I noticed while testing that not only you have the option of changing the value by pressing up and down key but also simply entering the values from ...
2
votes
1answer
159 views
Are there any .NET replacement for timeBeginPeriod and timeEndPeriod methods?
I've been working on a program that communicates on SerialPort and having problem with it. It's communication is below 50% or less. If not, it times out most of the time.
From my research into this ...
1
vote
1answer
216 views
Importing DLL and running application under mono
I import "winmm.dll" by using the following code.
MyUtils = public static class
private
protected
public
[DllImport("winmm.dll")]
class method timeBeginPeriod(period:Integer):Integer; ...
0
votes
2answers
145 views
How to import DLL in delphi-prism?
I am trying to import dll in my delphi-prism program and never done it before. So, after finding some answer online, I put something together as follows but doesn't work.
MyUtils = public static ...
0
votes
0answers
46 views
Why won't the values be saved in User.config?
I can't seem to change the values on the User.config file at all. They only have default values. However, every time my program tries to save winform information using the code below, user.config ...
1
vote
1answer
73 views
Why is Dialogresult nil?
This never happened to me before.
I do have System.Windows.Forms namespace under uses clause and I am able to use DialogResult's properties. Look at the code below. It's where the problem is in my ...
1
vote
1answer
51 views
Delphi Prism Application Settings
In .net you can acces the Properties of your application trough code. How can you do the same in Oxygene / delphi prism ?
Directory.GetFiles(Properties.Settings.Default.
1
vote
1answer
155 views
Why can't datagridview rowcount property be equal to zero?
I have datagridview on my winform and you can add and delete items from it. Although I am able to do that successfully, it acts weird.
It requires that its property RowCount be set to 1 or greater. ...
1
vote
3answers
152 views
How can I debug a sporadic crash in Double.TryParse on Windows 8?
I'm getting a very strange crash when testing an existing application in Windows 8.
The main application is written in Delphi XE (Win32) and it does some calls to .Net assemblies using COM interop. ...
0
votes
2answers
70 views
Is there a way to load library in delphi prism?
I need to load Dynamically linked or Static library file during runtime. Is there a way to do it in delphi prism?
MSDN library doesn't seem to indicate that.
Any help or hints will be greatly ...
0
votes
1answer
52 views
Cannot find property setter for “Chars”
I am trying to do the following expression, but I keep running into this exception, "Cannot find property setter for 'chars'."
Here is the expression:
xstr, str : string;
for i := 1 to length(str) ...
1
vote
1answer
201 views
How to screen capture a winform hidden behind another winform?
I need to screen capture a winform that is either behind or in front of another window and nothing else.
I am able to screen capture a winform but it basically captures anything and everything in ...
1
vote
1answer
138 views
Does white space have width at all?
I am just too confused when it comes to white space. I am trying to padright a string and it won't cooperate with me.
I want to print a datagridview and so I have columns header and below it the ...
2
votes
1answer
77 views
Double Inheritance and Abstract method
I have a base that is inherited twice. The second subclass doesn't provide any signature for the method clone, but the third subclass does and defines the method clone as follows.
TControlObject = ...
0
votes
1answer
117 views
non-abstract class does not provide implementation for abstract method
I have a base class like the following.
TMakerObject = class
...
public
method Clone:TControlObject; virtual; abstract;
end;
I want to make the method clone abstract. So, base class doesn't ...
0
votes
1answer
27 views
Output precision is reduced to the precision of the operands
I am getting warning message on the following expression.
(400*ev.PageBounds.Width)/2400
Warning message is Output precision is reduced to the precision of the operands.
Why? Can I just ignore it?
...
0
votes
2answers
46 views
Cannot override method with lower access than base method
I am almost done with migrating my software for .NET environment. Now I am going through all the warnings and cleaning them up. Then, I ran into this problem.
Here is my class:
TColorObj = class
...
1
vote
1answer
256 views
Operation is not valid due to the current state of the object - HASP HL dongle
I am trying to add reference to my Delphi Prism project for HASP HL. So, I can communicate with the USB HASP HL dongle.
After the initial set up, I couldn't get my program to communicate with the USB ...
0
votes
1answer
191 views
Type mismatch, cannot assign System.Data.DataRowCollection to array of System.Data.DataRow
I want to be able to traverse through a list of DataRow using For each loop as follows.
ArrayOfRows: Array of DataRow;
ArrayOfRows := dbtable.Rows;
for each therow in ArrayofRows do
begin
...
0
votes
1answer
621 views
How to insert and retrieve TIMESTAMP fields using SQL statement with SQLite?
I was able to insert TIMESTAMP as a string into my table, but when I read it out my program raises an error saying "String was not recognized as a valid DateTime."
Here is how I insert my values into ...
0
votes
2answers
77 views
What is a good choice for database table like Paradox table for windows or Linux?
My software was built around BDE Engine and Paradox table for windows from while back and I am in the process of converting it for .NET. I am looking around for options to implement the database ...
0
votes
2answers
743 views
What does Hasmorepages PrintPageEventArgs property do exactly?
I am trying to understand what Hasmorepages PrintPageEventArgs property is, why would you use it and how does it work.
MSDN Library doesn't really have a good explanation. All they say is that if you ...
0
votes
1answer
266 views
How to advance to a newpage with printdocument in .NET? [duplicate]
Possible Duplicate:
What does Hasmorepages PrintPageEventArgs property do exactly?
I would like to advance my printing to a newpage without leaving the print event.
So far, what I found ...
1
vote
1answer
65 views
Ambiguous call to method “Round(a: System.Double): System.Double ; Round(d: System.Decimal): System.Decimal”
I am bit confused as to why calling Math.Round method would raise, "Ambiguous Call" compiler error.
Here is my offending code:
Math.Round((2000-((Splots[x].RawMin/4095)*2000))+200);
RawMin is ...
0
votes
1answer
532 views
How to prevent Closing and Disposing of a winform in the FormClosing event?
This question may seem like a duplicate, but I just ran in to this issue while I was testing my program and I am kind of confused as to how you solve it.
I have a winform and it has a form closing ...
0
votes
1answer
49 views
Why is the DataGridView columns stacked on top of each other?
On a winform, I have a DataGridView and columns within it. For some odd reason, when I run my program, the columns are stacked on top of each other during runtime. No matter what I do, it won't ...
1
vote
1answer
478 views
How to append data using just BinaryWriter at the end of the file?
Maybe similar questions were asked in Stackoverflow, but I seem not to be able to find a solution to my problem.
I simply want to open a writable binary stream and be able to append data to the file ...
1
vote
1answer
67 views
How to delete or destruct an instance of a data structure or a record?
I have a data structure as follows.
TJustCalGroup = record
SigName,GroupName:string;
RawMin,RawMax:LongInt;
end;
I create an instance of the record or data structure as follows.
var ...
0
votes
2answers
233 views
Is there a replacement for variant data type in .NET?
I would like to know if there is a variant data type in Delphi prism.
I am converting a Delphi win32 application for Delphi Prism .NET environment.
