| Thread | Last Post | Replies |
|
| Edit Access Database Online | 20 Jul 2004 16:23 GMT | 1 |
I have a completely dynamic web site all based in one 10 tables included in one Access Database. The web site is all done in ASP.Net / VB. I am looking for an easy way to create an online page which shows all
|
| Scroll | 20 Jul 2004 06:36 GMT | 4 |
I need to dispay some data (row).Right now I am using listbox, however it doesn't have a horizontal scroll. Which control should I use to have both scroll(horizontal and vertical).
|
| ASP.NET Datagrid filling textboxes | 19 Jul 2004 22:26 GMT | 2 |
I am currently filling textboxes with the data from a datagrid with the following code: Sub Fillnextrecord(ByVal e As DataGridCommandEventArgs) Dim Cell1 As String = e.Item.Cells(1).Text.ToString
|
| Datagrid Paging Checkbox | 19 Jul 2004 12:08 GMT | 2 |
I have a problem when we use paging in Datagrid. We have checkbox in datagrid. If we go to next page, and come to previous page the items that had been selected is deselected.
|
| Datagrid newbie question | 18 Jul 2004 14:47 GMT | 1 |
Hey all, I'm dynamically creating X number of datagrids based on entries in a database (1 per client type thing... data is from different databases). The question is...
|
| adding HTML formatting to a datagrid | 18 Jul 2004 14:31 GMT | 4 |
I have a datagrid in an .aspx page that I'd like to add some HTML formatting to: <asp:BoundColumn DataField="Pict1" HeaderText="Picture" /> <asp:BoundColumn DataField="PropertySite" HeaderText="Official
|
| Multiple search criteria datagrid | 18 Jul 2004 04:54 GMT | 1 |
I have a webform with a datagrid, 2 textboxes and a button. The datagrid is filled by a sql database. What I want is: to search the database based on the values of the 2 textboxes. I think I have to combine the values somehow into 1 sql query,
|
| Populating DataSet from two DataTables | 18 Jul 2004 04:51 GMT | 1 |
I'm trying to build a heirarchial DataGrid. I've created the two tables I need through some fun in a code behind that runs through an Active Directory. I need to get these two tables into a DataSet. Once they're in the DataSet I
|
| popups and accessing grid items (C# Only) | 16 Jul 2004 00:07 GMT | 2 |
I have a page that looks like: ----------------------------------------------------- Check Out Column1 Column2 Column3 []
|
| Multiple Header rows in datagrid | 15 Jul 2004 22:16 GMT | 2 |
I have a need for multiple header rows in a datagrid. One header row contains the column headings, the next header row contains html input fields, buttons and other controls and serves as a template for javascript functions to add and delete rows from the table without a
|
| CType(e.Item.Cells(3).Controls(1), textbox) fails when key is set to READONLY | 15 Jul 2004 14:50 GMT | 5 |
The code could not be simpler: Dim txtProjectID As TextBox = CType(e.Item.Cells(1).Controls(0), TextBox) Dim dblProjectID As Double = CDbl(txtProjectID.Text) Run-time exception thrown : System.ArgumentOutOfRangeException - Specified
|
| Items.Count wrong on partial page | 15 Jul 2004 05:02 GMT | 1 |
Hi, here's an odd one that blows my mind. I have a DataGrid with paging enabled. I have PageSize=10. I have 25 total items, so that gives me two pages=10 and the last page=5. Fine. When I access this last page of 5 items in _ItemCommand(), I need an Item.Count, and I get 5 ...
|
| datagrid format question | 15 Jul 2004 04:57 GMT | 1 |
I have two fields, both are date and time fields that populate two of the columns in my datagrid. The format from the database is: 7/14/2004 09:14:00 AM for both (the times would be different - one is start time one is stop time)
|
| Not show last row in datagrid. | 14 Jul 2004 20:38 GMT | 1 |
How do I not show the last row in a DataGrid (for C#). The last row which is empty, but allows for the user to enter info, which will then add a new row. I would like to prevent this... by showing only the rows which exist.
|
| Clicks and double-clicks | 14 Jul 2004 10:52 GMT | 1 |
is it possible to distinguish between clicks and double-clicks occuring on datagrid rows? If a single row is clicked it should be selected in order to allow various operations like deleting the row, duplicating it, etc. If a row is double-clicked another event handler should be ...
|