Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
LCL
»
How to get Current row number of a DBGrid within a filtered Query?
Free Pascal
Website
Downloads
Wiki
Documentation
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Documentation (RTL/FCL/LCL)
Bugtracker
CCR Bugs
GIT
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
Forum Rules
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
LazSWatch - a serial port...
by
CM630
[
Today
at 08:17:10 pm]
Lazarus interface to Rexx...
by
Thaddy
[
Today
at 07:34:26 pm]
Install new .deb over exi...
by
LeP
[
Today
at 06:36:34 pm]
WASM import error
by
lebao3105
[
Today
at 05:51:47 pm]
OpenDocument('Filename') ...
by
J-G
[
Today
at 05:23:26 pm]
Lazarus Bugfix Release 4....
by
n7800
[
Today
at 04:56:57 pm]
Discipline your AI coding...
by
Weiss
[
Today
at 04:37:42 pm]
Lazarus Main not building...
by
dsiders
[
Today
at 03:01:07 pm]
Hello. I'm new to this co...
by
zeljko
[
Today
at 02:17:38 pm]
TCollection wiki entry
by
Thaddy
[
Today
at 01:24:21 pm]
weird error message
by
cdbc
[
Today
at 12:23:13 pm]
Freepascal
by
LeP
[
Today
at 09:40:33 am]
TTL Record Count, i.e. a ...
by
Zvoni
[
Today
at 09:10:08 am]
Printing on HP Smart Tank
by
Thaddy
[
Today
at 07:10:37 am]
P.I.S.S. a PlugIn-framewo...
by
cdbc
[
Today
at 06:38:27 am]
MVP made easier.
by
cdbc
[
Today
at 06:18:24 am]
I have made some progress...
by
onionmixer
[
Today
at 02:57:55 am]
Lazarus 4.6 may erase you...
by
Martin_fr
[July 12, 2026, 06:35:29 pm]
Best name for procedure
by
LemonParty
[July 12, 2026, 05:23:02 pm]
Fixed an RV32ec compiler ...
by
MattBradford
[July 12, 2026, 05:11:16 pm]
Many recent books on Laza...
by
Tomu
[July 12, 2026, 05:02:44 pm]
International Pascal Cong...
by
zeljko
[July 12, 2026, 04:08:53 pm]
equivalent to C/C++ "offs...
by
jamie
[July 12, 2026, 02:43:16 pm]
val return code
by
ALLIGATOR
[July 12, 2026, 01:40:21 pm]
Help needed on how to do ...
by
cdbc
[July 12, 2026, 12:15:15 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: How to get Current row number of a DBGrid within a filtered Query? (Read 11841 times)
JSN
Jr. Member
Posts: 65
How to get Current row number of a DBGrid within a filtered Query?
«
on:
June 01, 2017, 01:56:56 pm »
I have found other solutions to obtaining the current selected row number of a DBGrid. But those seem to return the Record Number of the dataset.
If a Query is filtered, how do I obtain the current selected row number of the DBGrid?
Hope this makes sense.
Logged
taazz
Hero Member
Posts: 5368
Re: How to get Current row number of a DBGrid within a filtered Query?
«
Reply #1 on:
June 01, 2017, 02:58:24 pm »
you ask the dataset eg
Code:
[Select]
showmessage(inttostr(DBGrid1.DataSource.DataSet.RecNo));
oops to hasty didn't read the question through. sorry but this one I'll have to answer it after work.
«
Last Edit: June 01, 2017, 02:59:55 pm by taazz
»
Logged
Good judgement is the result of experience … Experience is the result of bad judgement.
OS : Windows 7 64 bit
Laz: Lazarus 1.4.4 FPC 2.6.4 i386-win32-win32/win64
balazsszekely
Guest
Re: How to get Current row number of a DBGrid within a filtered Query?
«
Reply #2 on:
June 01, 2017, 03:58:13 pm »
@JSN
Ideally you should write a class helper or modify DBGrids.pas and publish a new property. Anyway I found a way, all you have to do is replace "Name" with the field you wish to see(I assume multiselect is off, and your form name is Form1):
Code: Pascal
[Select]
[+]
[-]
procedure
TfMain
.
DBGridDrawColumnCell
(
Sender
:
TObject
;
const
Rect
:
TRect
;
DataCol
:
Integer
;
Column
:
TColumn
;
State
:
TGridDrawState
)
;
var
Row
:
Integer
;
begin
if
gdSelected
in
State
then
begin
Row
:
=
Trunc
(
Rect
.
Bottom
/
(
Sender as TDBGrid
)
.
DefaultRowHeight
)
-
1
;
Form1
.
Caption
:
=
DBGrid
.
DataSource
.
DataSet
.
FieldByName
(
'NAME'
)
.
AsString
+
' '
+
IntToStr
(
Row
)
;
end
;
end
;
Logged
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
LCL
»
How to get Current row number of a DBGrid within a filtered Query?
TinyPortal
© 2005-2018