Delphi 7, released in August 2002, is one of the most popular and widely used version of Delphi. It is a very capable and stable release that is still widely used today for Windows-based Object Oriented Programming.

learn more… | top users | synonyms

-1
votes
0answers
82 views

Delphi, redirecting StdOut with WinExecAndWait32

In Delphi7, I use WinExecAndWait32 to call a program:cmd.exe, redirecting the output: cmd.exe /C mickey.pl >D:\TEMP\dosLog.txt This command create an empty file dosLog.txt . But if I run it ...
0
votes
0answers
5 views

modifying value of a control with ollydbg?

I have a win32 executable file that build by Borland Delphi 7.0. I want to crack it! I disassembled it by DeDe and found a control: object SP_2_1: TSpinEdit Left = 152 ...
1
vote
1answer
57 views

Inaccessible field error

Sometimes when I write a Class and then test it, I get the error in the picture at the bottom, and when I try to debug it the editor shows me that the attributes I want to access are "inaccessible ...
0
votes
1answer
63 views

Create an on click event handler for an array of Radiobuttons

I have created an array of radiobuttons, which will be created in an event. I want to create an event, saying to make the radiobutton invisible when it is clicked and the show a message. But it has to ...
1
vote
3answers
87 views

Detect TCP connection/disconnection in Delphi

My application has a server form that includes a StringGrid. The server only allows 4 clients to be connected at once. It will add any tcp connections from the client-side while the list is not full. ...
4
votes
1answer
70 views

Error “Record, object or class type required” when using a wrapper type of an array

I have got two arapper types for easy handling /returning of one-dimensional Arrays, and I want so write a method to convert one to another (a 2d-float-Vector class to a 2d-int-point class). Wrote a ...
0
votes
1answer
34 views

How to create a dialog at runtime and get a return value?

I want to create a dialog from current form class, and expect to get back a value from the dialog. This is sample coding. with TFormClass(FindClass('Tf_dialog_partner')).Create(Application) do try ...
1
vote
0answers
94 views

TCPserver/client Delphi

my server has a list of TCP connected clients . if list full , next client must reject //Server side //add new tcp connection to string grid procedure TForm1.ADDTCPConn(AThread: ...
-1
votes
0answers
28 views

HTTP 403 Forbidden Error with IdHTTP1.Get

