Posts by Carlos Henrique • 211 points
6 posts
-
1
votes1
answer220
viewsA: Back Button does not appear in Navigationbar Xamarinforms
In case in your menu harmburger you are on the "Root" screen it will not even appear. I used in my project according to the selected item as Pushmodalasync, in this case it does not have the back…
-
1
votes2
answers205
viewsA: Alert p/o programmer when opening Form (Designer)
In the "Father" Form Keydown try to apply this. if (( Shift = [ ssctrl, ssalt, ssshift ] ) and ( Key = VK_F12 )) and (DebugHook <> 0) then begin ShowMessage(Self.UnitName); Clipboard.AsText :=…
delphianswered Carlos Henrique 211 -
0
votes1
answer1231
viewsA: Delphi XE8 + Android - Splash screen closes before the app loads and shows black screen for a long time
Check what has been implemented in the creation of the first Tform, may be loading something in onCreate or onShow, check the amount of forms you are creating when opening the application. In case…
-
0
votes3
answers273
viewsA: Delphi Xe5 + Android: error installing APP on Sony Xperia E1
I believe that these "Faults" are due to the version of your Delphi, try to run them in a Delphi XE7 update 1 or later, I believe you have already fixed this failure.
-
2
votes2
answers755
viewsA: How to display letters from removable disk drives in Delphi?
this can help you, it adds in a list all the drives you need. uses ... FileCtrl, Vcl.StdCtrls function ListaDrives : TStringList; var Lista : TStringList; DriveNum : Integer; LetraDrive : Char;…
-
1
votes1
answer761
viewsA: How to put shade on a "label" in Delphi?
Dude, I believe this is only with third-party components, but I’ve got an example with shadow but not this one that you show us. Shadow Label procedure ShadowLabel(oForm : TWinControl; const sText :…