tagged [row]

How to select a row or a cell in WPF DataGrid programmatically?

How to select a row or a cell in WPF DataGrid programmatically? In WinForm DataGridView, it automatically selects the first row when initialized. It drove me crazy when I tried to turn that feature of...

22 Dec at 15:31

Right click to select row in DataGridView

Right click to select row in DataGridView I need to select a row in a `DataGridView` with right click before a `ContextMenu` is shown because the `ContextMenu` is row-dependent. I've tried this: or: `...

23 Sep at 08:31

Row Level Security with Entity Framework

Row Level Security with Entity Framework I've been trying to consider how Row Level Security could be implemented with the Entity Framework. The idea is to have a database agnostic means that would of...

How to delete a certain row from mysql table with same column values?

How to delete a certain row from mysql table with same column values? I have a problem with my queries in MySQL. My table has 4 columns and it looks something like this:

27 Oct at 16:22

Deleting records from SQL Server table without cursor

Deleting records from SQL Server table without cursor I am trying to selectively delete records from a SQL Server 2005 table without looping through a cursor. The table can contain many records (somet...

10 Aug at 16:3

How to use a table type in a SELECT FROM statement?

How to use a table type in a SELECT FROM statement? This question is more or less the same as [this](https://stackoverflow.com/questions/1573877/selecting-values-from-oracle-table-variable-array) Decl...

23 May at 12:2

Delete a row from a SQL Server table

Delete a row from a SQL Server table I'm trying to simply delete a full row from my SQL Server database table using a button event. So far none of my attempts have succeeded. This is what I'm trying t...

4 Mar at 21:8

Padding a table row

Padding a table row ``` Table Row Padding Issue tr { padding: 20px; } Lorem Ipsum Fusce sodales lorem n

10 Jun at 16:1

Replacing Header with Top Row

Replacing Header with Top Row I currently have a dataframe that looks like this: ``` Unnamed: 1 Unnamed: 2 Unnamed: 3 Unnamed: 4 0 Sample Number Group Number Sample Name Group Name 1 1.0 ...

24 Dec at 16:19

DataTable, How to conditionally delete rows

DataTable, How to conditionally delete rows I'm engaged in a C# learning process and it is going well so far. I however just now hit my first "say what?" moment. The DataTable offers random row access...

19 Oct at 23:55

Trouble using ROW_NUMBER() OVER (PARTITION BY ...)

Trouble using ROW_NUMBER() OVER (PARTITION BY ...) I'm using SQL Server 2008 R2. I have table called EmployeeHistory with the following structure and sample data: ``` EmployeeID Date DepartmentID Su...

macro for Hide rows in excel 2010

macro for Hide rows in excel 2010 I'm kinda new to programming in VBA. I read some stuff on the internet but I couldnt find what I need or couldnt get it working. My problem: in worksheet 'sheet 1' in...

22 Jun at 21:42

deleting rows in numpy array

deleting rows in numpy array I have an array that might look like this: Notice that one of the rows has a zero value at the end. I want to delete any row that contains a zero, while keeping any row th...

24 Oct at 18:17

Copy data from one existing row to another existing row in SQL?

Copy data from one existing row to another existing row in SQL? I have a table full of tracking data for as specific course, course number 6. Now I have added new tracking data for course number 11. E...

3 Nov at 09:59

Deleting DataFrame row in Pandas based on column value

Deleting DataFrame row in Pandas based on column value I have the following DataFrame: ``` daysago line_race rating rw wrating line_date 2007-03-31 62 11 56 1.000...

Setting custom UITableViewCells height

Setting custom UITableViewCells height I am using a custom UITableViewCell which has some labels, buttons and image views to be displayed. There is one label in the cell whose text is a `NSString` obj...

Programmatically select a row in JTable

Programmatically select a row in JTable When the application is started, none of the rows is selected. But I would like to show that the first row is already selected. How to do this? Do I need to set...

28 Dec at 21:25