Happy Thanksgiving!
Share This | Email this page to a friend
This entry was posted
on Wednesday, November 23rd, 2011 at 8:23 pm and is filed under Delphi, Delphi XE2, FireMonkey, RAD Studio, RAD Studio XE2, ednfront, iOS, iPhone.
You can follow any responses to this entry through the RSS 2.0 feed.
You can leave a response, or trackback from your own site.
November 24th, 2011 at 3:25 am
test
November 29th, 2011 at 9:00 pm
Haven’t tried them yet but… Thank you!
This will save me hours (days/weeks?)
December 1st, 2011 at 12:10 pm
Xcode cannot compile
Fatal: Can’t find unit Accelerometer used by Unit1
Fatal: Compilation aborted
How to tell Xcode that Accelerometer file is in another folder ?
December 19th, 2011 at 9:47 pm
Xcode compile error
Can’t find unit Accelerometer used by Unit1
December 19th, 2011 at 9:49 pm
Add the unit to the Xcode project on the Mac side.
January 20th, 2012 at 10:05 am
Anders
Thank you very much for sharing and for your professionalism.
February 1st, 2012 at 4:42 pm
thanks
February 1st, 2012 at 11:34 pm
I am using xcode 4.2.1, IOS 5 SDK, Delphi XE2 Update 3
I can’t compile FMX_Accel it still gives the error ‘Can’t find unit Accelerometer used by Unit1′ even when I add the accelerometer.pas file to the xcode project.
Any clues?
Thanks
February 2nd, 2012 at 12:07 am
ok, so apparently I had to copy the accelerometer.pas file in the same directory with the other files and it worked.
One more question, in one of the videos there is a sample called fmx_dash. Is the source code available somewhere?
Thanks
February 26th, 2012 at 11:06 am
Anders, first os all, congratulations on the great work you do. I visit the blog almost every day to look for new posts and comments, as this is my main source for delphi xe2 for ios information source.
I was wondering… Is it possible to implement in-app purchases yet? I believe the storekit is already a part of iPhoneall, but could not figure it out by myself. Any clues or basic sample?
Cheers!
February 28th, 2012 at 3:05 pm
I have not played with the StoreKit, so I don’t know. Sorry.
February 28th, 2012 at 6:47 pm
Ok. Looking forward for the next great post you will toast us with. Hopefully, something about in-app purchases, since it’s a big deal to app store business
Cheers!
March 13th, 2012 at 11:09 pm
I am switching to Firemonkey! Thanks for all your efforts and hard work!
I want to send mail directly from Delphi XE2 to outlook while I am using Firemonkey.
Before I have used the following code with Delphi RAd 2010..
procedure Tfrmregister.Button4Click(Sender: TObject);
var
Outlook: OLEVariant;
MailItem: OLEVariant;
ss,sss:Variant;
F : TextFile;
S: string;
user:string;
const olMailItem = 0;
begin
Outlook:=CreateOleObject(’Outlook.Application’);
MailItem:=Outlook.CreateItem(olMailItem);
SSS:=’C:\Program Files\Alberts And Associates\Data\UserName.Dat’;
SS:=’C:\Program Files\Alberts And Associates\Data\SoftwareSer.Dat’;
MailItem.Recipients.Add(’franco@alb-sa.com’);
MailItem.Subject := ‘Subject: New Registration’;
MailItem.Body := ‘Please Find Attached Serial Details..’;
MailItem.Attachments.Add (SSS);
MailItem.Attachments.Add (SS);
MailItem.Send;
Outlook:= Unassigned;
end;
I do not want to use windows shell command.
Thanks for the great work!
Franco