Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

74
votes
66answers
52k views

Code Golf: Numeric equivalent of an Excel column name

The challenge The shortest code by character count that will output the numeric equivalent of an Excel column string. For example, the A column is 1, B is 2, so on and so forth. Once you hit Z, the ...
32
votes
22answers
29k views

Select all columns except one in MySQL?

I'm trying to use a select statement to get all of the columns from a certain MySQL table except one. Is there a simple way to do this? EDIT: There are 53 columns in this table (NOT MY DESIGN)
17
votes
8answers
37k views

GridView - Show headers on empty data source

In C# how do I still show the headers of a gridview, even with the data source is empty. I am not auto generating the columns as they are all predefined. Currently what I am doing is the ...
17
votes
10answers
27k views

Setting default values for columns in JPA

Is it possible to set a default value for columns in JPA, and if, how is it done using annotations?
9
votes
2answers
6k views

CSS Multi-Column Forms in HTML/ASP.NET

I've researched for hours and still haven't found a robust, non-absolute-positioning solution for displaying multiple-column forms and values without using TABLE tags. Can someone point me to a ...
8
votes
3answers
4k views

How to drop columns using Rails migration

What's the syntax for dropping a database table column through a Rails migration?
8
votes
12answers
13k views

3 and 2 column full screen (width & height) layouts (CSS)

I was wondering if there were any simple examples that did the following * A right and a left fixed column with a fluid center. With full height and width and a header and footer. * A ...
7
votes
4answers
2k views

Why can't a text column have a default value in MySQL?

If you try to create a TEXT column on a table, and give it a default value in MySQL, you get an error (on Windows at least). I cannot see any reason why a text column should not have a default value. ...
7
votes
4answers
935 views

Can I flow divs down the page instead of across it?

If I have a collection of div elements, I can use CSS to have them flow across the page and overflow onto the next line. Here's a simple example: <html> <head> <title>Flowing ...
7
votes
1answer
6k views

WPF Treeview with fixed width columns

I want to create a mix of a treeview and a listview. I want to have 2 columns. In the left column i want a recursive treeview and the right column should show some info about the items from the left ...
7
votes
3answers
7k views

Change type of a column with numbers from varchar to int

We have two columns in a database which is currently of type varchar(16). Thing is, it contains numbers and always will contain numbers. We therefore want to change its type to integer. But the ...
7
votes
9answers
43k views

Select distinct from multiple fields using sql

I have 5 columns corresponding to answers in a trivia game database - right, wrong1, wrong2, wrong3, wrong4 I want to return all possible answers without duplicates. I was hoping to accomplish this ...
6
votes
3answers
163 views

how to swap images on canvas in android?

I have displayed images from resource in my application as rows and columns randomly. From those rows and columns i would like to swap the two images when user click on beside of images only.The ...
6
votes
3answers
243 views

How do I keep paragraphs together in HTML columns?

So, I have a page that looks like... I am a monkey I am a monkey too, with additional information. I am also a monkey If I wrap this in CSS using the -webkit-columns:2 tag, it displays as... I am ...
6
votes
4answers
663 views

CSS3 Columns and Images

My example here, Shows an image in the center of CSS3 generated columns. I need the text in the column to the right of the image to wrap around the image so that it doesn't appear in front of the ...
6
votes
3answers
6k views

How do I dynamically generate columns in a WPF DataGrid?

I am attempting to display the results of a query in a WPF datagrid. The ItemsSource type I am binding to is IEnumerable<dynamic>. As the fields returned are not determined until runtime I don't ...
6
votes
3answers
9k views

How to make a columns in JTable Invisible for Swing Java

I have designed one GUI in which I have used one JTable from which I have to make 2 columns invisible . How should I do that ?
6
votes
4answers
18k views

how to get number of rows using SqlDataReader in C#

my question is about how to get number of rows using SqlDataReader in C#. I've seen some answers around the net about this but none were clearly defined except for one that states to do a while loop ...
6
votes
5answers
4k views

Add a new table column to specific ordinal position

Is it possible to add a column to a table at a specific ordinal position in SQL Server? For instance, our tables always have CreatedOn, CreatedBy, LastModifiedOn, LastModifiedBy columns at the "end" ...
5
votes
2answers
199 views

read.csv is extremely slow in reading csv files with large numbers of columns

I have a .csv file: example.csv with 8000 columns x 40000 rows. The csv file have a string header for each column. All fields contains integer values between 0 and 10. When I try to load this file ...
5
votes
3answers
260 views

DataGridView Custom Sorting

I have a DataGridView with 6 columns. Example: column1 column2 column3 column4 column5 column6 J6 RES-0112G 123.123 456.456 180 1111 FID2 FIDUCIAL 5.123 ...
5
votes
3answers
468 views

get the columns of a Temp table in sybase

Is there a way to get the list of columns of a temporary table in sybase? suppose I have a table called #mytable select count (*) from tempdb..#mytable return 145 to say there are 145 rows in this ...
5
votes
3answers
221 views

Sharing Column Widths Between Multiple WPF Controls

Is there any way of sharing column widths between controls, not just between multiple grids on the same control? Crude diagram of what I'm trying to get at: I'm currently messing around with ...
5
votes
2answers
342 views

