| View previous topic :: View next topic |
| Author |
Message |
Stephane Wierzbicki Guest
|
Posted: Wed Aug 24, 2005 9:20 am Post subject: Where can I find a simple list component ? |
|
|
Hi,
I store in a text file data with this structure :
MYFIELD1 = My Field 1
MYFIELD2 = Hello borland
MYFILED3 = This label
....
Now, I want to display this like that :
--------------------------------
| Quote: | FIELD NAME | DISPLAYED LABEL |
--------------------------------
MYFILED1 | My Field 1 |
MYFILED2 | Hello borland |
MYFILED3 | This label |
-------------------------------- |
And let the user only change the right items.
Is there an compo arround there doing such miracle ;)
Thank you
|
|
| Back to top |
|
 |
Alvaro GP Guest
|
Posted: Wed Aug 24, 2005 9:34 am Post subject: Re: Where can I find a simple list component ? |
|
|
Stephane Wierzbicki wrote:
| Quote: | Is there an compo arround there doing such miracle
|
I think you are looking for a non data-aware inspector component. Try
InfoPower TwwDataInspector.
|
|
| Back to top |
|
 |
Magnus Guest
|
Posted: Wed Aug 24, 2005 9:39 am Post subject: Re: Where can I find a simple list component ? |
|
|
Stephane Wierzbicki wrote:
| Quote: | Now, I want to display this like that :
[...]
And let the user only change the right items.
Is there an compo arround there doing such miracle
|
Delphi's TValueListEditor
--
Magnus
|
|
| Back to top |
|
 |
Stephane Wierzbicki Guest
|
Posted: Wed Aug 24, 2005 9:53 am Post subject: Re: Where can I find a simple list component ? |
|
|
Magnus a écrit :
| Quote: | Stephane Wierzbicki wrote:
Now, I want to display this like that :
[...]
And let the user only change the right items.
Is there an compo arround there doing such miracle ;)
Delphi's TValueListEditor
That's it  |
thank you magnus .... free and available in delphi !
|
|
| Back to top |
|
 |
Stephane Wierzbicki Guest
|
Posted: Wed Aug 24, 2005 10:12 am Post subject: Re: Where can I find a simple list component ? |
|
|
It will be great if I can link this to a dbfield ?
|
|
| Back to top |
|
 |
Craig Stuntz [TeamB] Guest
|
Posted: Wed Aug 24, 2005 12:29 pm Post subject: Re: Where can I find a simple list component ? |
|
|
Stephane Wierzbicki wrote:
| Quote: | It will be great if I can link this to a dbfield ?
|
You'd have to subclass the control and add a data link. Look up making
a control data-aware in help.
--
Craig Stuntz [TeamB] · Vertex Systems Corp. · Columbus, OH
Delphi/InterBase Weblog : http://blogs.teamb.com/craigstuntz
Want to help make Delphi and InterBase better? Use QC!
http://qc.borland.com -- Vote for important issues
|
|
| Back to top |
|
 |
Michael Gillen Guest
|
Posted: Wed Aug 24, 2005 2:32 pm Post subject: Re: Where can I find a simple list component ? |
|
|
Stephane Wierzbicki wrote:
| Quote: | It will be great if I can link this to a dbfield ?
|
Or it's back to the InfoPower TwwDataInspector, but it isn't free.
--
-Michael Gillen
|
|
| Back to top |
|
 |
Sanford Aranoff Guest
|
Posted: Mon Aug 29, 2005 11:41 am Post subject: Re: Where can I find a simple list component ? |
|
|
Stephane Wierzbicki wrote:
| Quote: | Hi,
I store in a text file data with this structure :
MYFIELD1 = My Field 1
MYFIELD2 = Hello borland
MYFILED3 = This label
...
Now, I want to display this like that :
--------------------------------
| FIELD NAME | DISPLAYED LABEL |
--------------------------------
| MYFILED1 | My Field 1 |
| MYFILED2 | Hello borland |
| MYFILED3 | This label |
--------------------------------
And let the user only change the right items.
Is there an compo arround there doing such miracle ;)
Thank you
|
Have you tried the free kbmMemory database? Store the list in a database
table, and use a data-aware grid to display.
|
|
| Back to top |
|
 |
|