![]() |
|
![]() |
|
|
Thread Tools | Display Modes |
|
|
#11 |
|
I eat cake for breakfast.
![]() ![]() ![]() ![]() Join Date: Jul 2004
Location: In my box.
Posts: 4,434
Rep Power: 9
![]() |
I'm not sure what that is, but the basic principle's the same. Create an InputBox or 10, and in the OnChange events, modify the grid using Grid1.Cells[x, y].Text = InputBox1.Text (I think).
|
|
|
|
|
|
#12 |
|
Newbie
Join Date: Apr 2005
Posts: 11
Rep Power: 0
![]() |
dbgrid is the object that i place. with a data source and table object.
ive tried similar things to that, like the dbedit box, but errors always come up that the grid isnt in edit or insert mode. ok thanks. |
|
|
|
|
|
#13 |
|
Newbie
Join Date: Apr 2005
Posts: 11
Rep Power: 0
![]() |
and also, would you happen to know any common questions programmers ask their clients about the software they are making. like im doin an assignment where it emulates real life and im supposed to create a questionaiire for my client. and im not shure how to address this.
help wud be much welcomed. any links to. thanks |
|
|
|
|
|
#14 |
|
I eat cake for breakfast.
![]() ![]() ![]() ![]() Join Date: Jul 2004
Location: In my box.
Posts: 4,434
Rep Power: 9
![]() |
Check in the Properties box to see if you can turn Edit or Insert mode on.
About the questions:
Those are usually what I ask. |
|
|
|
|
|
#15 |
|
Newbie
Join Date: Apr 2005
Posts: 11
Rep Power: 0
![]() |
ok thanks alot.
|
|
|
|
|
|
#16 |
|
Newbie
Join Date: Jul 2005
Posts: 6
Rep Power: 0
![]() |
heh this is funny if you want to write a into a cell in a tbdgrid from a editbox for instance use the code
Ttable(<-- this is your paradox table object btw) datetimepicker(<-- dont ask what this is it is under win32 in the tool palete) Ttable.append; Ttable.Fieldbyname('fieldname').asstring := edit1.text; Ttable.post; so in your case tblworkhours.append; tblworkhours.Fieldbyname('dayworked').asstring := datetimepicker.date; tblworkhours.Fieldbyname('timestart').asstring := editboxfortimestart.text; tblworkhours.Fieldbyname('timefinished').asstring := editboxfortimefinished.text; tblworkhours.post; in your editbox (edit1) you would have your date and in the Ttable you would have well your table ((-_-) dont know what else can be in there) hope this helps
__________________
my name says it all the iddiot -_- |
|
|
|
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|