Delphi / FireMonkey release components created at runtime [Edit]Hello,
XE6, Win7
Am I right I thinking that if I create a component, such as TImage, at runtime, Delphi automatically releases the memory when the program closes.
I declared this:
im: TImage;
as a TForm variable.
Put this in .FormCreate:
ReportMemoryLeaksOnShutdown := DebugHook <> 0;
This picks up things like TStrokeBrush when I don't run .Free;
I then put this in:
procedure TFrmScales.Button4Click(Sender: TObject);
begin
im := TImage.Create(self);
im.Bitmap.Assign(I_note.Bitmap); // I_note is a TImage that I put there at design-time
im.Pa...
How to show custom cursor on transparent firemonkey form Delphi XE3 [Edit]HI. In my application I need to show a semi-transparent form with specific cursor.
A simple example:
procedure TForm1.FormCreate(Sender: TObject);
begin
Fill.Kind := TBrushKind.bkSolid;
Fill.Color := $50000000;
Top := 0;
Left := 0;
Width := 600;
Height := 600;
Transparency := true;
Cursor := crSQLWait;
end;
but cursor is changed only when I start mouse moving. I don't know how to fix it:(
Edited by: Sam Rob on Apr 8, 2013 1:31 AM
decision:
I add to onActivate:
Cursor := crSQLWait;
Application.ProcessMessages;
...
Delphi XE 5 / XE 6 Firemonkey custom component display problemHi everybody,
I've a problem and I would like to know if you have encountered the same type of problem, and better, if you have solved it. Let's go for the explanation!
With Firemonkey if you chose to create a new component derived from TListBox class with the wizard and you build and install it on a custom palet there is no problem. I mean that you can drag your own new component on a form and all is OK!
But if you are doing the same thing with the TCustomListBox class as ancestor you can create your component without problem but when you drag this new one on a form you have ...
Firemonkey components [Edit]I am rather new to firemonkey and was wondering where to find information on the purposes of certain controls. I am using XE8 update 1, mostly with Android 4.x. Some of the controls look much like other controls so I don't know when to use a particular control v/s when to use another. Is there an article describing the controls and the nuances or advantages of one control of another similar control. I need to know the purpose of a tlayout control, what does it give you when below the form compared to
a tpanel. What is the purpose of a toolbar. How does a tstatus work. It seems to...
Firemonkey custom componentI'm using Delphi XE8 and trying to create a cross-platform component for FireMonkey.
But I'm facing some problems. Although up the properties "Width" and "Height" in the Object Inspector to compile apparently the size settings are ignored. And when I reopen the project my component is also small. (I noticed that the width and height settings are not saved to the DFM file).
Note: All other native components of FireMonkey work properly, just my custom not.
Whats the problem?
Code: http://pastebin.com/s49hiBs4
Print: http://i.stack.imgur.com/pAfr5.jpg
...
Installing components for FireMonkey HD and FireMonkey iOSHi,
How do I install components for both FireMonkey HD and FireMonkey iOS?
I have one package 'FMXMyFireMonkeyControl' and 'FMIFireMonkeyControl'
which both point to the same file with the same registration
'TFireMonkeyControl'.
If I compile one package (FMXMyFireMonkeyControl) it installs correctly,
then change the include file (FMCompile.INC) to compile for IOS
(FMIFireMonkeyControl) which is included in the
FMX.FireMonkeyControl.pas file:
{$I FMCOMPILE.INC}
uses
{$IFDEF COMPILEIOS}
FMX_Types, FMX_Objects, FMX_Forms, FMX_Dialogs, FMX_Effe...
Build Component in Firemonkey [Edit]Hi,
How to build a component in firemonkey to display some numbers that is retrieved from a database table field.
Can I get some idea or any examples available?
Edited by: Rolance Kripakaran on May 14, 2012 2:52 AM
> {quote:title=Rolance Kripakaran wrote:}{quote}
> Hi,
>
> How to build a component in firemonkey to display some numbers that is retrieved from a database table field.
>
> Can I get some idea or any examples available?
>
There's three tasks you'll need to master to get that done.
Firstly you'll need to know about LiveBindings...
LookupCombobox component under Firemonkey [Edit]Hello,
How can I manage this ? :
I have a dataset with ID and Description fields.
I need the records to be displayed in a comboBox. Description need to be displayed (in the listbox and with the selected element).
ID should be associated with the available items.
I'm able to display these records on a comboBox (using livebindings) but I can't find a way to get the ID value.
Here is how I've set my visual binding :
[BINDSOURCEDB].ID ----> [COMBOBOX].Item.LookupData
[BINDSOURCEDB].Description ----> [COMBOBOX].Item.Text
Here is my code (OnButonClick)
i...
Firemonkey component funnies [Edit]Hi All, I've been using Delphi from V3 to V8, and now see it will produce iPad apps. I've downloaded a trial of EX2 and have an odd issue:
I'm a bit rusty, so may bear with me!
Platform set to win32 (to debug), TIdHTTP dropped on the form.
Code completion offers .get for IdHTTP1, but I get 'IdHTTP1 does not contain a member get'
IdHTTP1.Get('http://www.bbc.co.uk');
What am I missing?
Ta.
Edited by: martin moore on Sep 29, 2011 8:33 AM
> {quote:title=martin moore wrote:}{quote}
> Hi All, I've been using Delphi from V3 to V8, and no...
ANN: New Firemonkey Components [Edit]Check out what is cooking for the Beta 6 release of Apesuite...
http://arcana.sivv.com/blog/2012/5/3/apesuite-beta-6-preview-and-sivv-support-site.html
--
Arcana components for Delphi, Intraweb and Firemonkey
http://arcana.sivv.com
Edited by: Jason Southwell on May 3, 2012 3:55 PM
From your website: "Your purchase includes source code and updates for a
period of one year."
The one year period start with the release of version 1 or it include the
beta testing time?
> {quote:title=Jason Southwell wrote:}{quote}
> Check out what is cooking for the Beta 6 rel...
Firemonkey-Mobile: GridView component? [Edit]Hello everybody,
i'm trying to develop some sample mobile apps with FireMonkey framework.
I see that in Tool Palette there is a TListView component, but not a TGridView component. I'm very surprised of this lack, due GridView should share the same logic of ListView, only the layout should be different ( Android work in that way - http://developer.android.com/guide/topics/ui/declaring-layout.html#AdapterViews ).
There are other grid components (TGridLayout, TGridPanelLayout) but them haven't the same behavior and features of ListView.
So, No way to implement a GridView? Thank yo...
Ann: FastReport FMX for Delphi XE3 (FireMonkey 2) and XE2 (FireMonkey) releasedDear friends,
Visual report designer is available now on both MS Windows and MAC OS X!
Full sources.
We can write here full list of possibilities, but it will so long. Let
see FastReport VCL and FastReport FMX comparison table:
http://www.fast-report.com/en/products/comparison-fast-report-firemonkey-vcl.html
And all of this - just now in your hands for business-applications for Mac.
Report generator FastReport FMX is the first multiplatform solution for
including Business Intelligence into software based on Embarcadero
FireMonkey IDE (Delphi for MS Windows and Apple Mac OS X)...
VCL Firemonkey Component name conflict [Edit]I am writing VCL and Firemonkey versions of a component and want to use the same component name on both frameworks. XE6 Update 1
I install one framework package but when I install the second package I get an error that TMyComponent is already registered with the first package however when I restart the IDE both the VCL and Fm packages are checked as installed in the list of packages.
I create either a new VCL Forms application or a new Fm Desktop application and the correct version of TMyComponent can be added to it from the Tool Pallette.
I then "Close all" and create a new ...
Error in help- creating a firemonkey component- [Edit]1-
function TDialogButtonPanel.GetStyleObject: TControl;
is
function TDialogButtonPanel.GetStyleObject:*TFmxObject*;
2- and in the same function
Style = 'MyPanelButtonsStyle';
is
Style = *'DialogButtonPanelStyle'*;
The StyleName of the root (TRectangle) component in the .style file is coincidentally the same as the RCDATA name
Please, review then for the future
Edited by: Germán Balbi on Jul 14, 2013 12:31 PM
> {quote:title=Germán Balbi wrote:}{quote}
> Please, review then for the future
If there's an issue with the help you...