Fco

Your Rank: 67
Points: 27
a simple search in google found this:
stackoverflow.com/questions/859517/osx-e...lent-of-shellexecute
Mehr lesen...
Hi, did you try it on 1.17?
Please improve your code formatting it is hard to read. cheers.
Read More...
Hi, I'm getting a crash after closing the App in Android, written in C++ (Appmethod v1.17). The current Call Stack shows "...TPlatformAndroid.GetScreenScale(nil)". In order to reproduce it, just create a new Multi-Device App using the template "Tabbed with Navigation".... How to work around this crash? This also happening in other existing app I have and this crash shows up when the device is rotated.
Read More...
Great, TY!!
Hi,
I have added a gestureManager to TWebBrowser but it doesn't work at all.
In fact, I need use only InteractiveGesture, but the corresponding event never triggers.
void __fastcall TForm1::WebBrowser1Gesture(TObject *Sender, const TGestureEventInfo &EventInfo,
bool &Handled)
{
String s;
if (GestureToIdent(EventInfo.GestureID, s)) {
ShowMessage(s);
}
else {
ShowMessage("Could not translate gesture identifier");
}
}
Thanks in advance.
Read More...
I just watched this
www.youtube.com/watch?v=6sMlHH5xlZ8
He managed to modify the control just with some style changes, IDK if it could help to you somehow.
Read More...
Hi, I'm new to XE8 but maybe you can try creating a class based in TDBGrid and changing the canvas of each column to include the component you want to show in each column... I remember this was possible to do in old Delphi (ex. v7) without any problem... think it is possible now too, but wonder if it will work on the platforms you want to.
But same I wanted to leave this clue.
Read More...
Hi everyone,
I was not able to find clear information, code, components or similar information to do it well in Appmethod or XE8... any example around?
I need it to work for both Android/iOS under the same unique project.
Hope more than clues hopefully, TIA.
Best regards.
Read More...
Hi Everybody,
I need take the right steps in the right direction to do this with Appmethod 1.16 or XE8.
How do I supposed to implement save user settings in an Android/iOS applications? That means I need keep coding one project for both platforms.
I was looking this example, but it says only for Android:
francois-piette.blogspot.be/2014/01/tini...oid-and-windows.html
but, what is the right class/component in order to do it well done?
Thanks in Advance!
Read More...
Sarina wrote:
I am glad you liked the tutorial. Regarding Problem 2, I would recommend having a look at this post: blogs.embarcadero.com/sarinadupont/2013/...-and-data-on-mobile/
Regards,
Sarina
_di_IInterface ShareSheetService;
ShareSheetService = TPlatformServices::Current->GetPlatformService(__uuidof(Fmx::Medialibrary::IFMXShareSheetActionsService));
Is that an issue or just bad code from me?
TIA.
Read More...
wow, beautiful and intelligent, why don't you live next door! :P
I'll look your link as soon as I finish some test about problem 1. BTW I found a trick: community.embarcadero.com/index.php/answ...rowser-always-on-top
If you guys find another solution would be great!
Read More...
Hi guys,
This is like follows:
- TabbedForm
- + ActionList1
- - BannerAd1
- - lstBoxMenu (TListBox)
- - - - lstBoxItem1 (TListBoxItem)
- - - - lstBoxItem2
- - - - ...
- - Toolbar1 (TToolBar)
- - WebBrowser1 (TWebBrowser)
- - AniIndicator1 (TAniIndicator)
I'm using TListBox to generar some kind of menu (more options) for the App, following this example: blogs.embarcadero.com/sarinadupont/2013/...7/463/#comment-36361
The example is simple and works great!
Problem 1: The AniIndicator1 and the lstBoxMenu are not showing off, at least I set WebBrowser1 Visible property to false. Why?? How to handle z-order maybe?
Problem 2: I used to have a TSpeedbutton with property Action set to TShowShareSheetAction working perfectly. Now I want that same functionality on the click event of one of the lstBoxItem in order to perform the same call. I didn't have any luck making it work. How to do it?
Best regards,
Read More...