delphi-10-seattle Questions
1
Solved
I stumbled upon a bug in Delphi 10 Seattle Update 1. Lets take the following code :
procedure TForm1.Button1Click(Sender: TObject);
begin
//----------We crash here----------------
FList.Items[0]...
Camala asked 8/12, 2016 at 19:51
0
I'm try to improve some of the drawing that I'm doing in my project by provide antialiasing. I'm playing with a simple project using the Graphics32 Library instead of the standard delphi Canvas fun...
Pubilis asked 21/11, 2016 at 5:34
1
Solved
I'm trying to make a convenient function to convert a System.Classes.TShiftState into a user-readable string. To make it easier, I've made a subroutine to perform common code, to make the function ...
Bula asked 19/11, 2016 at 2:36
1
Everyone know tell me why Form.show is called before that Form.create if property Form.visible = true.
I tested in Delphi XE7 and Delphi 10 Seattle (Fmx form compiled for windows)
Ex:
procedure...
Edaedacious asked 23/9, 2016 at 18:29
1
Solved
I'm working with TStringList with TMemeorySteam a lot in my project.
msTmp := TMemoryStream.Create;
try
lTemp.SaveToStream(msTmp, TEncoding.Unicode);
finally
msTmp.Free;
end;
.....
lTemp :...
Sharell asked 22/6, 2016 at 2:8
1
Solved
I have a COM DLL project, and I am able to debug it (stop at breakpoints) in Delphi 2007 and XE8.
However, it seems to not be possible for the IDE to stop at breakpoints in Delphi 10 Seattle or 10...
Danaedanaher asked 14/6, 2016 at 10:25
1
Solved
I created a new style in the Bitmap Style Designer, saved it in the Styles folder, but I can't see it in the project options under the Appearances tab. What's wrong?
Skeg asked 12/5, 2016 at 14:5
1
Solved
I'm using the TFireMonkeyContainer control to embed a Firemonkey form inside a VCL application. Initially, everything works fine. However, whenever I do something which triggers a TChangeTabAction ...
Slagle asked 12/4, 2016 at 22:36
1
When I open and use Delphi project files in RAD Studio 10 Seattle IDE. It always create .stat files. Is there a way to stop creating the files?
Hach asked 16/9, 2015 at 0:45
1
Solved
I'm implementing Windows 10 Notification in my application. However, the code below (which runs fine) apparently give a memo leak of 1 TNotification object and 2 strings, yet I free the object at t...
Trichromatism asked 30/3, 2016 at 13:41
1
Delphi 10 Seattle Update1 has this bug fix: Additional high DPI support for the IDE (see http://edn.embarcadero.com/article/44619 )
I installed it on Windows 10 64 bit. My display resolution is: 38...
Winni asked 12/3, 2016 at 8:52
1
Solved
I am using DCPcrypt and SHA512 to hash strings.
I am using the version by Warren Postma https://bitbucket.org/wpostma/dcpcrypt2010
It is working fine. However it failes with german umlauts like ...
Mice asked 3/3, 2016 at 9:35
1
Solved
I am trying to implement GCM without BAAS in GCM. I have looked at previous examples using the bridge and from my research the following should work without relying on the old TGCMReceiver componen...
Shroud asked 23/2, 2016 at 23:43
1
Solved
I'm trying to add automated builds of our Delphi 10 Seattle projects to our build server (which currently builds all our .NET and Java projects).
Now that Delphi uses MSBUILD it integrates well wit...
Sievers asked 21/2, 2016 at 14:43
1
Solved
Having problem storing an array in a TQueue. Any idea where I go wrong?
Code works fine in Delphi XE 5 but not in Delphi 10 Seattle.
(I can't decide if this is a bug or how it should work. Tried ...
Rianon asked 13/1, 2016 at 8:17
1
Solved
I am trying to get types for record fields in order to create correct comparer (as general solution for any/almost any record type). I can't find type information for static arrays:
TArrFieldTest...
Fahey asked 12/1, 2016 at 15:3
3
Solved
I'm trying to build an custom comparer which allows the assignment of the comparison function to an internal field. In order to ease the creation of the comparer, I tried to add a constructor-like ...
Basilica asked 8/1, 2016 at 12:46
1
Solved
This code creates an AV:
function PAIsMainAppWindow(Wnd: THandle): Boolean;
var
ParentWnd: THandle;
ExStyle: DWORD;
begin
if IsWindowVisible(Wnd) then
begin
ParentWnd := THandle(GetWindowLong...
Iphigenia asked 18/12, 2015 at 16:19
1
Solved
I have a call to GetDIBits that works perfectly in 32-bit, but fails on 64-bit. Despite the different values for the handles the content of the bitmapinfo structure are the same.
Here is the small...
Stockist asked 18/12, 2015 at 14:44
0
The main goal here is to generate and receive Push Notifications for iOS using Delphi 10 Seattle.
I'm trying to follow this video but so far I've been able only to successfully send push notificat...
Skylar asked 4/12, 2015 at 11:35
1
Solved
Is there a difference between TParallel.&For and TParallel.For ?
Both can be compiled in Delphi 10 Seattle. so which one should I stick to?
Shayne asked 8/10, 2015 at 11:40
2
Solved
I am trying to install JCL/JVCL into Delphi-10-Seattle
I got the following Error:
Using Embarcadero RAD Studio 10 Seattle Embarcadero Delphi for Win32
compiler version 30.0...
E:\Delphi-10\Je...
Cleotildeclepe asked 19/9, 2015 at 18:47
1
Solved
Delphi Seattle has very big font as default , and I dont like it.
tried to change it as I did with XE8 with a script
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Embarcadero...
Sedda asked 4/9, 2015 at 7:47
1
Solved
I am trying to port some code that works in Delphi XE8 to Delphi 10 Seattle. This code calls the GetPath function in Winapi.Windows.
The new Win32 API function signature is:
function GetPath(DC: ...
Tackling asked 1/9, 2015 at 13:37
© 2022 - 2024 — McMap. All rights reserved.