I have a program that gets data from a txt file hosted at iPage. (http://cpcheats.co/stuff/itemids.txt) It worked fine, until I switched hosts. Now, when I run the program it has a HTTP 403 Forbidden ...
1
vote
1answer
100 views

Delphi still keep on memory and do not release, why?

On my project, I am using inherited MDIChild forms from base form. My problem is about memory management. After release forms ( by FreeAndNil) with FormClose events, Delphi still keep on memory and do ...
2
votes
3answers
85 views

TMainMenu in Delphi

I have two separate forms in my application. I created one additional empty form and placed a TMainMenu component on it with two menu items. This new form will serve as the main form from which ...
0
votes
1answer
89 views

Modern Win7 Open/Save dialog for Delphi 7 app

Im using Delphi7 with TNT controls. Is there a way to call modern Open/Save dialogs on Win7? Maybe a patch to VCL, patch to TNT? TNT patch is preferred as I need Unicode aware dialogs, but VCL patch ...
-1
votes
1answer
125 views

Incompatible types: 'Byte' and 'String'

I get the compiler error Incompatible types: 'Byte' and 'String' on the following function: IntToStr(DiskSize('F:\')) I want to convert the disk size to a string. How to solve this problem?
0
votes
1answer
25 views

how to get dataset in delphi that generate in asp.net webservice

i wrote a webservice in asp.net that have select function that it's parameter is a string , return a dataset like this: [WebMethod] public DataSet Select(string query) { DataTable dt = new ...
0
votes
1answer
49 views

Client's udpserver don't response

My server form has stringgride that accept only 4 tcp connected user For this purpose, I put udpclient in my server and udpserver in clients In tcp-onconnect event in server form : //Server Side ...
0
votes
1answer
14 views

Why i get NAN value when storing mmioRead result in double?

Why i get NAN value when trying to read .wav file and directly store it sample data in double? Before thinking about using this i was store the sample data in smallint and then convert it to double by ...
-5
votes
1answer
84 views

Exporting same DLL function under multiple names [closed]

I have made some functions in my DLL, like this: procedure DoThis(A: PChar): Boolean; stdcall; begin f := TFileStreamCreate(A, fmCreate); f.read() f.free; end; then I exported it under 2 names: ...
-4
votes
2answers
86 views

Delphi7, Load images that is not bmp [closed]

Well, in my application, you can select an image and put it in the form using opendialog. The problem is that the image won't be loaded, unless it's bitmap. So what do you suggest me to do?
1
vote
0answers
55 views

Access controls on other windows - 2

I wrote a Delphi program 4 or 5 years ago, now, I have .exe file, but I lost my source. I'm a C# programmer (beginner :D) now. for some resons, I need to change the text of a textBox in my Delphi ...
-1
votes
1answer
88 views

Error Exception EOLeSysError class not registered Class Not Found Delphi 7 [closed]

I can successfully import and install type library *.OCX with Delphi 7. (Project - import type library - add - ...) But when I use that Component, it shows the following message: Error EOLeSysError ...
0
votes
4answers
95 views

Delphi not showing object/component “hints” when I am codding

If i'm not mistaken delphi has the ability to show a list of options after you insert a component name followed by the "." (dot) that precedes more arguments. My delphi 7 is not showing this list ...
0
votes
1answer
35 views

EmbeddedWB useragent not work in windows 7 64 bit

I am using EmbeddedWB component in delphi 7. I changed useragent and it is work in windows XP, but user agent is not changed in windows 7 64 bit. Do you know any idea? Is there any other solution for ...
0
votes
1answer
22 views

EIdReplyIMAP4Error in Indy

What are possible causes to look into for an "EIdReplyIMAP4Error" exception? This is in regards to connecting to an IMAP4 account using SSL/TLS. sslvSSLv23 for the SSLOptions.Method and ...
-1
votes
1answer
43 views

Unable to scroll form after I place a dbgrid [closed]

I have a problem with form autoscroll . If I don't place a DBgrid on my form then I can scroll my form. If I do, then the form can't be scrolled via the by mouse wheel. OS: windowsxp sp3
6
votes
3answers
346 views

Delphi XE3 EXE file size 25 times larger than Dephi 7

As a test I decided to create a simple "Hello world" app in Delphi using Delphi 4, 5, 6, 7, 2005, 2010 and XE3. The app is nothing more than a TForm, a TButton with an OnClick event that calls ...
1
vote
1answer
109 views

Sending/Passing local variable from one procedure to another in Delphi 7?

How can i send/passing local variable in a procedure to another procedure in delphi? procedure TForm1.Button1Click(Sender: TObject); var a,b:integer; c: array [o..3] smallint; begin a:=1; b:=2; ...
0
votes
1answer
35 views

update statement throw exception

I wrote this query: Ado_All.Parameters.Clear; Ado_All.SQL.Clear; Ado_All.SQL.Add('update Tbl_Customer_Services set fk_Customer =:0, fk_Services =:1, Start_Date =:2, End_Date=:3'); ...
1
vote
1answer
55 views

ADOQuery.Filter not working with LIKE

I have a query in ADOQuery2. Now I want have a filter for that so: ADOQuery2.Filter := 'where Fname like ' + QuotedStr(Txt_Search.Text + '*'); ADOQuery2.Filtered := true; but it throws this ...
1
vote
3answers
155 views

TDBGrid doesn't update when multiple users are editing it

I am developing an application which has a simple database. All of the functions are going well but when a user is editing the database from the program, the other user cannot see the content ...
0
votes
1answer
30 views

Determining video file properties using DSpack and Delphi7

I would like to determine various properties from a video file (eg MP4) such as the length of the video etc but I have no experience of working with multimedia Can anyone help Thanks MIke
0
votes
0answers
70 views

installation failure when installing jcl-2.4.1.4571 for delphi 7

when installing jcl-2.4.1.4571 for delphi 7 , I ran across following failure message: File not found: 'Docktoolform.dcu' Could anyone help me ?
1
vote
3answers
133 views

Method in Delphi to set database connections to disconnected upon compile

Is there a method or compiler directive or some way of assuring certain components, such as queries or database connections get set to active=false or disconnected when you run a build/compile? Seems ...
1
vote
2answers
101 views

Comparing Tables in Delphi without SQL

I'm having problems while using Tables in a Paradox Data Base in Delphi. I need to compare two tables and verify which fields are identical and which are different. At the end, both tables must ...
0
votes
1answer
73 views

How to send video converted to bitmap to Client using Indy TCPServer/Client?

By the way, I'm sorry for my bad english. I want to create a streaming video system between client and server using Indy with this scenario, Webcam with stepper motors connected directly to the server ...
0
votes
0answers
56 views

Delphi 7 Component for voice streaming over IP [closed]

I am trying to develop a system where user can do voice chat through PC connected to the LAN. For that purpose I am looking for a Delphi 7 component. OR please help me if there is any other way to ...
2
votes
1answer
118 views

Passing object reference as an Interface

I'm passing created object to a constructor of another object which need an Interface which that object implements. ISomeInterface = interface ['{840D46BA-B9FB-4273-BF56-AD0BE40AA3F9}'] end; ...
-1
votes
1answer
61 views

Displaying the result of mmioRead

After locating the data chunk using mmioDescend, then how i suppose to read and display the sample data into for example into a memo in delphi 7? I have follow the step like open the file, locating ...
1
vote
1answer
167 views

Threaded Delphi ADO Query

I have a query code that i can call every time I need to fetch data from the database, and I want it to be threaded. Not sure how to implement this in a thread so I can reuse this code, basically, I ...
0
votes
2answers
95 views

.wav sample data value starting index?

I've been use this code to read .wav data in delphi and i've been comparing the result with value i got from matlab function wavread. From which i can say that matlab function can automatically ...
-1
votes
1answer
88 views

How to protect components being declared in published clause from being accessed from another form

I have a form with a bunch of labels used from another forms. I came to conclusion that it is not efficient way as form may not be assigned sometimes. So I think it is not good to check if the form ...
-1
votes
1answer
123 views

Read .wav file using delphi

I now currently try to read .wav file using delphi here is my code : type TWaveHeader = packed record Marker_RIFF: array [0..3] of char; ChunkSize: cardinal; Marker_WAVE: array [0..3] ...
-2
votes
1answer
74 views

Delphi: DKLang: can someone fix issue with 2 forms of the same class

DKLang is Localization package. I have an old issue when 2 or more forms of the same class aren't translated (only 1st of them is translated, others are in English). I mean forms created dynamically. ...
-1
votes
0answers
68 views

Implementing TSession [duplicate]

Currently I am using TDatabase connected:=True prperty to connect to the database at the starting of application and use TQuery to execute queries. `procedure TfrmTrwMain.SqlDatabaseLogin(Database: ...
0
votes
0answers
51 views

Delphi TChart TowerSeries stacked

I'd like to have a 3D-TChart with two stacked Tower-Series. I think, this is possible since 2012 in TChart for .NET (http://www.steema.com/entry/87/New_Tower_Series_stacked_for_TeeChart_for_.NET_). ...
0
votes
1answer
59 views

Delphi can't recognize Russian characters

I have an English version of the Windows XP operating system installed on my computer. If I try to use the Russian input language, for example, to give a form a caption that's written in Russian, the ...
3
votes
2answers
93 views

The anchor property of components when the application is maximized in Delphi

I have three buttons placed at the right on my form. The buttons' anchor property parameters akTop, akRight are set to true, the other ones left to false so that the buttons always remain at the right ...
3
votes
2answers
171 views

How to make edit control not accept 0 as first digit?

Well, I have an edit that takes only numbers (no letters, no symbols, only numbers). The problem is that i don't want the user to put 0 as the first digit, for example (0239847). I was thinking of ...
1
vote
2answers
70 views

How to create and instantiate a user-defined component in Delphi?

I want to create a search box for my application. The search box will include two things: a search filed and a search button. I think, the right thing to do would be to put those two components in a ...
0
votes
0answers
53 views

Delphi Access violation when I call TIBDataset append procedure

What am I missing? The error message: Access violation at address 0053CC2B in module 'application.exe'. Read of address 00000000. is intermittent. I can not find the reason for the nil pointer ...
1
vote
3answers
155 views

How to handle floating point overflow?

I'm trying to do filtering .wav sample data value using the HAAR formula but got error "floating point overflow" Edited : add more code numsamples := round(wavehdr.SampleRate); ...

1 2 3 4 5 31