Sayat E458

Current status: "Wow, this is wonderful" - 9 years ago
Member since: Tuesday, 18 March 2014
Last login: 5 years ago
Profile viewed: 1,411 views

Your Rank: 75
Points: 19

Sayat E458 started a new discussion About PAServer on Windows 8... 8 years ago

Hello, I Have a dll Project. I want to run this Project with paserver on remote. How can i pass my dll outpath dir on remote side and how can i pass my dll’s debug launcher application ? For example my dll should be run on C:\MyApp\MyApp.DLL (On Remote Side) And my debug launcher program should be run on C:\MyApp\MyDebugger.EXE (On Remote ...

Sayat E458 is friends with Malcolm

Sayat E458 is friends with Jim McKeeth

Sayat E458 replied to the topic 'Statusbar and formstyle bsnone' in the forum. 9 years ago

Additional Information:

Apple have made changes to the way hiding the status bar works in iOS 7. If you want your app to be full screen (i.e. minus the status bar), you’ll need to create a customised .plist file

This time, you’ll need to add the following to the customised .plist file:
<key>UIStatusBarHidden</key>
<true/>
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>

Notes: You’ll still need to set your forms BorderStyle to bsNone. If you’ve already deployed your app to the device, you may need to “uninstall” it in order for the new .plist file to be deployed. Also, if you want the status bar to show while your app is launching, omit the first key, i.e. UIStatusBarHidden, and its value.
Read More...

Sayat E458 thanks user 'sarina.dupont' in the forum message ' Develop Mobile/Tablet UI'. 9 years ago

Sayat E458 is friends with Sarina D

Sayat E458 is friends with NickHodges

Sayat E458 is friends with J T403

Sayat E458 replied to the topic 'Develop Mobile/Tablet UI' in the forum. 9 years ago

begin
Application.Initialize;
if IsTablet then
Application.CreateForm(TTabletForm, TabletForm)
else
Application.CreateForm(TPhoneForm, PhoneForm);
Application.Run;
end.
Read More...

Sayat E458 is friends with DavidI

Wow, this is wonderful