Questions tagged [delphi-xe7]

Delphi XE7 is a specific version of Delphi released in September 2014.

Delphi XE7 is a specific version of Delphi released in September 2014. It supports development of applications covering Win32, Win64, OSX, iOS, and Android. Windows applications (32bit and 64bit) may be built using either the VCL framework or the Firemonkey (FMX) framework, whereas the rest of the supported platforms are built under the Firemonkey framework.

Always use the tag alongside this tag.

909 questions
-2
votes
1 answer

When computer take order to shutdown , I need to save file

How I can save the content of Listbox to file When the computer shutting down or sleeping, or restarting ??? I use Delphi XE7 , I do save the file , and I have no problem with it ! but I want to save the file when computer shutting down . update my…
Adam
  • 78
  • 2
  • 11
-2
votes
1 answer

Indy TIdSSLIOHandlerSocketOpenSSL implementation

I am trying to connect call an https:// service from an Android application. I am getting the error that the IOHandler value is not valid. After scouring the forums I found that I need to create a TIDSSLIOHandlerOpenSSL object and assign a value to…
-2
votes
1 answer

Determine proxy type in Delphi XE7

I am currently working on an application which have to determine the type (CONNECT, Socks4, Socks5 etc.) of one or more given proxies and connect through them. Unfortunately I have no approach to reach my goals and hope somebody can help me. I saw…
-2
votes
1 answer

How to get FireMonkey Framework on RAD Studio XE7

I have RAD Studio XE7 installed on my computer and i have everything like VCL Forms for Delphi, C++.etc but how do i manage to get FireMonkey HD and 3D application frameworks for Delphi and C++ Builder both in RAD Studio XE7.Do I have to download it…
Sudhir Sundar
  • 41
  • 1
  • 1
  • 9
-2
votes
1 answer

Need to convert hex value to ascii dec with # sign in front

check1, check2: AnsiString; begin //How come this works? check1 := #130;// Checksum // But not this check2 := '#' + IntToStr($82); end; If I know the checksum it works and assigns the check variable with #130. But when I calculate…
-2
votes
1 answer

Delphi write pixel colors to memo

I Want to make a program, that can write my TImage pixels rgb color to a memo, the program don't know the resolution. so how can i recover every pixel color to String variable (R,G,B)? code var…
totyak
  • 1
  • 5
-2
votes
2 answers

Replace the icon of a VCL form with the icon of another .exe file at runtime?

With Delphi XE7, I want to change the icon of the current VCL form (not of the application) at runtime. So I tried this code: procedure TForm1.LoadExeIcon(const AExeFileName: string); var Icon: TIcon; begin Icon := TIcon.Create; try …
user1580348
  • 5,721
  • 4
  • 43
  • 105
-2
votes
1 answer

Delphi XE7 iOs Developing

I'm trying to set up the environment for installing an iOS App developed by Delphi XE7. The thing is my Mac OS X is the version 10.6.8 and the higgest Xcode I can install is the 3.2. Is it possible to work with such scenario?
user2210837
  • 95
  • 1
  • 3
  • 14
-2
votes
1 answer

Print upon Dependent Switches

Say that I have three switches, namely SW_A, SW_B, and SW_ALL. When SW_A is clicked (from off to on), TMemo prints 'SW_A is on', and the same works for SW_B. However, when SW_ALL is clicked(from off to on), TMemo prints 'SW_ALL is on', and SW_A and…
Alvin Lin
  • 199
  • 2
  • 5
  • 13
-2
votes
2 answers

How to generate installer application delphi xe7

I have just finish a small delphi xe7 application, which need some dll file for working. How should i create the application installer .exe for installing such application in other pc?
user2210837
  • 95
  • 1
  • 3
  • 14
-2
votes
1 answer

Encrypt and decrypt a Unicode string

Can someone give me the code to encrypt and decrypt a Unicode strings in delphi firemonkey Mobile? I've tried everything with xor with other libraries , and nothing. There are always characters that are not recognized as the euro symbol € . If…
elcharlie
  • 511
  • 8
  • 25
-3
votes
2 answers

Using SetCurrentDir and WinExec32AndWait within TParallel.For skips some iterations

I have a problem with number of iterations in Tparallel.for. i have 100 folder and in each folder exist a file to be run (run.bat). After run the out.txt file is created in folder.when i use Tparalle.for with 100 iterations, i recieve randomly 90 to…
AMIR
  • 11
  • 1
-3
votes
2 answers

TResourceStream not working if I run my application from another using shellExecute

I have two applications everyone do different tasks, the first application runs the second one using shellExecute. ShellExecute(Handle, nil, PChar('D:\Project2.exe'), nil, nil, SW_SHOWNORMAL); ShellExecute(Handle, nil, PChar('cmd.exe'), PChar('/C…
K.MuS
  • 141
  • 1
  • 10
-3
votes
1 answer

delphi call delphi dll memory leak caused by pchar

So lets take about dll. If you want to pass a string to a dll call, you must make the procedure input PChar. Else you get data curroption. so we say that our dll has procedure LookPchar(pfff:Pchar);stdCall;External 'OutDll.dll'; which is nice.…
none
  • 4,669
  • 14
  • 62
  • 102
-3
votes
1 answer

Designing a logging system

I have a program that needs to process files at batch. Instead of showing errors in message boxes on screen (which will pause the execution of the program) I need to show those error messages in a Log that the user can see as the program…
Gabriel
  • 20,797
  • 27
  • 159
  • 293
1 2 3
60
61