Questions tagged [delphi-2010]

Delphi 2010 is a specific version of Delphi. Delphi 2010 was released in August 2009, and is available as a standalone product or as part of RAD Studio 2010.

Delphi 2010 is a specific version of Delphi.

Delphi 2010 was released in August 2009, and is available as a standalone product or as part of RAD Studio 2010.

Delphi 2010 codename is Weaver.

Some of the major features of the Delphi 2010 release include:

  • The introduction of a new, rich RTTI (reflection) API that far exceeds the level of detail available in previous Delphi editions.
  • Full Windows 7 support at the compiler and standard library level.
  • Built-in VCL-level support for touch, multitouch and gesture input, even on earlier Windows versions without OS-level touch support.

Delphi 2010 was preceded by Delphi 2009 and succeeded by Delphi XE.

1635 questions
0
votes
3 answers

What is the preferred method of passing data between a service and an application

Possible Duplicate: Delphi 2009: How to communicate between Windows service & desktop application under Vista? I have a server running as a Windows service. To control the service and to display it's state I have an application running as a tray…
norgepaul
  • 6,013
  • 4
  • 43
  • 76
0
votes
2 answers

How do I get the current date time on a Post-build action in a Delphi build

I'm trying to save the compilation time of a project on a text file every time a project is compiled/built, so I've tried to put the following command in the project's options Post-Build Action: echo %date% %time% >…
Daniel Santos
  • 1,451
  • 15
  • 38
0
votes
3 answers

Building Installation Disk for My Delphi 2010 Application

Can someone please give me a step by step on how to build an installation disk for my Delphi 2010 application? I have tried both InstallAware Express Edition which comes with Delphi 2010 but keeps on giving me error message for it continue to look…
Snackmoore
  • 905
  • 3
  • 18
  • 32
0
votes
1 answer

TErrorSeries in "TeeChart"

I need to creat a terrorseries with tpointseries, like what appears in this link: http://www.teechart.net/support/viewtopic.php?p=46388 In each 'X' will have some of error series, but they need to be drawn side by side for each XValue. I managed to…
0
votes
3 answers

InstallAware problem with Delphi 2010

I am trying to create an installation disk with InstallAware Express for my Delphi 2010 application. I have selected (checked) CodeGear Database Express12 CodeGear Visual Component Library 12 for Application Runtime. When I try to build it, I will…
Snackmoore
  • 905
  • 3
  • 18
  • 32
0
votes
1 answer

How can i read/set atribut for object soap

If i use VB .NET follow code it work good. But How can i realize it on delphi 2010. My problem is to find analog the r.MessageData.AppData.Any. I try to use rootNode :=…
0
votes
1 answer

How to consume TDatasource Component by coding returned through delphi webservice in a delphi VLC Form

I have made a cgi web service. The code is below: unit MyServicesImpl; interface uses Soap.InvokeRegistry, System.Types, Soap.XSBuiltIns, MyServicesIntf, Data.DB, Data.SqlExpr, SQLConnection1, Data.Win.ADODB; type { TMyServices } …
Akshay Jamwal
  • 23
  • 1
  • 7
0
votes
1 answer

Create a Ribbon Control in Delphi with Combobox as one of the control?

I am a newbie to using Delphi 2010 to write Ribbon Control... I wanted a comboBox control with 5 to 6 lines for user to choose from on my ribbon... I've set the CommandStyle of the TActionClient to csCombobox and I had a hard time figuring out how…
Snackmoore
  • 905
  • 3
  • 18
  • 32
0
votes
0 answers

How to configure package dependencies by an external file?

I would affect the installation of certain components in a package through a configuration file. I try to write the .dpk of the package as follows: package Package1; {$I ..\CONFIG.INC} {$ALIGN 8} {$ASSERTIONS ON} {$BOOLEVAL OFF} {$DEBUGINFO…
0
votes
2 answers

Change database query at runtime

I'm trying to filter a TDBGrid via a TEdit, handling the TEdit onChange event. I have a TIBQuery to list all the records in the grid: SELECT id,obra,cliente,fecha,nro_estudio,sondeo FROM proyecto; When the user inserts characters in the TEdit, the…
ramiromd
  • 2,019
  • 8
  • 33
  • 62
0
votes
1 answer

Get all components linked to a datasource

I am currently trying to change properties for hug components depending on state of other component using what RTTI provide but i can't figure out how to retrieve all links between DataSource and DataAware components... that's what i would like to…
S.FATEH
  • 451
  • 8
  • 16
0
votes
3 answers

Help with sending number to Excel 2007 from Delphi 2010 as a string

I'm sending a number to Excel 2007 as a string (Cell.Value := '2,5') using late binding. The actual code is more like: var CellVal: OLEVariant; ... CellVal := FloatToStr(2.5); // Regionally formatted. Cell.Value := CellVal; On my Excel 97…
MarkF
  • 1,616
  • 1
  • 17
  • 27
0
votes
1 answer

Open a Workbook and Run a Macro From Another - Delphi 2010

I'm trying to open a Excel workbook and run a macro in it, but the macro is localized in another workbook, like this: Excel := CreateOleObject('Excel.Application'); Excel.Workbooks.Open('C:\Documents and…
V.Salles
  • 403
  • 2
  • 9
  • 16
0
votes
1 answer

Delphi packages usage

I have a bunch of procs and funcs that I intend to use for all my projects. Therefore, I created and installed a package (MyLib.bpl), with all those procs and funcs to act as a global library. Now, I want the editor to understand that when I write…
user2383818
  • 709
  • 1
  • 8
  • 19
0
votes
1 answer

onKeyUp Delphi skipping ever other occurrence

Am using TJvUltimGrid, when pressing either the up or down arrow, to move from one record to the next, the event fires every other press. Does anyone have any ideas why it does not fire on every press and what I can do to fix it? The dataset is a…
Doug
  • 1
  • 2
1 2 3
99
100