Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
9answers
2k views

Are there any good free/cheap Delphi grid controls?

I gave up on Delphi's DBGrid nearly a decade ago because it is simply no good. Since then, I have used Virtual TreeView which offers a lot of value but it has a few issues. Like the current state of ...
5
votes
2answers
720 views

Delphi 7: How to use checkboxes inside TDBGrid to select multiple records?

How to use checkboxes inside a standard TDBGrid to select multiple records? Or perhaps, do you have any recommendation for a free/open source sister of DBGrid that allows anyone to do that easily? ...
4
votes
1answer
109 views

Delphi: DBGrid Options are not saved?

My problem is next: I have my own DBGrid, based on TDBGrid. Because in many places better to see the Selection, I thought I set it on Create, and the property editor save the Options property if I ...
4
votes
1answer
2k views

How to refresh dbgrid without close and open dataset in delphi?

I need to refresh dbgrid constantly, in real time. Close and open dataset works fine, but blink the dbgrid. What can I do to avoid this? I'd like a solution like Ajax, that update only the necessary. ...
3
votes
3answers
143 views

DBGrid with read ahead capability using ADO

I'm working with ADO connecting to SQL Server 2005. My TADODataSet selects 1 million records. using a TDBGrid and setting the TADODataSet.CursorLocation to clUseServer works. but the TDBGrid chokes! ...
3
votes
2answers
174 views

How to set active cell in TDBGrid?

I want to activate a cell in a TDBGrid by code. By "activate" I mean like the user clicked inside the cell, ready to edit the cell content. How could I do this? Edit: This probably involves two ...
3
votes
0answers
242 views

Delphi TDBGrid How to change selected color when style is gdsGradient

I'm just trying to use delphi XE, before that I've been a big fan of Delphi7. I see the new dbgrid allows to use themed and gradient styles. I'm using gradient and set rowselect, it has a property ...
3
votes
6answers
574 views

Modify DBGrid cell content before it is displayed

I want to modify the content of a particular cell in dbgrid control when the database is loaded. For example, lets say I don't want any field of database to be displayed in dbgrid if it is equal to ...
3
votes
1answer
965 views

Select row after refreshing DBGrid

Well, some kind of n00b question from me. I've surfed the net and similar questions here but haven't found any right answers for such simple (as I thought) problem. I have a DBGrid. I select one row ...
3
votes
1answer
485 views

options in dbgrid or combobox in dbgrid

I want to give 3 options for a column in a DBGrid. How to achieve this. How to drop and incorporate a combobox for the same in dbgrid. regards sridhar
2
votes
3answers
164 views

Best DB grid to use with lots of lookup fields

