Questions tagged [delphi-10-seattle]

Delphi 10 Seattle is a specific version of Delphi released in August 2015

Delphi 10.0 Seattle supports development of applications covering Windows 32-bit and 64-bit, 32-bit, 32-bit and 64-bit, and 32-bit. Windows applications may be built using either the framework or the (FMX) framework, whereas the rest of the supported platforms are built under the Firemonkey framework only.

Always use the tag alongside this tag.

626 questions
0
votes
0 answers

Installing GLscene in Delphi 10 Seattle bds

Before upgrading to Delphi 10 Seattle I got a demo copy in the site and tried to install GLscene following strictly the instructions in file:///C:/GLScene_VCL/_Installation/Installation.htm. Everything was going well and I could go up to the step…
0
votes
1 answer

Configuration REST resources in mORMot

I want to configure pretty simple access to my REST resource, based on information (http://synopse.info/forum/viewtopic.php?id=1833) regarding REST routing in mORMot. I need to call url as localhost/api/apservice/station/1, but code below works only…
SpanishBoy
  • 2,105
  • 6
  • 28
  • 51
0
votes
3 answers

Fastest way to compare AnsiString

What would be the fastest way to check if an AnsiString equals some other AnsiString? Currently i am doing this to check if the string is equal: if AnsiCompareStr(mystring, 'helloworld') = 0 then ShowMessage('equal'); Also what would be the…
MRSNAPS
  • 89
  • 1
  • 6
0
votes
2 answers

Can't correctly setup SQL Server connection in mORMot

I try to setup connection to SQL Server and catch the error var GFireDACConnProp : TSQLDBFireDACConnectionProperties; GFFireDACConn: TSQLDBFireDACConnection; begin try GFireDACConnProp :=…
SpanishBoy
  • 2,105
  • 6
  • 28
  • 51
-1
votes
1 answer

How to install a TMS component from old versions?

Previously I worked on a project in Delphi XE7 and now want to open and edit it in Delphi 10 Seattle. I had used TMS component pack but my old TMS is for Delphi XE7. Actually, I don't want to buy a newer version but want to use some of that old…
-1
votes
2 answers

How to create multiple conditions in Case command?

Ex: var Msg: Cardinal; case Msg of WM_CHAR: WM_KEYDOWN: WM_KEYUP: begin // Do something end; end;
FLASHCODER
  • 1
  • 7
  • 24
-1
votes
2 answers

How make a simply send/receive of integer value using native WinSock api in Delphi?

What is the right way of send/receive a integer value using native winsock in only one line, similar to C++ code below? i'm tried translate this, but not know if is right. Can someone help me please? C++: enum MyEnum { element01, element02 }; int…
FLASHCODER
  • 1
  • 7
  • 24
-1
votes
1 answer

RandomStr Missing Operator or Semicolon error

function Randomstring(strLen: Integer): string; var ID: string; begin ID := 'QWERTYUIOPASDFGHJKLZXCVBNMqwertyuiopasdfghjklzxcvbnm1234567890'; Result := ''; Repeat Result := Result + ID[Random(Length(ID)) + 1]; until (Length(Result) =…
RAT-Daddy
  • 45
  • 7
-1
votes
1 answer

sslv3 alert handshake failure Delphi

Delphi 10 seattle OpenSSL 1.0.0.10 but same result with more recent libraries. the following code has been working for about two years, but lately we are getting an error: 14094410:SSL3_read_bytes:sslv3 alert handshake failure Have used wireshark…
Y. Biscompte
  • 21
  • 1
  • 6
-1
votes
1 answer

How detect if i'm moving mouse to left, right, top or bottom inside TImage component on mousemove event?

I want know how detect to what side i'm moving mouse: to left, right, top, bottom inside TImage component on mousemove event? Thank you.
user9672569
-1
votes
1 answer

Is possible hook EnumWindowsProc callback function?

I want know if is possible hook a callback function for example like EnumWindowsProc() using inline hook approach? and if yes, could provide a code snippet (example) please? Thank you. EDITION: EnumWindowsProc is a callback implemented in other…
user9672569
-1
votes
2 answers

undeclared identifier (TBlobStream)

When I declare a variable like this : Var Stream : TBlobStream; I get an error : undeclared identifier So what is the problem? How can I solve this?
Ilyes
  • 14,640
  • 4
  • 29
  • 55
-1
votes
1 answer

Delphi 10 Seattle - Enter gives more than entercode

I am quite new to Delphi 10 Seattle and suddenly I am getting some extra text everytime when pressing ENTER. This is very annoying... Anyone knows why this happens and how I can get back to a plain ENTER-code? When pressing ENTER it results in a…
Peter F
  • 29
  • 4
-1
votes
1 answer

Delphi and Teechart - change date-time for a runtime on the X-axes

Presently, i got a DBChart with multiple line series on it. I put the date-time of each record on the x-axes. Now, what i need is to change the date-time for a runtime. So basically, the first recorded date-time would represent 0.0hrs. Here some…
Carl
  • 23
  • 3
-1
votes
1 answer

Calculating HMAC hash in Android using Delphi 10

i'm using external DLL in VCL apps to calculate the HMAC sha256 hash,https://www.chilkatsoft.com/delphiDll.asp ,i need a way to do it for Android in Delphi 10, i couldn't find any that works for android in delphi, this the code to do it using…
unknown
  • 65
  • 1
  • 2
  • 9