Michael Leahy

Current status: "In a race to beat Apple's Feb 1 deadline for 32bit apps." - 8 years ago
Member since: Monday, 02 March 2015
Last login: 4 years ago
Profile viewed: 3,924 views

Your Rank: 20
Points: 158

The event says Monday, 15 October but it does not say what time...

Michael Leahy replied to the topic 'Warning: W0020 Invalid jarsign option' in the forum. 5 years ago

It turns out that the name of the keystore file include spaces and an apostrophe.

Mike's Google Keystore.keystore.

Renaming the file to eliminate the apostrophe and the spaces got the project working.

Read More...

Michael Leahy created a new topic ' Warning: W0020 Invalid jarsign option' in the forum. 5 years ago

Delphi 10.2.3
Building for Android Application Store

I get this warning:

[PAClient Warning] Warning: W0020 Invalid jarsign option: C:\Program Files\Java\jdk1.8.0_60\bin\JarSigner.exe,.\Android\Release\COWMobileBuild30\bin\COWMobileBuild30-unsigned.apk,cow android key alias,C:\Users\Public\Documents\Embarcadero\Studio\19.0\CatalogRepository\AndroidSDK-2433_19.0.29899.2631\tools\Mike's Google Keystore.keystore,MD5withRSA,SHA1,851C47C05F940783CF7DE53CD171E33F81850535A05F97C997AA0FF88E783C8ADB56A385E3111C2FC1E2577DFAC4C363BA95367E043722D3163A459DE5E4229DC938F341D558FA9BBFF8AF1172218595,851C47C0645855D8A342711DD129E36881D0051BA043979397B40FAB8E363C94DB04A3D7E3401C39C1CC5752FACFC338BAF83613042722C3164B45C2E5BA22DBC90AF35DEE8AA8C8D3DE3B1E72218595,1, ignored

...and then it fails to complete the build saying...

[INSTALL_PARSE_FAILED_INCONSISTENT_CERTIFICATES]

What am I missing?

Read More...

Michael Leahy thanked Jochen H25508 in topic Forums unusable 5 years ago
Michael Leahy thanked Remy Lebeau in topic Forums unusable 5 years ago
Michael Leahy thanked Totte Karlsson in topic Forums unusable 5 years ago

Michael Leahy is friends with Atanas

Michael Leahy replied to the topic 'FireDAC SQLite is 12 times slower on Mac' in the forum. 7 years ago

The query speed is back to normal after adding this workaround:
fSQLite3Connection.ResourceOptions.SilentMode := True;

Read More...

Michael Leahy created a new topic ' How to load a web page' in the forum. 8 years ago

In FireUI (using Delphi XE7) how do I open a web page? I need a solution that works on Windows and Macintosh.

I used to use...

  ShellExecute(Handle, 'open', 'http://www.google.com',nil,nil, SW_SHOWNORMAL) ;





...but the Delphi help file doesn't even mention ShellExecute().

Read More...

Why does this wacky post have my picture in it?

Read More...

DavidI is friends with Michael Leahy

Michael Leahy started a new discussion how to access FireDACQuery fie... 8 years ago

FireDAC newbie here. How do I figure out in code what fields are in a query? And then get the values of those fields? For example, I get the SQLite version with this code: [code type="xml"] fFireDACQuery.SQL.Text := 'select SQLite_version()'; fFireDACQuery.Open; Assert(fFireDACQuery.RecordCount = 1, 'SQLite_version did not return ...

Michael Leahy added a reply in discussion FireDAC SQLite version... 8 years ago

Thanks, Robert. I added this code: [code type="xml"] fFireDACQuery.SQL.Text := 'select SQLite_version()'; fFireDACQuery.Open; Assert(fFireDACQuery.RecordCount = 1, 'SQLite_version did not return exactly one record.'); ShowMessage(IntToStr(fFireDACQuery.ParamCount)); [/code] The ParamCount comes back zer...

Michael Leahy started a new discussion FireDAC SQLite version... 8 years ago

I'm trying to pin why SQLite on OS-X is twelve times slower than on Windows. With Delphi XE7 FireUI at runtime, how can my app find the version of SQLite that is being used by both Windows and OS-X?...

Michael Leahy started a new discussion click handling in FireUI... 8 years ago

In the VCL, when I click down in a TListBox and drag the mouse outside of the TListBox and release the mouse I do not get a MouseUp event. In FireUI, I do get an unwanted MouseUp event. How can I work around this?...

Michael Leahy added a reply in discussion Screen position for a TButton?... 8 years ago

Thanks, Jayden. The listbox's X & Y kept coming back as zero so I finally settled on... MyPopupMenu.Popup(Screen.MousePos.X, Screen.MousePos.Y);...

Michael Leahy started a new discussion Screen position for a TButton?... 8 years ago

[code type="xml"]procedure TEbookWindow.DoCandidateEditClick(Sender: TObject); var MyListItem: TMyListBoxItem; begin MyListItem := TMyListBoxItem(FindItemParent(Sender as TFMXObject, TCandidateListBoxItem)); if Assigned(MyListItem) then MyPopupMenu.Popup(Trunc((Sender as TButton).Position.X) + Self.Left, ...

Michael Leahy replied to the topic 'FireDAC SQLite is 12 times slower on Mac' in the forum. 8 years ago

Thanks.

Again as I noted, I could not reach forums.embarcadero.com for about 36 hours before I crossposted here.
Read More...