Wednesday, November 23, 2011

9 iOS components and 8 demos for Thanksgiving!

Happy Thanksgiving!

14 comments:

  1. Haven't tried them yet but... Thank you!

    This will save me hours (days/weeks?)

    ReplyDelete
  2. 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 ?

    ReplyDelete
  3. Xcode compile error
    Can’t find unit Accelerometer used by Unit1

    ReplyDelete
  4. Add the unit to the Xcode project on the Mac side.

    ReplyDelete
  5. Anders

    Thank you very much for sharing and for your professionalism.

    ReplyDelete
  6. 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

    ReplyDelete
  7. 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

    ReplyDelete
  8. 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!

    ReplyDelete
  9. I have not played with the StoreKit, so I don't know. Sorry.

    ReplyDelete
  10. 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!

    ReplyDelete
  11. 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

    ReplyDelete

Note: Only a member of this blog may post a comment.