Questions tagged [delphi-xe2]

Delphi XE2 is a specific version of Delphi. Delphi XE2 was released on September 1, 2011 and is available as a standalone product or as part of RAD Studio XE2.

Delphi XE2 is a specific version of released on September 1, 2011.

Notable new features of Delphi XE2 are:

  • Support for 64 bit applications (on Windows only);
  • Inclusion of a new framework called that allows for cross platform development;
  • Cross platform development for Mac OS X and iOS(*) (in addition to Windows);
  • Live bindings, a new data binding concept for VCL and FireMonkey that supersedes data-awareness of controls.

*iOS projects require an extra development step using Xcode and the Free Pascal compiler on a Mac, but do deliver native iOS code.

Delphi XE2 was preceded by .

Always use the tag alongside this tag.

2598 questions
2
votes
2 answers

Smooth scroll string grid

I need a string grid which can scroll smoothly, as opposed to locking in the top row / left col positions. When you scroll a TStringGrid, the left visible column and top visible row snap into position along the top/left edges. I need the ability for…
Jerry Dodge
  • 26,858
  • 31
  • 155
  • 327
2
votes
2 answers

Minimize Delphi Form to System Tray using Timer

I am a Delphi learner. I am looking for solutions so that Delphi MainForm should be minimized to the System Tray instead of Taskbar using Timer. I have implemented the following codes. Here everything is fine except one. After minimizing the Form,…
Rubi Halder
  • 583
  • 3
  • 12
  • 24
2
votes
2 answers

Move form with BorderStyle bsNONE?

How to move form if the BorderStyle is set to bsNONE for border style? in firemonkey MAC OS X
user1581036
  • 61
  • 1
  • 7
2
votes
1 answer

Simple OpenGL Code not working

Just learning some OpenGL with delphi and trying something simple but not getting a result, I belive i should get a dark green form. But when i run this i get nothing. No errors either. maybe missing something? unit First1; interface uses …
Glen Morse
  • 2,437
  • 8
  • 51
  • 102
2
votes
1 answer

Adding OpenGL library to Delphi xe2

I was wanting to learn OpenGL using Delphi But never added an library to Delphi or even sure if this is what you need to do? Anyone give some steps on how i would add openGL to delphi so i could call it in the uses section?
Glen Morse
  • 2,437
  • 8
  • 51
  • 102
2
votes
1 answer

keep a form on top of other and stay focussed always

I have form1 and form2 in my DXE2 application. Form2 is shown by Form1. Is it possible for me to keep the form2 always on top and stay focused over Form1?. The main idea is, even if the user clicks on form1, focus should remain on form2 and the…
jimsweb
  • 1,082
  • 2
  • 17
  • 37
2
votes
3 answers

Preventing WM_DEVICECHANGE from dispatching

I'm developing a Windows 7 application which has to prevent WinDVD from triggering new disc availability when inserted (i.e. inserting a DVD). Background information: I'm working out this little application for a company which has to compare two…
Superc
  • 159
  • 1
  • 8
2
votes
1 answer

Delphi Form Minimize and Restore using Timer

I am a delphi learner. I am having one Delphi Progect with "MainForm", "MinimizeTimer" and "RestoreTimer". I have defined the following codes. Minimize Timer : if MainForm.AlphaBlendValue >= 225 then begin MinimizeTimer.Enabled := true; …
Rubi Halder
  • 583
  • 3
  • 12
  • 24
2
votes
1 answer

Delphi XE2 - Unable to connect to Gmail smtp server via SSL

Using Delphi XE2, Indy 10 that ships with it and OpenSSL dll's version 1.0.1c. We are in the final stages of converting our Delphi 6 project to Delphi XE2. We have solved every show stopper so far but I am running into one trying to connect to Gmail…
TJ Asher
  • 737
  • 9
  • 27
2
votes
7 answers

How to search for many variations of a substring in string

I am trying to search a for a sub string in a string, but figure there has to be a more efficient way then this.. //search for volume if AnsiContainsStr(SearchString, 'v1') then Volume := '1'; if…
Glen Morse
  • 2,437
  • 8
  • 51
  • 102
2
votes
2 answers

Shift in the right of last item of the menu

Delphi Xe2U4. Main menu items: File, Option, Help (name: HelpMenuItem). 2 buttons. Use StyleManager Xe2 (in project option enabled xe2 themes, and default set 'Metro Blue'). Procedure TForm1.RightMenu; // Shift in the right of last item of the…
Gu.
  • 1,947
  • 4
  • 30
  • 49
2
votes
4 answers

How to start over a count

I am trying to keep a 1-10 count and if the count goes over 10 it starts back at 1 Tick := 5; currentTick := 8; Now FinalTick is going to be CurrentTick + Tick but once the value is 10 it should stat over at 1 thus in this case 5 + 8 = 3 How do I…
Glen Morse
  • 2,437
  • 8
  • 51
  • 102
2
votes
1 answer

Delphi parented window stays at top of others when created in a modal form

I create a window, that should highlight a control on a form. This window should not stay on top of other application windows when the parent form is behind another window (try Alt+Tab). This works fine unless the red frame has been created from a…
oxo
  • 946
  • 9
  • 21
2
votes
1 answer

How to publish a calendar using webCal

My application generates a complex calendar at runtime, so any user has tasks for a specific date/time and every task has a description + some properties. I have been requested to "publish" this calendar as webCal. I have no knowledge about webcal,…
UnDiUdin
  • 14,924
  • 39
  • 151
  • 249
2
votes
2 answers

Overbyte ICS HTTPS POST

I'm wanting to create a CloudFlare client in the Firemonkey framework. For those who don't know, CloudFlare serves as a CDN of sorts for anyone with a website. They have an API available, and as with many web API's, they are using JSON with a…
Scott P
  • 1,462
  • 1
  • 19
  • 31