-
Content Count
19 -
Joined
-
Last visited
Community Reputation
7 NeutralAbout Christen Blom-Dahl
- Birthday 05/22/1963
Technical Information
-
Delphi-Version
Delphi 10.4 Sydney
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
They've said the simulator is working again, perhaps they will address now debugger problems.
-
Has this issue been solved in Delphi 12.2?
-
That would be a nice addition to fill the gap and cover all the mainstream web technologies. The problem is how to add a new platform without distracting resources from the current platforms. Also, ARM compilers for Mac and possibly other desktop platforms will be needed.
-
Last Delphi roadmap was published in May 2019 https://community.idera.com/developer-tools/b/blog/posts/rad-studio-roadmap-may-2019 and later updated in August 2019 https://community.idera.com/developer-tools/b/blog/posts/august-2019-delphi-android-beta-plans-august-roadmap-update. Those roadmaps cover up to mid 2020. It would be great to have an updated roadmap to know the future evolution of Delphi. What do you think?
-
Hi Marco I can suggest you to implement those features as optional with the possibility of enabling/disabling any of them. This will allow the users to deactivate any of them. I can imagine that Andreas work is more complex because he has to inject the code in a precompiled application so if you integrate those patches in the development code it should be an easier task. Regards
-
I wonder why Embarcadero does not fully integrate IDE Fix Pack in the standard IDE.
-
The new release 10.4.1 of Delphi has just been published: Delphi 10.4.1 Crossfingers
-
With newer versions of Delphi you should define the function: function objc_msgSendP4(theReceiver: Pointer; theSelector: Pointer; P1,P2,P3,P4: Pointer): Pointer; cdecl; overload; external libobjc name _PU + 'objc_msgSend'; And then you can use it as follows: objc_msgSendP4((FStillImageOutput as ILocalObject).GetObjectID, sel_getUid('addObserver:forKeyPath:options:context:'), FVideoCaptureDelegate.GetObjectID, (StrToNSStr('capturingStillImage') as ILocalObject).GetObjectID, Pointer(NSKeyValueObservingOptionNew), (FAVCaptureStillImageIsCapturingStillImageContext as ILocalObject).GetObjectID); Nonetheless, the best solution is the one posted by Gustav some posts ago. objc_msgSend should be avoided if possible. Regards
- 12 replies
-
Sorry for my late answer (I've been very busy for some months). This code was compiled against Delphi XE5 and the iOS RTL has changed a lot since then. Nonetheless the code is a good sample that should run with minor adjustments. Regards
- 12 replies
-
Application Loader no longer included in Xcode11
Christen Blom-Dahl replied to futuron's topic in FMX
I've tested it and it runs smoothly. This is the best solution. Regards Christen -
You must include a class attribute to specify which platforms the component is going to be available: type ... [ComponentPlatformsAttribute(pidWin32 or pidWin64 or pidOSX32 or pidiOSSimulator or pidiOSDevice32 or pidiOSDevice64 or pidAndroid)] TVCDProgress = class(TCustomControl) ... end;
-
It usually takes some days to mark them as closed after they release a new version. This is because they have two different servers one for internal issues and one for public issues.
-
Ohhh, there is a huge list of fixed issues!!
-
Request for advice: FireMonkey and Frames
Christen Blom-Dahl replied to Lars Fosdal's topic in Cross-platform
@Lars Fosdal, you should take a look at https://blog.andreamagni.eu/2015/09/tframestand-component-fmx-tframes-on-steroids/ It is a very nice extension to use frames in Firemonkey. -
New in 10.3: Improvements to the Options dialogs
Christen Blom-Dahl replied to David Millington's topic in Delphi IDE and APIs
@David Millington, congratulations for the great job you and your team have done.