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
4 answers

Charting recomendations for Delphi

I'm looking for a decent charting library to use with Delphi 2010. We dont want to require additional framework be installed on client PCs, so would like to avoid toolkits that use .Net, Java or Flash. The chart types we need are pretty straight…
Bruce McGee
  • 15,076
  • 6
  • 55
  • 70
0
votes
0 answers

at design time can't copy and paste on other container on the form

I have a custom component. At design time, I drop the component on the form. After that, I right-click on the component and select "Copy" from the drop-down menu. Then, I right-click on a tPanel that resides on the form, and select "Paste", but the…
user2383818
  • 709
  • 1
  • 8
  • 19
0
votes
2 answers

How do I (or if I can't) use Variants on simple DLLs?

I want to expose some functionality of a internal object as a DLL - but that functionality uses variants. But I need to know: I can export a function with Variant parameters and/or return - or is better to go to an string-only representation? What…
Fabricio Araujo
  • 3,810
  • 3
  • 28
  • 43
0
votes
2 answers

write specific line in tmemo according to line number

I am using the following to insert text from a text file into TMemo. procedure TForm1.Button1Click(Sender: TObject); var SL: TStringList; begin SL := TStringList.Create; try SL.LoadFromFile('c:\testimeng\keyfil.txt'); …
Pierre Kruger
  • 31
  • 2
  • 5
0
votes
0 answers

Is there any key differences between Delphi 2010's compiler and Delphi XE that could cause an EOS Error Code: 1158

As the question suggests I have an app that I can run perfectly fine after building under Delphi 2010, however if its compiled under Delphi XE I get the error: Project xyz.exe raised exception class EOSError with message 'System Error. Code 1158.…
Scott Alexander
  • 455
  • 2
  • 17
0
votes
2 answers

VNC DES authentication algorithm

I'm doing a client for VNC protocol (RFB). Everything is working from the part where I connect to server, to the part where I receive 'challenge' from server. The challenge is a 16-byte random, that should be encrypted with the password provided by…
user1526124
  • 229
  • 4
  • 20
0
votes
2 answers

How can I send Unicode characters (16 bit) with Serial port in Delphi 2010?

I have a problem in Delphi 2010. I would like to send from my PC some Unicode (16 bits) characters to the printer with serial port (COM port). I use the TCiaComPort component in D2010. For example: CiaComPort1.Open := True; \\I open the port Data :=…
0
votes
3 answers

Loading BDE BPL from another directory

Using Delphi 2010 and a patched version of the BDE I run into a problem loading the BDERTL140.bpl. Loading DCLBDE140.bpl from another directory then usual works fine. Only when I want to load the BDERTL140.bpl, it always tells me that it has been…
Ralph M. Rickenbach
  • 12,893
  • 5
  • 29
  • 49
0
votes
4 answers

Adding Delphi 6 third party component to Delphi 2010?

I have a few Delphi 6 third party components which I need to add to Delphi 2010 to begin my migration. Is it possible? The interface seem a lot different and I can't seem to find a way to do this? This help... My components: DBGridEasy, TSerial,…
Snackmoore
  • 905
  • 3
  • 18
  • 32
0
votes
1 answer

How to keep a global object in a Delphi DLL?

I have a simple DLL written in Delphi. It provides functions which operate on some read-only data, embedded as a resource. I found loading that resource on each call to be quite slow, so I want to put it in an object that sticks around between…
Thijs van Dien
  • 6,516
  • 1
  • 29
  • 48
0
votes
1 answer

Display how many days since last visit

I have a query that displays hotel guests stay data (START_DATE,END_DATE). I would like a label to display how many days passed since guests last visit relative to today. So,example, if guest left on the 29.3.2013 and I view the data, I would like…
user763539
  • 3,509
  • 6
  • 44
  • 103
0
votes
1 answer

Login to craigslist to retrieve account page using Delphi and Indy and SSL

I am trying to log into craigslist using Delphi, and retrieve my account page (in order to gather a listing of all my posts) However, I can't seem to get the login to work, what Am I doing wrong? function TfrmMain.Login: string; var IdHTTP:…
JakeSays
  • 2,048
  • 8
  • 29
  • 43
0
votes
1 answer

Saving deleted records to another table

I am deleting records from one table (based on a condition) like : procedure TForm3.AdvGlowButton1Click(Sender: TObject); begin if MessageDlg('Are you sure???' , mtConfirmation, [mbYes, mbNo], 0) = mrNo then Abort else Case…
user763539
  • 3,509
  • 6
  • 44
  • 103
0
votes
1 answer

List Index Out of Bounds on screen.forms

I do some reporting on a form with reportbuilder. On the main form I select some items on a grid and then a generate the reports of the items. I want to do this in a Tthread but i get an error 'List index out of bounds'. Here is the call…
Ravaut123
  • 2,764
  • 31
  • 46
0
votes
1 answer

Delphi 2010, DeHL, file not found

Have installed trial version of Delphi 2010, and hoped to get a look at DeHL. There must be something that I have missed out on, though, cause I can't find out how to include any of the units without getting a 'file not found'-error at compile…
Vegar
  • 12,828
  • 16
  • 85
  • 151
1 2 3
99
100