Jump to content

Leaderboard


Popular Content

Showing content with the highest reputation on 01/27/21 in all areas

  1. FPiette

    TWebBrowser / SHDocVW problem

    It is likely that you have dcu for D10.3 found by D10.4 which result in the error you see. I'll assume you installed D10.4 in another directory than D10.3. Make sure the paths in Delphi options, in project options and global to the system are all pointing to the correct Delphi instance. Using SysInternals ProcessMonitor you can see which dcu files Delphi is using.
  2. Der schöne Günther

    Open File Location

    TPath.GetDirectoryName(..) from System.IoUtils will report "\\MySrv\MyFiles" for your file path. If I understood correctly, you want to open Windows explorer in the directory that contains your file. There is an even better way: Open Windows explorer in that directory, and already select that file. Here is how: https://stackoverflow.com/q/15300999/2298252
  3. balabuev

    Try-Finally-end; & Exit??

    try Exit; // Works. "Finally" code will be executed. finally Exit; // Compile error; but, will work in try/except. end; // ========== for i := 0 to 10 do begin try Break; // Works. "Finally" code will be executed. Continue; // finally Break; // Compile error; but, will work in try/except. Continue; // end; end; // ========== goto L1; // Compile error. goto L2; // try L1: finally L2: end; // ========== try goto L1; // Compile error. goto L2; // finally goto L1; // Compile error. goto L2; // end; L1: L2: // ========== try L2: goto L1; // Compile error. finally L1: goto L2; // Compile error. end; The above is just to summarize different kinds of jumps
  4. Hi, I see that embarcadero supports (in blog) android 5.1 but I can´t deploy. By default says that Install failed older sdk... Changing AndroidManifest.xml > set minSdkVersion = 22 (by default 23) I can deploy but app closes when start Thank you
  5. Mateus Vicente

    RAD 10.4 Android KeyboardType NumbersAndPunctuation not working

    @John van de Waeter the solution for your problem is add unit FMX.VirtualKeyboard.iOS.pas to the project and comment out two lines near the bottom of the file, on "function TCocoaVirtualKeyboardService.HideVirtualKeyboard: Boolean;": //if FTransient then // <- comment out this // Exit(False); // <- and this More info here: https://quality.embarcadero.com/browse/RSP-30045
  6. Gabriel_Cogima

    XCode 12 compile error

    Hi Guys ! So now i can build with Xcode 12 and for IOS 14 ! So the solution for me is : In project --> options --> version information --> CFBundleName, put : $(ModuleName) Now i can build my project for the AppStore (Thanks weabow !!!!!) Gabriel
×