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
-3
votes
2 answers

How can i define typed constant and use it in functions argument

When i defined typed constant can't use it in default value of functions argument, for example: const DEFC :Char = ','; function fun(delimiter :char=DEFC); When run this code compiler show this error : [dcc32 Error] : E2026 Constant…
MohsenB
  • 1,669
  • 18
  • 29
-3
votes
1 answer

Error in ShellLink creation with negative IconIndex value

In Delphi XE7, I use this code to create a SHELL LINK pointing to a specific folder. This folder is displayed in Windows Explorer with a custom folder icon defined by a desktop.ini file inside this folder. The SHELL LINK should be created with the…
user1580348
  • 5,721
  • 4
  • 43
  • 105
-3
votes
2 answers

Application terminates for no apparent reason

I have setup my login procedure with an available form (Form4) and a MainForm. On the available form (form4) I have: var Form4: TForm4; procedure Login; implementation ..... The 'Login' procedure goes: procedure Login; begin with…
user763539
  • 3,509
  • 6
  • 44
  • 103
-3
votes
2 answers

Hooking InternetStatusCallback

I am trying to hook the asynchronous callback from Wininet which get's called from TWebbrowser. However there is an error after the hooking is done. Why does this happen? First chance exception at $0018B7A2. Exception class $C000008C with message…
John Lewis
  • 337
  • 3
  • 12
-3
votes
1 answer

Delphi Android Solution / ARM7 with NEON marketshare?

When developing an app for Android using Delphi I need to know the market share it supports (for a customer) The version requirements is okay ~roughly 99% af active phones: http://en.wikipedia.org/wiki/Android_version_history But what is the…
Tom
  • 3,587
  • 9
  • 69
  • 124
-3
votes
1 answer

DELPHI XE7 [dcc32 Error] E2250 There is no overloaded version of 'Pos' that can be called with these arguments

DELPHI XE7 on win7 32bit code: procedure TForm1.IdMappedPortTCP1Execute(AContext: TIdContext); begin if (pos('CONNECT',AContext)<>0) or (pos('GET',AContext)<>0) or (pos('POST',AContext)<>0) or …
Sugie DK
  • 1
  • 1
  • 3
-4
votes
1 answer

How to use dxRibbon component? Help me

I have used dxRibbon component. But while compiling it raises the error file not found dxribboncustomizationform.dcu What should I do???
-5
votes
1 answer

How to resolve undeclared identifier problems

I am pretty new in Delphi XE7, got a project and tried to build it, but it gives error like undeclared identifier 'Images' in the line.. (TContainedAction(Action).ActionList.Images.Draw(ACanvas, GlyphRect.Left, GlyphRect.Top) and…
-7
votes
1 answer

Trim in delphi xe7

I am using the trim function to a string but as I see it is not working well. I have text, text_trim: string and I do : text := memo1.text; text_trim := text.Trim; But it is not working. It just copies the string. If I write for example in the…
igli
  • 40
  • 1
  • 3
1 2 3
60
61