I have a table with a couple foreign keys, something like this: CREATE TABLE project.gl( id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, glaccount_id INT(11) UNSIGNED NOT NULL, project_id ...
2
votes
1answer
172 views

How do you Remove the Black Line from a Delphi DBGrid OnTitleClick Event?

I have a Delphi DBGrid that looks normal when it first loads. I have setup an OnTitleClick event that sorts the DBGrid by the column when the title is clicked. As soon as you click on the title, the ...
2
votes
1answer
292 views

how to use Bookmarks and DisableControls

It possible to use dataset.DisableControls and at same time Bookmark1 := dataset.Bookmark; do someting............. dataset.enableControls dataset.Bookmark := Bookmark1; ...
2
votes
2answers
682 views

Delphi - Update field in a dbGrid while selection is on another row

I got a dbGrid with X rows. I want to update a field-value in the second row with a timer (for example, show a countdown). Thats no problem, but I want to be able to change the selected row and keep ...
2
votes
4answers
2k views

Delphi - restore actual row in DBGrid

D6 prof. Formerly we used DBISAM and DBISAMTable. That handle the RecNo, and it is working good with modifications (Delete, edit, etc). Now we replaced with ElevateDB, that don't handle RecNo, and ...
2
votes
3answers
5k views

Setting a DBGrid column format in Delphi

I am using a DBGrid component in delphi. I wonder how I can set the format of a column. I have real values that I want to be displayed as currency in the grid. Someone knows how?
2
votes
6answers
2k views

Is there a DBGrid component that can handle large datasets fast?

Large datasets, millions of records, need special programming to maintain speed in DBGrids. I want to know if there are any ready-made components for Delphi (DBGrids) that do this automatically? ...
1
vote
2answers
189 views

Delphi DBGrid formatting with MySQL

I have a question regarding formatting of data cells in the delphi DBGrid. The DBGrid component is connected to a MySQL database, which gets populated at run time. I have a column for DateTime and ...
1
vote
1answer
301 views

Editable detail records in Delphi DBGrid

I have a database (held in an Access .MDB file) that records staff members, and any absence they have e.g. holiday, sickness, training course, the start and end dates, and hours of productive time ...
1
vote
2answers
456 views

Using Delphi OnDrawColumnCell how can I ensure record value exists prior to applying conditional format

I am using Delphi 2010 with a dbgrid bound via ADO to a table in an Access mdb Database. This table is filtered based on clicks in a radio group box. The following code colour codes the rows based ...
1
vote
3answers
919 views

Using a ClientDataSet in Delphi, are you able to display both Data & Delta records in a DBGrid?

I am making a app in Delphi 6 + MySQL database using standard data-aware components and dbExpress. The app allows a users to view records in a grid and edit data (insert and/or delete records) client ...
1
vote
2answers
1k views

Delphi DBGrid Format Display Values

I need to format values in a DBGrid to display in a certain format ex '#,##0.00'. Any idea how to do that? Regards, Pieter
1
vote
1answer
499 views

Delphi 2010 Calcualted Column In DBGrid

I have a Delphi 2010 ADO program that has a DBGrid. Its dataset selects from an Access query. The query has a column defined as, CStr(Amount*UnitCount)+" "+Unit. The query works fine in Access. But ...
1
vote
3answers
945 views

how can i create dbgrid with composite columns?

how can i create dbgrid with composite columns, example :dbgrid header | name | | first | last |
1
vote
1answer
613 views

How to display and edit hyperlinks in DBGrid in Delphi 7?

I use DBGrid to display Hyperlink type field from Microsoft Access database (MDB). Normally dbgrid displays hyperlink values like "(MEMO)", without editing capablity. Is there a way to solve this?
1
vote
4answers
2k views

“key violation” autoincrement field in ClientDataSet [Delphi]

this is my third question here, so far excellent responses ^^ I'm having no problems in browsing, editing the data, but insertions... Here is my doubt: In a finance/stock software i have a form to ...
1
vote
2answers
307 views

Looking for a free, customizable DB grid

I'm working on converting the codebase of an "open-source" project to something that will actually work. I put the term in quotes because what the original authors did was take a commercial product ...
1
vote
4answers
2k views

DBGrid get selected cell

I need to get the value of the selected cell of a DBGrid in Delphi. I have no idea how to do it. I tried dbGrid's OnMouseMove pt : TGridCoord; ... pt:=dbGrid.MouseCoord(x, y); [Edited] I can use ...
1
vote
4answers
900 views

How to find the actual width of grid component with scrollbar in Delphi

I have a grid component (DBGrid) which has lots of columns on it. Because of large number of columns, a scrollbar was created, and thus some part of grid remains hidden. I need to find out what is the ...
1
vote
3answers
364 views

How to get rid of the empty space in the right part of DBGrid Delphi

Although the question seems simple, I couldn't find the answer to it. I have a DBGrid component with lots of columns, and as a result they don't fit into the page and scrollbar appears. I also have ...
1
vote
2answers
1k views

DBGrid scroll page instead of row

Well I have an issue with DBGrid vertical scrolling. When I scroll it vertically with mousewheel or vertical scrollbar it moves selected row up and down. I want to make it scroll not selected row but ...
1
vote
3answers
1k views

Sort DBGrid by clicking column's title

Well, this seems a little tricky (if not imposible). I'm tryin to make my DBGrid sort its data by clicking on column's title. The thing is that I'm (sadly) working with Delphi3, I'm not using ADO ...
1
vote
2answers
4k views

View position in DBGrid when scrolling in Delphi

I have a DBGrid on a form. The DBGrid has many columns, so an horizontal scroller is displayed. I scroll the DBGrid view to the right to see more columns. If I select a row, the DBGrid view is ...
0
votes
0answers
25 views

Disabling editing option on TDBGrid doesn't function

When creating TDBGrid components dynamically at runtime, i can't forbid user to edit values in cells. This is how I am trying to accomplish this type of behaviour: TDBGrid * DbGrid = new ...
0
votes
1answer
258 views

Delphi: DBGrid Column Title Hint - force to reset the hint?

I thought that I implement column title hint into my own DBGrid. It's seems to be simple - I thought. I added TitleHints : TStrings that contains information in this format: name=value Where ...
0
votes
2answers
243 views

How to convert an integer value to boolean in delphi

I have a database field value, which is an integer like 0 and 1. Is it possible to convert this integer values to Boolean while loading the data in to a DB Grid. I'm expecting without condition ...
0
votes
1answer
140 views

Keep the scrollbars hidden in a delphi dbgrid (even on resize)

For our dbgrid we want the scrollbars to be constantly hidden. Since TDBGrid doesn't have a 'scrollbars' property, we use: ShowScrollBar(DBGrid1.Handle, SB_VERT, False); ShowScrollBar(DBGrid1.Handle, ...
0
votes
0answers
65 views

DBGRID OnFieldChange event firing twice while using Raise Panel enabling and Disabling

I have scenario like disable the main panel while calling sub screen in DBGRID OnFieldChange event. While disabling the main panel at run time the OnFieldChange event firing twice. I'm using Raize ...
0
votes
1answer
238 views

Delphi 2007 Unable to modify the data in beforescroll event using source code, Error: Dataset not in Edit or Insert Mode

A bit of History: I have a DBlistbox containing textt descriptions and I store just the codes of this in a mysql table which is displayed in a dbgrid. User can select multiple options and I like to ...
0
votes
2answers
164 views

Using commands concerning DBGrid from the main form in another form

I'm making a simple program for use in automotive parts shop. Here's how it's supposed to look: Link The problem is the small window on the left. It should be opened when double clicked on any of the ...
0
votes
1answer
298 views

How to disable a CheckBox column in a DBGrid

How to disable or readonly a checkbox column in a DBGrid. I'm using wwDbGrid and EditControl option.
0
votes
3answers
353 views

How to fill a combobox when a row in a dbgrid is selected?

In Delphi 2007 I have a DBGrid. I need to fill a ComboBox when a row in the DBGrid is selected. The data in the the ComboBox depends on the selected row, and can be different for each selected row. ...
0
votes
1answer
300 views

ADOQuery and DBNavigator

OK. I have simple Database ,DBGrid and DBNavigator . I use this code for my adoquery and view in this in my DBGrid select Count(*)As 1 , 2 3 from Table1 Group by 1, 2 The problem is that if i have ...
0
votes
2answers
413 views

Dbgrid calculation

I have a Dbgrid and i´m tryng to do a billing sheet but sometimes it dosent do the calculations how can i avoid that?? procedure TOrcamentos.DBGridEh1ColExit(Sender: TObject); var percent: ...
0
votes
1answer
108 views

Which NumberFormat string for DBGrid?

I maintain a VB6 application that uses a DBGrid. I want to format a column in such a way that 18.0 becomes 18, but 18.33 becomes 18.3 How do I do that? A reference would be even more helpful!
0
votes
0answers
235 views

Problems with picklist poperty of DBGrid when using OLE Jet 4.0 connection to Access Database

Maybe I am missing something obvious but it doesnt seem to work as it should, I was trying to create a drop down cell that displayed data from another table as options, however when this didn't work ...
0
votes
1answer
267 views

Delphi 5.0 Interbase/FireBird connection problems

I'm having some problems in visualizing the data on a DBGrid. I'm using Delphi 5.0 and I have a Interbase 6.0 DB with 50MB size Some tables have about 32000 elements they are huge ones. I'm using ...
0
votes
1answer
838 views

Delphi - Using DBGrid to select rows from a search

I have searched a database using a query. The results of the search are displayed in a DBGrid component for the user to select the row s/he wishes to proceed with. DBGrid always sets the record ...
0
votes
1answer
1k views

How to determine value of DbGrid cell during OnMouseMove event

I have OnMouseMove event, during which I want to find a value of certain cell (not neccesarily the one under the mouse). Basically the question is: How to access cell data using its x and y ...
0
votes
2answers
702 views

How to get dataset to populate data into dbgrid in Delphi 6?

I have created a DBGrid in Delphi 6 and tied it to a DataSource contained in a DataModule. The Dataset for that source in also located in the same module. In the OnShow event for the form, I ...

1 2