Luis Navarro

Your Rank: 16
Points: 206
Willian Santos is friends with Luis Navarro
Hi Andre.
Already replied in: http://community.embarcadero.com/answers/appanalytics-error
Again, our apologies for the issue.
Regards.
Luis
Read More...
Hello Andre.
Did you "add" your application at AppAnalytics site first?
Please check this blog post: http://community.embarcadero.com/blogs/entry/using-appanalytics-to-get-usage-information-from-our-application and let us know if there's anything else we can help with.
More useful information:
- From Sarina's blog: http://community.embarcadero.com/blogs/entry/tracking-custom-events-with-tappanalytics-in-multi-device-applications-1
- Docwiki: http://docwiki.embarcadero.com/RADStudio/Seattle/en/AppAnalytics_Overview#Getting_Started_with_AppAnalytics
Best regards.
Luis Navarro
Read More...
Agusti 6 is friends with Luis Navarro
Hi Warren.
The team is already working on fixing the issue. Thanks anyway for the report.
Best regards.
Luis.
Read More...
Hello.
Could you please log an issue on the Quality Portal https://quality.embarcadero.com/secure/Dashboard.jspa providing as much details, screenshots, etc... as you can?
Thank you very much.
Kind regards.
Luis
Read More...
Salvador JC is friends with Luis Navarro
After upgrading RAD Studio 10 Seattle or C++ Builder 10 Seattle to Update 1, the Windows 10 SDK installer may be launched with just one option: Remove the Windows SDK product entirely.
Hi Al.Thank you very much for your comment. Please let us know about your progress.Best regards. Luis.
Landerson Gomes is friends with Luis Navarro
I’ve always loved developing Windows applications using Delphi and RAD Studio. But it’s getting ever more exciting with the latest releases as it's possible to g ...
Juan Antonio Ruzafa is friends with Luis Navarro
Carlos Perez is friends with Luis Navarro
Hello.
Same happens to me. You may need to log an issue in the project homepage at: https://github.com/TurboPack/Abbrevia
Thank you.
Luis.
Read More...
Hi Eric.
Please log a bug in the Quality Portal including this info and our team will try to reproduce it.
Kind regards.
Luis.
Read More...
Hi Eric.
Do you have a sample project that reproduces the issue so we can take a look? That would be really helpful.
Thank you.
Luis Navarro.
Read More...
Hi again.
As the attachment seems broken, I'm pasting the section of the code to send and receive the notification.
procedure TForm1.ButtonClick(Sender: TObject);
var
MyNotification: TNotification;
begin
MyNotification := NotificationCenter1.CreateNotification;
try
MyNotification.Name := 'ServiceNotification';
MyNotification.Title := 'Text received';
MyNotification.AlertBody := (Sender as TButton).Text + ' pressed';
NotificationCenter1.PresentNotification(MyNotification);
finally
MyNotification.Free;
end;
end;
procedure TForm1.NotificationCenter1ReceiveLocalNotification(Sender: TObject; ANotification: TNotification);
begin
Memo1.Lines.Add( Anotification.AlertBody );
end;
Read More...
Hi.
Please check the attached sample project. It's done on 10 Seattle, but it should work the same on XE8. [url=uploads/3966/forum/NotificationTest.zip]NotificationTest[/url]
Thank you.
Luis.
Read More...