Re: how to set date to on day Programming Software Development by Mitja Bonca dbgrid? Can you tell a more please? Why you are all so shy? Dont expect any help with this kind of manner guys. DBGrid Programming Software Development by jssupekar i want to know how to take input from user using DBGrid DBGrid show fields of table without data C++ Builder Programming Software Development by az7_neli … task: I have a Form. I have ComboBox, DBGrid and Button. I must select name of table in…Insert data from ComboBox. Ok. Then I bind open DBGrid with table's Data Source. And open the table…see only fields names and one empty row in DBGrid. I don't want to see data in… he must scroll down to the end of DBGrid where there is an empty row which he … DBGrid on second form crashes application Programming Software Development by Graham_Saint … and then displays the form. Last night I added a DBGrid to the second form to display a small Absolute Database… - Native error 30434" If I deactivate the datasource the DBGrid is linked to then the program works but, of course…, the DBGrid is empty. I've no idea what error message is… Re: DBGrid on second form crashes application Programming Software Development by Graham_Saint Hi, Did some experimenting. If I add the DBGrid to the main form its okay at first - displays data. But if I do dbgrid.datasource.active := false; and then dbgrid.datasource.active := true; I crash with same error. So it appears its not the form that's the issue. Graham Re: DBGrid on second form crashes application Programming Software Development by Graham_Saint … to the TTable and then on the form create a DBGrid using the datasource. DBGrids on the main form all work… DBGrid - how to autosize cells Programming Software Development by Lioshenka … database components. So when I run the application and the DBGrid is shown and the data is read in from the… Re: DBGrid - how to autosize cells Programming Software Development by Micheus …=Lioshenka;390802]So when I run the application and the DBGrid is shown and the data is read in from the… DBGrid Help needed!!!! Programming Software Development by uim_1977 Hello everyone!!! Whow know how to determinate which Field in DBGrid is active??? DBGrid & Table-filter expression problem Programming Software Development by ZephyrTR … log messages are highlighted to the user by means of DBGrid, Datasource and Table controls. My aim is to write a… Text box population from DBgrid. HELP!! Programming Software Development by lostprophet … to the database. what i have got now is a DBgrid control on there to display the information from another table… the database. What i want to do is for the DBgrid to populate another set of text box's with the… as the foreign key in the table that populates the Dbgrid. sorry if this doesnt make sense but i have tried… Checkbox feature for Dbgrid Programming Software Development by veledrom Hi, I fill the Dbgrid with information that come from database via adodc connection. Is … chance to add checkbox across the each records listed in Dbgrid? I will check one or several particular records and update…='" & Text1.text & "' Where checked record from dbgrid.; [/code] Thanks Lookup field in DBGrid at runtime C++ Builder Programming Software Development by az7_neli … fields from TEST2 Test2Table->FieldDefs->AddFieldDef(); //to the DBGrid but obviously that //doesn't happen TStringField *LookupField = new … work) when I execute the same code in the DBGrid appear ID_TEST2,TEST2_NAME,ID_TEST1,MyLookup fields and everything is fine… How can i Scroll DBgrid to the bottom Programming Software Development by vmirce … my first question: I use Delphi7 and I have a DBGrid that is populated with one hundred records. I run the… query to refresh the content of the dbgrid after each new record that I insert into the database… Re: How can i Scroll DBgrid to the bottom Programming Software Development by vmirce …; myquery.last [/CODE] The code 'myquery.last' will position the DBgrid to the bottom record. And vice versa, [CODE] myquery.first… How to initialize a DBGrid with code? Programming Software Development by MasterHacker110 I am trying to create a form dynamicly and thus I need to initialize my DBGrid with code. { Connect the DBGrid to the database. } procedure TfrmRemoveRecord.InitDBGrid(); begin dbgList.DataSource := dmProgramDatabase.dsrCaches; end; But I get an access violation error. Re: Adding data from ARRAY to DATAGRID / DBGRID Programming Software Development by RahulV Using FlexGrid's TextMatrix property I could insert data into each cell but how can the similar be done in DataGrid/DBGrid ? But I think using DataGrid/DBGrid requires DataSource, RecordSet, or DataMember and complete the connection. Is that the case? Re: Adding data from ARRAY to DATAGRID / DBGRID Programming Software Development by QVeen72 Hi, As the name Indicates, DataGrid and DBGrid need to be bound to a database Recordset object. You … are you so much wanting to bind it to DataGrid/DBGrid....? Regards Veena Re: How can i Scroll DBgrid to the bottom Programming Software Development by KE50 The DBGrid is populated from a query, just use the "order" clause in the query when calling the dataset. E.g. Select StudentID, StudentName, StudentClass From Table_Students Order By StudentID desc C++ Builder 6 - Getting a value from a DBGrid Programming Software Development by rowin Hi, How can I do the following? I have a DBGrid and I need to get values that grid. When I … how to manipulate DBGrid Programming Software Development by kartik07 Hi,I am new to VB6 and I have displayed records in a DBGrid from access using Data ctrl. I have displayed name and mailid in the grid Now,wen I click on any one record,the particular record shoul get selected and corresponding mailid and name should be displayed in another form. Ten,I wil send mail to that person Lookup values in DBGrid Programming Software Development by ecostas … place the component into the grid, I did something like dbgrid.setcontroltype(<fieldname> , <insertion type>, <component… Re: Lookup values in DBGrid Programming Software Development by ecostas … place the component into the grid, I did something like dbgrid.setcontroltype(<fieldname> , <insertion type>, <component… change the color for DBGrid row; Input Validation code help!! Programming Software Development by chanthung …’t figure out the way to change the color for DBGrid row. I am using MsAccess as the database. I want… Re: change the color for DBGrid row; Input Validation code help!! Programming Software Development by selvaganapathy …, There is no way to color the particular row of DBGrid Control. It is very rigid. I think the error at… access to Datagrid...show in DBGrid Programming Software Development by singoi … = Nothing End Sub[/I] here i wrote a code for DBGrid to show the required details according to combobox. see 9… NumberFormat in DbGrid Programming Software Development by dks1383 Hi all I want to set NumberFormat property in DbGrid in Vb6 so the negative numbers be red automatically please help me. Thanks. insert data from dbgrid into SQL SERVER database table Programming Software Development by azapovjednik Hello, Is it possible to insert the data from dbgrid component into an SQL SERVER database table. The data that is in the grid is imported from Excel worksheet. It may look silly but I need to insert that data into a table. Any help is appreciated, thank you Adding data from ARRAY to DATAGRID / DBGRID Programming Software Development by RahulV Kindly tell me how can I insert data from a bi-dimensional array [I]ex. array1(10,10) [/I] to a DataGrid/DBGrid and visa-versa. Please explain with a sample source code. Re: Adding data from ARRAY to DATAGRID / DBGRID Programming Software Development by debasisdas Do you know how to populate data from/to a DB into/from a DataGrid/DBGrid ? Database table is a 2D array only.