Perl - Hash of hash and columns :(

I've a set of strings with variable sizes, for example: AAA23 AB1D1 A1BC AAB212 My goal is have in alphabetical order and unique characters collected for COLUMNS, such as: first column : AAAA ...
5
votes
2answers
675 views

Is it possible to keep the column order using the Python csv DictReader

For example, my csv has columns as below: ID, ID2, Date, Job No, Code I need to write the columns back in the same order. The dict jumbles the order immediately, so I believe it's more of a ...
5
votes
3answers
2k views

JDBC DatabaseMetaData.getColumns() returns duplicate columns

I'm busy on a piece of code to get alle the column names of a table from an Oracle database. The code I came up with looks like this: DriverManager.registerDriver (new ...
5
votes
5answers
11k views

SQL server: convert rows to columns

I have a table with columns sales(int), month(int). I want to retrieve sum of sales corresponding to every month. I need ouput in form of 12 columns corresponding to each month in which there will be ...
5
votes
1answer
5k views

How do I look at column metadata in Sybase?

I have a list of columns a co-worker has given to me, but these columns reside in different tables in the DB. Is there some kind of tool in Sybase where I can query the table a column belongs to? ...
5
votes
8answers
4k views

How do you create an HTML table with adjustable columns?

I want to know how to create a table where you can adjust the column widths. I have not figured out how to do this. If you know the secret sauce to this technique please let me know.
4
votes
4answers
60 views

Three columns float with 1px space inside?

can anyone help me to find a CSS solution here, please? here is a scribble: The wrapper has a variable width and the inside space of the floating boxes should exactly 1px. the margin-bottom is no ...
4
votes
1answer
362 views

TListView: Adding new columns and subitems during runtime

I'm trying to add a column between existing columns in a TListView. Therefor I add the new column at the end and move it by setting it`s index to the designated value. This works, until adding another ...
4
votes
4answers
95 views

Get rows which do not contain 0

I would like to make a new matrix from another matrix but only with rows which do not contain 0, how can I do that?
4
votes
6answers
84 views

Best practices for ordering columns in SQL when creating the table

I have a table foo which contains the following columns create table foo ( id integer not null auto_increment unique, name varchar(255), desc varchar(255), modified_time datetime not null, type ...
4
votes
3answers
52 views

How do I replicate this 3 column layout without using a table?

Feeling a bit frustrated at not being able to properly figure this out. I'm updating an old site and am trying to make this work without tables. I can do it with box flex but its unsupported by a lot ...
4
votes
1answer
67 views

How many coloumns we can create in a table in SQlite

I am creating a sqlite database for my iPhone projects. I have table called products in my database. I want to have 35 columns in the products table. I am able to create 26 columns only. I add any ...
4
votes
3answers
294 views

Removing Column from TableModel in Java

In Java I'm using the DefaultTableModel to dynamically add a column to a JTable. //create DefaultTableModel with columns and no rows DefaultTableModel tableModel = new DefaultTableModel(columnNames, ...
4
votes
5answers
218 views

replace “:” by tab to make columns

I have word lists where the word or expression in Spanish is separated by its translation with a colon (":"). I want to make two columns, one for spanish, the other for english. I tried with ...
4
votes
3answers
359 views

Splitting up content that will be displayed over multiple columns

Scenario: You have a CMS where an user is able to determine what content will be displayed. The content consists of multiple colums with links underneath them. It looks something like this: Column ...
4
votes
2answers
4k views

vertical scrollbar in ExtJS GridPanel

I'm working on a project where I have a single GridPanel on a page. The panel can display any number of rows and I have the autoHeight property set, which causes the GridPanel to expand to fit the ...
4
votes
6answers
678 views

2-column auto-layout by CSS?

Given a <div> Lorem ipsum dolor sit amet, consectetur adipiscing... </div> is it possible with CSS to generate a 2 or 3-column layout automatically, say by specifying the height of the ...
4
votes
1answer
2k views

Performing Inner Join for Multiple Columns in the Same Table

I have a scenario which I'm a bit stuck on. Let's say I have a survey about colors, and I have one table for the color data, and another for people's answers. tbColors color_code , color_name 1 ...
4
votes
1answer
2k views

Combining 2 columns into 1 column many times in a very large dataset in R

Combining 2 columns into 1 column many times in a very large dataset in R The clumsy solutions I am working on are not going to be very fast if I can get them to work and the true dataset is ~1500 X ...
4
votes
2answers
431 views

CSS: Two columns, balanced heights with preference for the left column

I have an ordered list of movies. Each movie has a name and a description. The description length varies. I list the movies one by one in two columns, roughly like this: 1. Blues Brothers ...
4
votes
2answers
2k views

Inserting a table column with jQuery

I have a table of data that I need to dynamically add a column to. Lets say I have this basic table to start with: <table> <tr><td>cell 1</td><td>cell ...
4
votes
1answer
2k views

How to manage column based access control in Sharepoint lists?

I'm making issue tracking portal based on Sharepoint. Users should be able to add entries, but in the entry itself i want one column be only visible to specific group of users (Administrators). Is ...
4
votes
2answers
3k views

Adding Columns programatically to listview in WPF?

How can I add columns programatically to a listview?
4
votes
3answers
2k views

CSS fluid 'column'

Whats the best way to get this layout in CSS? imagine that I have three divs, two divs inside another.. of the two inner divs, the first one has a specific width set, and the second div is expected to ...
4
votes
5answers
706 views

SQL - Table Design - DateCreated and DateUpdated columns

For my application there are several entity classes, User, Customer, Post, and so on I'm about to design the database and I want to store the date when the entities were created and updated. This is ...
3
votes
1answer
53 views

Two fixed width full height columns, with seamless transition to blank space

I'm having trouble creating this design. The #container should be centered, with it's two children #navigation and #content stretching to the bottom of the browser. Like this for example. ...
3
votes
2answers
39 views

Can I create a multiple-column context menu in .NET Windows Forms?

I want to create a context menu that has several columns. Basically it would go like this: First item | [common option] | All Options > Second item | [common option] | All Options > Third item ...

1 2 3 4 5 16