Sayat E458

Your Rank: 75
Points: 19
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
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 is friends with Sarina D
Sayat E458 is friends with NickHodges
Sayat E458 is friends with J T403
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