Id int64 1.68k 75.6M | PostTypeId int64 1 2 | AcceptedAnswerId int64 1.7k 75.6M ⌀ | ParentId int64 1.68k 75.6M ⌀ | Score int64 -60 3.16k | ViewCount int64 8 2.68M ⌀ | Body stringlengths 1 41.1k | Title stringlengths 14 150 ⌀ | ContentLicense stringclasses 3
values | FavoriteCount int64 0 1 ⌀ | CreationDate stringlengths 23 23 | LastActivityDate stringlengths 23 23 | LastEditDate stringlengths 23 23 ⌀ | LastEditorUserId int64 -1 21.3M ⌀ | OwnerUserId int64 1 21.3M ⌀ | Tags list |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
3,485,592 | 1 | 3,485,702 | null | 0 | 446 | I'm struggling with Haskell programming.
I've got the list below and I want to make it stack on each other, so it'd be like 3 x 4 pixel image. eg:

and how can I change the value of the first row or second ...
eg: say like I want to make it darker or whiter (0 represents b... | Haskell list help! | CC BY-SA 2.5 | null | 2010-08-14T23:43:06.100 | 2010-08-15T02:49:54.680 | 2010-08-15T01:32:04.207 | 123,109 | 324,753 | [
"haskell"
] |
3,486,311 | 1 | 3,486,330 | null | 0 | 519 | There are two classes Person and Employee 
when it mapped to c# code
```
public class Person
{
private string Name;
}
public class Employee : Person
{
private string Department;
public string GetName()
{
return "Pers... | UML mapping with c# | CC BY-SA 2.5 | null | 2010-08-15T05:22:11.197 | 2010-08-15T05:36:02.870 | 2017-02-08T14:30:07.543 | -1 | 367,562 | [
"c#",
"class-design",
"uml",
"class-diagram"
] |
3,486,803 | 1 | null | null | 0 | 200 | i need help to fix my visual basic 6.0. When vb6 start ups, It shows some Microsoft Offices Setup configuration that shows at everytime. If i cancel, I can continue the VB6, But some of component always shows this installation setup again. When I restart the VB Program, The setup configuration also shows everytime...
... | Office Setup Configuration | CC BY-SA 3.0 | null | 2010-08-15T09:10:15.490 | 2013-07-24T17:40:15.960 | 2013-07-24T17:40:15.960 | 1,065,525 | 420,875 | [
"vb6",
"ms-office"
] |
3,487,412 | 1 | 3,487,951 | null | 2 | 4,692 | I want to write a program that can create random collages from a given folder of pictures.
To begin, I want to create a simple collage from three images. Something like this:

I have almost no code right now
```
clc;
clear all;
close all;
a = imread('a.png');
b = imread('b... | How can I create a collage in MATLAB? | CC BY-SA 2.5 | 0 | 2010-08-15T12:48:54.800 | 2010-08-16T14:33:55.033 | 2010-08-16T05:30:37.947 | 113,124 | 113,124 | [
"image",
"matlab",
"image-processing"
] |
3,487,990 | 1 | null | null | 8 | 5,192 | Why can't I drag tables from the Server Explorer to the .edmx designer pane? I've done this before in the exact same steps and it worked, but since yesterday instead of getting the classic + sign for dropping items, I get the no entry symbol (circle with slash in the middle).
What am I doing wrong? As I said, I've don... | Cannot drag tables from Server Explorer to .edmx designer pane | CC BY-SA 2.5 | null | 2010-08-15T15:25:36.143 | 2016-05-24T15:00:12.983 | null | null | 112,355 | [
"entity-framework"
] |
3,488,299 | 1 | 3,488,892 | null | 3 | 168 | I'm following [this iPhone tutorial from Apple](http://developer.apple.com/iphone/library/documentation/iPhone/Conceptual/iPhone101/Articles/00_Introduction.html) and I think I did everything correctly, however the app is not behaving as it should. I checked the troubleshooting section and I still think I got things ri... | Apple's iOS tutorial not working correctly, what did I miss? | CC BY-SA 2.5 | 0 | 2010-08-15T16:50:40.157 | 2010-08-15T19:31:54.803 | 2010-08-15T18:59:51.450 | 17,138 | 17,138 | [
"iphone",
"cocoa-touch"
] |
3,488,998 | 1 | 3,490,871 | null | 3 | 422 | We have
- [BigTable from Google](http://en.wikipedia.org/wiki/BigTable)- [Hadoop, actively contributed by Yahoo](http://en.wikipedia.org/wiki/Hadoop)- [Dynamo from Amazon](http://en.wikipedia.org/wiki/Dynamo_(storage_system))
all aiming towards one common goal - .
By scalability what I understand is that the cost of... | How do the newer database models achieve better scalability and performance as compared to a traditional RDBMS implementation? | CC BY-SA 2.5 | 0 | 2010-08-15T20:00:10.970 | 2010-08-16T10:43:05.477 | 2010-08-16T09:42:40.063 | 182,959 | 182,959 | [
"database",
"algorithm",
"database-design",
"rdbms",
"bigtable"
] |
3,489,305 | 1 | null | null | 2 | 352 | Most of the time the ListBox appears like this:

But every once in a while it looks like this:

Any idea of what is going wrong?
I removed the control templates from the question, because when I removed them from my program the probl... | ListBoxItem border is sometimes hidden behind the ListBox's scrollbar | CC BY-SA 3.0 | 0 | 2010-08-15T21:18:20.477 | 2012-01-05T13:41:42.853 | 2011-09-26T14:12:49.153 | 546,730 | 268,336 | [
"wpf",
"listbox",
"listboxitem"
] |
3,489,410 | 1 | 3,489,430 | null | 6 | 516 | I recently started reading OpenGL Superbible 5th edition and noticed the following:

Having just taken linear algebra this seemed odd to me. The column vector is of dimension 4x1 and the matrix is 4x4, how is it possible to multiply them together? If the ... | OpenGL Superbible linear algebra - is this correct? | CC BY-SA 2.5 | 0 | 2010-08-15T21:46:21.570 | 2011-10-12T09:24:27.587 | 2010-08-17T05:15:32.447 | 257,533 | 257,533 | [
"opengl",
"linear-algebra"
] |
3,490,351 | 1 | 5,958,109 | null | 0 | 416 | I want to create a custom tab bar for an iphone app that looks like this image:

there would be multiple clickable semi-circles at the top that would switch tabs. Each tab would have some buttons or other UI items under the semi-circles that allow you to intera... | custom iphone tab bar area | CC BY-SA 3.0 | 0 | 2010-08-16T03:15:06.503 | 2011-10-18T06:48:53.843 | 2011-10-18T06:48:53.843 | 64,272 | 241,718 | [
"iphone",
"uitabbarcontroller"
] |
3,490,441 | 1 | 3,490,579 | null | 0 | 9,440 | How can I add an image to my program in XAML?
I want to display the 'no.png' image on my application. Also,

I need both yes and no to appear in the same place. My plan was to set them both to hidden and display them only when necessary. How can I do this?
| Adding an Image in xaml code? | CC BY-SA 2.5 | null | 2010-08-16T03:42:18.370 | 2010-08-17T11:32:59.213 | null | null | null | [
"xaml",
"windows-phone-7"
] |
3,491,015 | 1 | 3,498,735 | null | 2 | 1,358 | I have a toolbar being displayed on the top of scroll view. When I call invalidate on scroll view, I realize both toolbar and scroll view are having screen flickering problem.
I try to have a workaround, by overriding their erase background event handler.
This method works for scroll view, but not the toolbar.
Her... | Prevent screen flickering for CScrollView and CToolBar | CC BY-SA 2.5 | null | 2010-08-16T06:23:53.437 | 2010-08-17T01:47:08.873 | null | null | 72,437 | [
"mfc"
] |
3,491,093 | 1 | 3,508,549 | null | 0 | 261 | This doesn't work
```
panel1.layout: layout [
offset: 0x0
yuml-image: image img
]
panel2.layout: layout [
offset: 0x0
area (yuml-command0) yellow
]
panelbuttons.layout: layout [
button "Save" [request-save]
button "Refresh" [request-refresh]
button "Quit" [quit]
]
Main: layout [
panel1: box ... | problem with rebol vid panel and offset 0x0 | CC BY-SA 2.5 | null | 2010-08-16T06:40:23.310 | 2010-08-23T13:19:54.670 | 2010-08-17T19:40:31.920 | 211,160 | 2,687,173 | [
"user-interface",
"layout",
"rebol"
] |
3,492,721 | 1 | 3,492,911 | null | 6 | 33,432 | I have a `RelativeLayout`, and this Layout has two childs, one is a `MapView` and the other a `RelativeLayout` that contains a button.
I want it to look like that

but my transparent box (a `RelativeLayout`) is always displayed at the top of the map.
`... | How to place a RelativeLayout at the bottom of a RelativeLayout? | CC BY-SA 3.0 | 0 | 2010-08-16T11:38:36.817 | 2014-07-17T22:59:11.903 | 2017-02-08T14:30:10.773 | -1 | 401,025 | [
"android",
"android-linearlayout",
"android-relativelayout"
] |
3,494,476 | 1 | 4,275,812 | null | 6 | 5,157 | I'm playing around with some keyboard development and try to show a pop-up dialog when a certain key is pressed
```
if (primaryCode == -301) {
AlertDialog mDialog = new AlertDialog.Builder(CONTEXT)
.setTitle("My dialog")
.setMessage("Lets do it.")
.setPositiveButton("ok"... | Android IME: how to show a pop-up dialog? | CC BY-SA 2.5 | null | 2010-08-16T15:10:13.030 | 2020-03-17T19:17:39.123 | 2010-08-17T12:54:01.307 | 184,367 | 184,367 | [
"android",
"keyboard",
"ime"
] |
3,494,496 | 1 | 3,495,535 | null | 1 | 396 | There are many tables nested inside as it showd in the following three images.
Please give an idea so that I can see the circled images fully in the third image..
ps: if you want any html code of o a part, I can share it here on request..
[alt text http://img148.imageshack.us/img148/5750/21619773.jpg](http://img148... | how can I enlarge the boundaries of an html table | CC BY-SA 2.5 | null | 2010-08-16T15:11:58.363 | 2010-08-17T07:18:42.140 | 2010-08-17T07:18:42.140 | 173,718 | 173,718 | [
"c#",
"asp.net",
"html"
] |
3,494,536 | 1 | null | null | 2 | 4,654 | Here's a screenshot:
How can I display the 'no.png' image? It seems changing it to Resource worked.
How can I change the image in my code-behind c# file?
```
imgStatus.Source = new ur???
```
| The file is not part of the project or its build action property is not set to resource | CC BY-SA 2.5 | null | 2010-08-16T15:17:19.373 | 2011-11-13T12:28:42.970 | 2010-08-16T15:24:34.987 | null | null | [
"silverlight",
"image",
"xaml"
] |
3,495,364 | 1 | 3,526,097 | null | 1 | 12,572 | I'm working with an embedded (Active X?) instance of IE within a VB6 application.
The browser displays demographic information based off the selected person (displayed as a list).
Everything works great until I try to quickly select different people from the list (clicking randomly over different people as fast as I ... | Internet Explorer Script Error, Message from Webpage, Permission denied | CC BY-SA 4.0 | 0 | 2010-08-16T16:52:22.187 | 2019-08-06T11:11:25.363 | 2019-08-06T11:11:25.363 | 4,751,173 | 402,706 | [
"c#",
"javascript",
"asp.net",
"internet-explorer"
] |
3,495,692 | 1 | 3,513,877 | null | 0 | 1,525 | I am trying to create a table with two groups in a BIRT report.
I first group by year, and then by a criteria in a second column. Let's say this criteria is one of [A, B, C, D]. If there doesn't exist a criteria for a year, the default in BIRT is for it to be blank. For example, if 2011 didn't have any B or D crite... | How do I show blank entries on a BIRT Table sub-group? | CC BY-SA 2.5 | null | 2010-08-16T17:36:40.697 | 2011-09-29T09:51:05.300 | 2010-08-18T13:19:18.387 | 259,525 | 259,525 | [
"reporting",
"birt"
] |
3,497,143 | 1 | null | null | 0 | 99 | Given the database design below how would you model it? Address Type is Bussiness/Home etc and the PersonId is on Address table is because there are many addresses for one Person.
I would most do something like:
```
public class Person
{
public virtual int PersonId { get; set; }
public virtual string FirstName ... | Domain Design and NHibernate | CC BY-SA 2.5 | null | 2010-08-16T20:41:54.633 | 2010-08-20T00:03:39.833 | 2017-02-08T14:30:11.797 | -1 | 294,327 | [
"nhibernate"
] |
3,498,655 | 1 | 3,499,286 | null | 8 | 6,389 | I'm trying to install PyDev in Eclipse 3.6 on Windows 7.
I have Python 2.7 successfully installed. I installed PyDev through Eclipse, and restarted.
When attempting to configure Eclipse to find my installed Python, (`Window -> Preferences`) the list that appears does not contain Python. (See image below.)
If I g... | How to configure Eclipse for PyDev? Python doesn't appear in Preferences window | CC BY-SA 2.5 | 0 | 2010-08-17T01:25:31.757 | 2014-01-09T21:16:32.557 | 2010-08-17T01:57:30.747 | 82,474 | 82,474 | [
"python",
"eclipse",
"plugins",
"configuration",
"pydev"
] |
3,498,910 | 1 | 3,500,157 | null | 2 | 2,511 | Am using the below code to create polygon. i just want to fill this polygon surface with black dots, how i can do that, then i want to convert this polygon to bitmap or in memory stream, how to do this??
```
// Create a blue and a black Brush
SolidColorBrush yell... | create polygon filled up with dots | CC BY-SA 2.5 | null | 2010-08-17T02:30:13.417 | 2010-08-17T09:08:16.730 | 2010-08-17T08:29:48.000 | 293,773 | 293,773 | [
"c#",
"wpf",
"drawing",
"polygons"
] |
3,499,267 | 1 | 3,501,473 | null | 2 | 334 | This is a shot from [Google BigTable paper](http://labs.google.com/papers/bigtable-osdi06.pdf)

What can be the kind of scenarios in which instead of having something like Oracle's [redo](http://en.wikipedia.org/wiki/Redo_log) [logs](http://download.oracle.com/docs/cd/B... | What situations require me to store different versions of the same data in a database? | CC BY-SA 2.5 | 0 | 2010-08-17T04:10:48.983 | 2010-08-17T10:28:41.537 | null | null | 182,959 | [
"database",
"algorithm",
"oracle",
"data-structures",
"bigtable"
] |
3,499,349 | 1 | 3,500,856 | null | 5 | 6,209 | I'm using a GridLayout trying to make a label autogrow without hiding anything of its content. Here's a simple code to test: Everytime I press the button the label text grows larger, but only after I resize the window horizontally I get the correct layout.
Is there any way to fix this without having to resize the windo... | Layout issue: autogrow label (SWT) | CC BY-SA 2.5 | null | 2010-08-17T04:32:13.940 | 2017-08-31T12:39:03.870 | 2010-08-17T14:17:49.343 | 4,386 | 4,386 | [
"java",
"layout",
"swt",
"autogrow"
] |
3,499,797 | 1 | null | null | 0 | 97 | This is my main table structure:

The expertise column is a many to many relationship with another table that has a list of available languages. I wanted to have a flattened structure to display all the languages that a person expertise's, so I wrote a stored procedure... | problem with stored procedure? | CC BY-SA 2.5 | null | 2010-08-17T06:21:26.860 | 2010-08-17T22:02:35.687 | 2010-08-17T13:22:50.967 | 103,385 | 1,125,645 | [
"wpf",
"vb.net",
"tsql"
] |
3,500,092 | 1 | 3,500,110 | null | 24 | 62,017 | Let's say the height of the div is 34px and the width is 480px. The div should look like this:

and I don't want it to actually use an image, just CSS. Is it possible?
| How to make a pure CSS div with a gradient background? | CC BY-SA 2.5 | 0 | 2010-08-17T07:09:29.053 | 2017-03-14T12:46:33.977 | null | null | 9,382 | [
"css",
"html",
"gradient"
] |
3,500,893 | 1 | 3,564,656 | null | 0 | 67 | I have a classic UL multilevel menu that works flawlessly in Firefox.
The LI are `float: left`, and the A inside is `width: 100%` and `display: block` but as you can see from the screenshots below the submenu items (Hello, World and Foobar) display inline.
The weird thing is that this affects the menu even when using... | UL menu display in IE | CC BY-SA 2.5 | null | 2010-08-17T09:05:47.860 | 2010-08-25T09:54:51.793 | null | null | 192,337 | [
"css",
"internet-explorer"
] |
3,501,254 | 1 | 3,501,371 | null | 1 | 365 | Following is the table and script of this table.
```
DECLARE @temp TABLE (PPId INT, SVPId INT, Minimum INT, Maximum INT)
INSERT INTO @temp VALUES(1,1,8,20)
INSERT INTO @temp VALUES(2,1,21,100)
```

Minimum & Maximum are passed in as parameter. I want to find all rows... | Find rows in table that fall under minimum and maximum range | CC BY-SA 2.5 | null | 2010-08-17T09:56:59.503 | 2010-08-17T10:35:07.197 | 2010-08-17T10:16:23.437 | 77,674 | 77,674 | [
"sql",
"sql-server-2005",
"tsql"
] |
3,501,319 | 1 | 3,501,356 | null | 0 | 814 | I need to show items like in below image.

I'm using this code to bind dropdownlist.
```
var options = (from option in _serviceOptions
select new
{
OptionId = option.OptionId,
OptionText = option.Optio... | Display Pound currency sign (£) in a DataBound DropDownListItem | CC BY-SA 2.5 | null | 2010-08-17T10:06:32.503 | 2010-08-17T10:12:09.170 | null | null | 148,271 | [
"asp.net",
"webforms",
"drop-down-menu",
"special-characters"
] |
3,501,522 | 1 | null | null | 1 | 6,181 | I'm trying to make a slider with ability to select 2 points just like selecting a range from the slider.

Did anyone do anything like that?
| 2-way slider for Android | CC BY-SA 3.0 | 0 | 2010-08-17T10:38:56.693 | 2020-04-05T15:39:57.577 | 2014-09-03T09:31:31.977 | 356,895 | 392,574 | [
"android",
"slider",
"range"
] |
3,501,611 | 1 | 3,503,499 | null | 4 | 2,005 | 
In Service Category table, ParentCategoryId is the ServiceCategoryId and that is the parent category, there can be nth level hierarchy of my categories, so I need to present this using Tree View Control.
How can I do this?
Thanks
| Entity Framework - Binding WPF Tree view control | CC BY-SA 2.5 | 0 | 2010-08-17T10:52:07.047 | 2010-09-12T06:59:25.860 | 2010-08-18T06:25:50.693 | 97,010 | 97,010 | [
"c#",
"wpf",
"linq",
"entity-framework"
] |
3,501,771 | 1 | 3,501,815 | null | 5 | 4,644 | I have a very simple basic bar's graphic like this one

but i want to display the bars with some 3d effect, like this

I just want the bars to have that 3d effect...my code is:
```
fig = Figure(figsize=(4.6,4))
ax1 = fig... | how to make a 3d effect on bars in matplotlib? | CC BY-SA 2.5 | null | 2010-08-17T11:15:18.457 | 2012-05-01T10:31:48.940 | 2012-05-01T10:31:48.940 | 1,292,730 | 361,427 | [
"python",
"3d",
"matplotlib",
"bar-chart"
] |
3,502,348 | 1 | 3,578,385 | null | 8 | 2,626 | I'm trying to and installs it with the user permission when the user
Note:
What I did was create a cab file with:
```
- eds.cab (signed with an SSL certificate)
|--- EDS.ocx
|--- setup.inf
```
the has this code:
```
[version]
signature="$CHICAGO$"
[Add.Code]
EDS.ocx=EDS.ocx
[EDS.ocx]
file-win32-x... | How to show the ActiveX Yellow bar? | CC BY-SA 2.5 | null | 2010-08-17T12:26:34.180 | 2010-10-30T16:38:10.833 | 2010-08-26T17:22:11.060 | 28,004 | 28,004 | [
"internet-explorer",
"plugins",
"activex",
"ocx"
] |
3,502,564 | 1 | 3,502,974 | null | 2 | 1,187 | XML:
```
<?xml version="1.0" encoding="windows-1251"?>
<mode>
<term>
<name>abhdk</name>
</term>
<term>
<name>njhjsu</name>
</term>
<term>
<name>sdasd</name>
</term>
<term>
<name>vbvbcd</name>
</term>
... | Alphabet index template: "xsl:key" match problem | CC BY-SA 2.5 | 0 | 2010-08-17T12:51:55.470 | 2010-08-17T13:36:47.413 | null | null | 294,785 | [
"xslt",
"alphabetical"
] |
3,503,054 | 1 | 3,551,137 | null | 2 | 1,620 | I'm implementing a messaging system in my program. It functions just like e-mail except that it is entirely contained within the system.
I was wondering if anyone has seen an e-mail control template that I could modify. It would have stuff like an inbox, message viewing and message sending parts.
I would just rewire ... | Does anyone know of an ASP.Net E-mail control/user control? | CC BY-SA 2.5 | 0 | 2010-08-17T13:44:07.357 | 2010-08-23T21:15:11.207 | 2010-08-23T21:15:11.207 | 102,526 | 102,526 | [
"c#",
"asp.net",
"user-controls"
] |
3,503,300 | 1 | null | null | 3 | 405 | I'm looking for a tool that can graph method calls over time for a java app. Perhaps a profiler or other log parsing tool?
I know I can write something in python and I'll work towards doing this. I was just hoping not to reinvent the wheel.
edit:
What I ended up doing was writing some python to parse my logs and ... | tool to graph method calls over time | CC BY-SA 2.5 | null | 2010-08-17T14:09:48.597 | 2010-09-22T16:37:04.780 | 2010-08-19T14:16:16.507 | 241,718 | 241,718 | [
"java",
"profiling",
"dynamic-analysis"
] |
3,503,481 | 1 | 5,164,229 | null | 5 | 1,593 | Essentially i want to display a notification just beneath the UINavigationController, covering the area that would be occupied by the top most UIViewController's view. However i want the background image to extend upwards and partly cover the UINavigationBar
The finished product should hopefully look like the below
![... | Overlay a UIView on both a UINavigationBar and a UIViewController | CC BY-SA 2.5 | 0 | 2010-08-17T14:26:43.620 | 2012-10-12T10:01:19.077 | 2010-08-24T10:08:20.093 | 34,046 | 34,046 | [
"iphone",
"uiviewcontroller",
"uinavigationcontroller",
"uinavigationbar"
] |
3,504,026 | 1 | null | null | 1 | 887 | i am developing an iphone application which have to show images from server as thumbnail list. I have created thumbnailview using Three20 package TTThumbViewcontroller class.

Now i have to add banner view above the thumbnail view as shows in the image. Also i have to a... | how to add a custom subview inside TTThumbviewController (Three20) | CC BY-SA 2.5 | 0 | 2010-08-17T15:18:10.767 | 2011-01-07T05:10:34.207 | 2010-08-17T18:48:01.577 | 355,685 | 355,685 | [
"iphone",
"objective-c",
"three20"
] |
3,504,259 | 1 | 3,504,337 | null | 1 | 260 | i am generating a chart map like this:
[http://chart.apis.google.com/chart?chs=440x220&cht=t&chco=CBD122&chld=US&chd=s:_&chtm=usa](http://chart.apis.google.com/chart?chs=440x220&cht=t&chco=CBD122&chld=US&chd=s:_&chtm=usa)

does anyone know if there is a feature to do s... | thematic map: mouseover | CC BY-SA 2.5 | null | 2010-08-17T15:41:46.403 | 2010-08-19T15:34:58.267 | null | null | 117,700 | [
"javascript",
"api"
] |
3,504,652 | 1 | 3,510,453 | null | 2 | 521 | I have defined an object type in .NET that I want receive in a List<> as the input to an ASP.NET MVC action method?
Here is the action method and class I'm trying to receive.
```
public class WhereClause
{
public string ColumnInformation { get; set; }
public string WhereValue { get; set; }
... | How can I pass a list of objects to an ASP.NET MVC action using jQuery? | CC BY-SA 2.5 | 0 | 2010-08-17T16:19:05.817 | 2010-08-18T09:03:13.313 | null | null | 29,277 | [
"asp.net-mvc",
"jquery"
] |
3,504,792 | 1 | null | null | 2 | 441 | I'm trying to stick fast to Robert Martin's SOLID design principles for the first time, and I am not good at it.
In essence, I need a hierarchy of "Node" objects. Some nodes are NodeHosts, some are NodeChildren and some are Both. Everybody's done this one before, but I can't figure out how to do it SOLID without ove... | Need help with .Net SOLID design | CC BY-SA 2.5 | 0 | 2010-08-17T16:35:11.970 | 2011-03-18T23:53:25.380 | 2010-10-17T13:55:35.910 | 265,143 | 303,345 | [
".net",
"liskov-substitution-principle",
"solid-principles"
] |
3,505,124 | 1 | 3,505,174 | null | 0 | 891 | I want to build a spinner for menu selection like the one in where to? IPhone app as shown in image below. Any hints?

| How to build knob like spinner in iOS sdk? | CC BY-SA 2.5 | 0 | 2010-08-17T17:22:23.013 | 2010-08-17T17:37:32.493 | 2010-08-17T17:37:32.493 | 127,036 | 127,036 | [
"iphone"
] |
3,505,187 | 1 | 3,505,436 | null | 85 | 51,456 | Last night my machine restarted while Eclipse Galileo was open. No big deal, right?
This morning, I started my machine and tried to open Eclipse. Instead of opening, I see this:

The error log suggests that there is some kind of problem caused by exiting with unsaved ... | Eclipse won't start, log error says: ObjectNotFoundException: Tree element | CC BY-SA 3.0 | 0 | 2010-08-17T17:29:20.437 | 2020-10-19T06:26:53.530 | 2013-01-22T13:37:27.520 | 505,893 | 28,351 | [
"eclipse"
] |
3,505,766 | 1 | null | null | 3 | 2,931 | In a view containing several subviews, one of the subviews should remain a fixed, non-zero distance from the top and bottom of the superview. In these images, this view is shown in gray:


According to the documentation, ... | autoresizingMask for fixed margin sizes | CC BY-SA 2.5 | null | 2010-08-17T18:38:42.830 | 2010-08-18T00:08:54.730 | 2010-08-17T19:23:15.550 | 382,938 | 382,938 | [
"iphone",
"ipad",
"layout",
"uiview",
"autoresizingmask"
] |
3,506,103 | 1 | 3,507,199 | null | 8 | 10,884 | currently i have the following layout
```
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_marginTop="9px"
android:layout_below="@+id/desc"
android:id="@+... | how can i automatically size listview so it doesn't scroll | CC BY-SA 2.5 | 0 | 2010-08-17T19:19:45.610 | 2015-04-07T06:30:32.200 | 2010-08-17T20:11:42.507 | 202,064 | 202,064 | [
"android",
"listview",
"android-linearlayout"
] |
3,506,871 | 1 | 3,506,929 | null | 0 | 910 | Anyone know what control this is or how I add it, if it can be used in WPF?

I'm referring to the menu: File | Home | Page Layout | Mailings | etc
| Office 2010 Like Controls in WPF | CC BY-SA 3.0 | null | 2010-08-17T20:55:13.103 | 2013-07-24T17:41:05.073 | 2013-07-24T17:41:05.073 | 1,065,525 | 302,613 | [
"wpf",
"ms-office"
] |
3,506,946 | 1 | null | null | 0 | 1,595 | 
```
This page has encountered a critical error. Contact your system administrator if this problem persists.
```
```
Line 1: <%@ Page Inherits="Microsoft.SharePoint.Publishing.TemplateRedirectionPage,Microsoft.SharePoint.Publishing,Version=12.0.0.0,Culture=neutra... | SharePoint critical error | CC BY-SA 2.5 | null | 2010-08-17T21:05:09.960 | 2010-12-27T18:05:47.587 | 2010-08-17T21:12:21.797 | 47,517 | 47,517 | [
"moss"
] |
3,507,241 | 1 | 3,507,269 | null | 2 | 570 | i was wondering how can i add a view on ios Keyboard ? like this :

| add something above of iPhone / iPad keyboard? | CC BY-SA 2.5 | null | 2010-08-17T21:46:49.860 | 2014-11-16T00:16:54.240 | null | null | 199,173 | [
"iphone",
"sdk",
"keyboard"
] |
3,508,086 | 1 | 3,508,105 | null | 1 | 2,956 | I'm a newbie to the jQuery UI plugin and I'm building a demo application to test my knowledge. I'm using the [radio button](http://jqueryui.com/demos/button/#radio) add-on and I can't seem to get it working. I have the following line in a function called when the `body` loads:
```
$("#buttonSetDiv").buttonset();
```
... | jQuery UI buttonset() Not Responding As It Should? | CC BY-SA 2.5 | null | 2010-08-18T00:41:59.190 | 2010-08-18T00:45:16.920 | null | null | 269,970 | [
"jquery",
"jquery-ui",
"jquery-ui-button"
] |
3,508,209 | 1 | 3,510,013 | null | 0 | 467 | I've read [this](https://stackoverflow.com/questions/2266185/silverlight-docking-of-controls) question, but still, it explains how to dock controls within DockPanel. How does one dock the DockPanel within the window?

As you can see, the Map control is docked to the Doc... | Docking of Silverlight Controls | CC BY-SA 2.5 | null | 2010-08-18T01:08:16.943 | 2011-09-08T09:46:35.313 | 2017-05-23T10:30:24.960 | -1 | 9,382 | [
"silverlight",
"silverlight-4.0",
"docking"
] |
3,508,484 | 1 | 3,508,533 | null | 1 | 1,968 | How can I use css to make the dotted border and solid border in one line in a drop down menu this site,
[http://blip.tv/](http://blip.tv/)
here is the image I highlighted the line that I meant above,

here is the link of the drop menu which I fail to make the line lik... | drop down menu: dotted border and solid border in one line | CC BY-SA 2.5 | null | 2010-08-18T02:16:09.810 | 2010-08-18T02:28:05.527 | null | null | 413,225 | [
"css",
"drop-down-menu"
] |
3,508,643 | 1 | null | null | 1 | 2,525 | Lets say we see an image of people watching tv in color and when I add the OpenGL code it turns into this:

What is the code to convert the photo from color to black and white?
| How do I convert a photo from color to black and white using OpenGL? | CC BY-SA 3.0 | 0 | 2010-08-18T03:02:29.317 | 2017-11-09T23:59:39.527 | 2011-11-28T05:19:24.040 | 234,976 | 423,535 | [
"opengl"
] |
3,508,691 | 1 | 3,513,942 | null | 2 | 1,573 | As shown in this image:

I have a set of line segments. I want to check which line-segments intersect with the perpendicular line drawn from a given point (x0,y0).
(E.g.: AB passes the check and BC does not.)
The only information I've got is two points of the line-se... | Check whether a line-segment intersects the perpendicular line draw from a particular point? | CC BY-SA 2.5 | 0 | 2010-08-18T03:14:28.547 | 2010-08-18T15:47:29.910 | 2010-08-18T09:08:06.157 | 50,476 | 180,904 | [
"algorithm",
"vector",
"geometry"
] |
3,508,944 | 1 | 3,509,981 | null | 0 | 256 | 


Hi, im finding leaks with the leaks instruments tool but have no idea why this method is returning me leaks. any help? code is below
```
if(sqlite3_open([databasePath UTF8S... | Memory leak on iPhone | CC BY-SA 2.5 | null | 2010-08-18T04:18:23.653 | 2010-08-18T07:54:26.463 | 2010-08-18T07:54:26.463 | 41,956 | 354,467 | [
"iphone"
] |
3,509,158 | 1 | 3,509,235 | null | 14 | 9,444 | I have a `WebView` inside the `ScrollView`.
The content of `WebView` dyanamically changes when it displays different html page.
I have the following issue:
For example I have `A.html`, and `B.html`. The content of `B.html` is larger than `A.html`, so the page is longer.
When `WebView` load `B.html`, the ScrollView... | Scroll view doesn't resize when the content of child view changes | CC BY-SA 4.0 | 0 | 2010-08-18T05:16:11.950 | 2021-05-13T11:38:25.217 | 2018-06-29T06:47:26.117 | 2,249,207 | 399,820 | [
"android",
"webview",
"scrollview"
] |
3,509,530 | 1 | 3,509,761 | null | 2 | 2,795 | I am trying to set a 9-patch image as the background for one of my activities but it is stretching unescessarily making everything get all wierd. I used draw9patch to create it and added one pixel to the bottom left and one pixel to the top right. I then save it into my drawables directory as intro_bg.9.png. I want ... | 9-patch stretching when it shouldn't stretch, Android | CC BY-SA 2.5 | 0 | 2010-08-18T06:39:18.943 | 2010-08-18T07:40:18.353 | 2010-08-18T06:50:47.883 | 336,861 | 336,861 | [
"android",
"image",
"background",
"android-image"
] |
3,509,776 | 1 | 3,509,821 | null | 11 | 13,472 | 
Just wondering which tool generated this git tree view? Thanks.
| Which git tool generated this tree view? | CC BY-SA 2.5 | 0 | 2010-08-18T07:17:32.193 | 2014-04-08T08:57:30.750 | null | null | 188,923 | [
"git"
] |
3,509,934 | 1 | 3,565,826 | null | 2 | 300 | at first i'm really new to ORM, nhibernate and FHN. i look into this stuff for a few days now.
i have an existing database with 4 tables:

so i tried first to get the Auswahl and RefAuswahlFilter to work.
here are my DomainObjects: pls let me know when i can do this be... | Nhibernate - How to Design DomainObjects and Mappings with CompositeId | CC BY-SA 2.5 | null | 2010-08-18T07:44:34.107 | 2010-08-26T13:02:52.757 | 2010-08-25T12:37:40.923 | 355,239 | 355,239 | [
"c#",
"nhibernate",
"orm",
"fluent-nhibernate",
"nhibernate-mapping"
] |
3,510,016 | 1 | 3,635,951 | null | 2 | 1,348 | I need some combined functionality regarding drag'n'drop between two trees in .
required feature is very simple and is just the builtin drag'n'drop features isolated to a single only.

required feature is that I wan't the user to be able to drag a n... | Wanted: Directions/ideas for a custom tree-to-tree drag'n'drop implementation in ExtJS | CC BY-SA 2.5 | 0 | 2010-08-18T07:57:59.680 | 2010-09-03T12:59:50.267 | 2010-08-31T07:50:58.953 | 62,361 | 62,361 | [
"drag-and-drop",
"extjs",
"tree"
] |
3,510,061 | 1 | null | null | 0 | 3,971 | Right, excuse my stupidity, I've looked through a load of examples on t'interweb but I don't think I've found what I'm looking for.
I have a website, `photography.example.com` is the main site but I also want to have another subdomain to serve static files, for example `static.photography.example.com`.
If I request a... | Using .htaccess to serve static files via a subdomain | CC BY-SA 2.5 | 0 | 2010-08-18T08:04:42.337 | 2015-04-05T08:48:46.980 | 2010-09-28T12:30:19.003 | 80,111 | 80,111 | [
"performance",
".htaccess",
"caching",
"cdn",
"static-content"
] |
3,510,081 | 1 | 3,511,231 | null | 7 | 11,921 | Consider the following setup:
Model:
```
public class Product
{
[ReadOnly(true)]
public int ProductID
{
get;
set;
}
public string Name
{
get;
set;
}
}
```
View:
```
<%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master"
Inherits="System.Web.... | Does ReadOnly(true) work with Html.EditorForModel? | CC BY-SA 2.5 | 0 | 2010-08-18T08:07:24.707 | 2014-06-11T11:30:36.813 | null | null | 10,141 | [
"asp.net-mvc",
"asp.net-mvc-2",
"readonly-attribute"
] |
3,510,163 | 1 | 3,510,215 | null | 5 | 1,214 | I have lines as below.

I am not able to select the all the lines in full. How do i do it?
I don't want to use visual line selection mode, because if i copy and paste in line selection maode, they won't start from the the same column
| Visual block mode does not select the entire line | CC BY-SA 3.0 | null | 2010-08-18T08:20:14.470 | 2014-05-13T16:05:30.643 | 2014-05-13T16:05:30.643 | 4,937 | 39,615 | [
"windows",
"vim"
] |
3,510,227 | 1 | 3,510,245 | null | 1 | 139 | I've refferenced my project to the MEF's dlls
System.ComponentModel.Composition.dll
System.ComponentModel.Composition.Initialization.dll
from C:\Program Files\Reference Assemblies\Microsoft\Framework.NETFramework\v4.0\Profile\Client
But the compiler doesn't recognize the PartInitializer.
Why ?!
.
I have a Repository class which used EntLib 5 Data Access Application Block.
I am retro fitting unit tests into this class and need to mock out the depen... | Mocking Enterprise Lib 5 'Database' | CC BY-SA 2.5 | 0 | 2010-08-18T10:34:24.457 | 2013-09-17T15:01:09.840 | null | null | 85,422 | [
"c#",
".net",
"unit-testing",
"enterprise-library"
] |
3,511,596 | 1 | 3,678,878 | null | 12 | 10,062 | I've got simple tab activity with next layout:
```
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#ffffff00" />
<FrameLayout
android:id="@android:id/tabcontent"
android:la... | Get rid of the line under TabWidget | CC BY-SA 2.5 | 0 | 2010-08-18T11:36:10.213 | 2012-04-01T14:51:39.453 | 2010-08-26T08:40:50.547 | 238,123 | 238,123 | [
"android",
"line",
"tabwidget"
] |
3,511,817 | 1 | 3,511,889 | null | 11 | 9,777 | I'm using Xcode for the first time. I've been following a tutorial, and I'm completely stumped by something that's surely trivial. I've dragged a "Menu" from the Library into my "MainMenu.xib" window. Double-clicking this menu makes it appear.
... | How does one add additional items to NSMenu in Interface Builder? | CC BY-SA 2.5 | 0 | 2010-08-18T12:03:09.543 | 2020-03-02T05:02:18.340 | null | null | 312,785 | [
"xcode",
"interface-builder"
] |
3,511,820 | 1 | 3,512,233 | null | 1 | 1,272 | I'm a member of a small but fairly sociable online forum, and just for fun we've been plotting a chart of who's met who in real life. Here's what it looked like fairly recently.
(The colour is the "distance" from the currently-selected user, e.g., yellow is someone who's met someone who's met them. And no, I'm not Zak.... | Is there an algorithm for positioning nodes on a link chart? | CC BY-SA 2.5 | 0 | 2010-08-18T12:03:30.583 | 2010-09-20T10:28:41.883 | 2010-08-18T12:39:54.073 | 338,518 | 338,518 | [
"algorithm",
"charts"
] |
3,511,845 | 1 | 3,511,860 | null | 0 | 13,067 | I have database with schema on picture below and I need to select everything related to one row (one id) of [letaky]. That means the related [zamestnanci], every related [obsah] and every [knihy] in it.
This is the first time i used relations in database and i have no idea how to make such a select.
![http://img248... | How to select from database with relations? | CC BY-SA 2.5 | 0 | 2010-08-18T12:06:20.387 | 2010-08-18T12:11:00.383 | 2010-08-18T12:11:00.383 | 11,410 | null | [
"mysql",
"relation"
] |
3,512,076 | 1 | null | null | 5 | 14,244 | I have a set of data, for which I'd like to find an average peak. I've done some testing in Numbers.app to see what I'm after and if I make a chart of the dataset it has a feature it calls "polynomial trendline" which draws a curve of the data and the peak of that curve looks exactly like the point/value I'm after.
S... | Find the "peak" of a set of data | CC BY-SA 2.5 | 0 | 2010-08-18T12:32:22.403 | 2015-06-19T12:42:14.293 | 2010-08-18T12:55:46.560 | 80,582 | 80,582 | [
"normal-distribution"
] |
3,512,249 | 1 | 3,677,396 | null | 3 | 4,369 | I've create a custom ribbon button that only shows up the Insert block for a blog post. On my dev environment, it shows up fine. When I deploy to another environment, it shows up, but is disabled. I can't figure out how to enable it.
Button is enabled and okay on my dev environment

This is my grid with some controls after it has been animated. Notice the improper rendering of the text and the rectangle. How can I solve thi... | WPF not rendering properly | CC BY-SA 2.5 | null | 2010-08-18T13:08:05.927 | 2010-08-18T17:07:19.313 | 2010-08-18T13:33:22.260 | 401,480 | 401,480 | [
"wpf"
] |
3,512,774 | 1 | 3,512,921 | null | 5 | 704 | I've got a strange error with IE8 and postcode lookups. It may not be postcode lookups as such that's causing it - just an AJAX call that modifies a select. I've set up a test page [here](http://www.sitecritiques.com/test/ie8-bug/). If you click on Find Address, and then double click (quite quickly) on one of the addre... | Strange IE8 problem with a select that runs AJAX | CC BY-SA 2.5 | null | 2010-08-18T13:48:53.047 | 2010-08-31T00:07:06.740 | 2010-08-18T14:16:21.123 | 313,758 | 149,998 | [
"javascript",
"ajax",
"internet-explorer-8"
] |
3,513,111 | 1 | 3,517,348 | null | 0 | 7,241 | Im creating a PDF document with ezPDF (version 0.9).
The data I insert in the document is from a MySQL database with encoding: "latin1_swedish_ci".
Special characters (especially ö, which matters the most now) are displayed like Greek pre historical algabra (literal) in the document.
What I have tried so far:
```
i... | special characters (ö) in ezpdf document | CC BY-SA 2.5 | 0 | 2010-08-18T14:25:24.170 | 2015-10-30T18:30:53.650 | 2010-09-06T08:47:37.747 | 266,033 | 266,033 | [
"php",
"encoding"
] |
3,513,284 | 1 | 3,513,469 | null | 7 | 43,022 | I have a WAR file for a Java project but when I try to import it into Eclipse, the only option is for archive files such as tar, zip, jar - nothing for war.
Is this only an option in certain editions of Eclipse because I have a copy of SpringSource (also Eclipse-base) that allows me to import WAR files?
![alt text]... | Why no option to import a WAR file into Eclipse? | CC BY-SA 2.5 | 0 | 2010-08-18T14:43:00.663 | 2016-12-04T14:40:46.463 | 2010-08-18T14:50:30.450 | 420,920 | 420,920 | [
"java",
"eclipse",
"import",
"war"
] |
3,513,344 | 1 | 3,513,507 | null | 0 | 152 | I'm having problems with the menus of a site I'm developing. Here's what the menus look like in different browsers.




VS2008 (answers to VS2010 are welcome)
C# (FWIW)
I'm using a constructor (the question applies for methods, too), and there's Intellisense:

I don't yet have a value to specify ... | Auto-generate variable *name* to match parameter you're providing? | CC BY-SA 2.5 | 0 | 2010-08-18T15:11:15.880 | 2010-08-25T21:55:31.293 | null | null | 116,895 | [
"c#",
"visual-studio",
"parameters",
"code-generation",
"resharper"
] |
3,513,783 | 1 | 3,513,831 | null | 4 | 3,524 | This is a screenshot of a table in Chrome 5.

The same table rendered in IE8:

You can view the page here:
[http://labs.pieterdedecker.be/vspwpg/?page_id=96](http://labs.pieterdedecker.be/vspwpg/?page_id=96)
This CSS rule adds... | IE8 doesn't respect table padding | CC BY-SA 2.5 | 0 | 2010-08-18T15:30:40.517 | 2012-10-20T07:03:40.713 | null | null | 217,649 | [
"html",
"css",
"internet-explorer",
"cross-browser"
] |
3,513,862 | 1 | 3,544,107 | null | 6 | 2,384 | I am writing a live wallpaper for android. To test my basic code was working I drew a rectangle in the top left-hand cornor of the screen:
```
canvas.drawRect(0f,0f,50f,50f,paint);
```
Half of the rectangle was underneath the bar at the top of the home screen.
I trie... | Android - Live Wallpaper offset clipping | CC BY-SA 2.5 | 0 | 2010-08-18T15:39:40.617 | 2012-01-31T03:41:17.940 | 2011-08-31T14:26:06.470 | 19,750 | null | [
"android",
"draw",
"offset",
"live-wallpaper",
"wallpaper"
] |
3,514,104 | 1 | 3,514,167 | null | 0 | 794 | I have a map with locations as shown in the image below.

These locations are held in a C# Dictionary object with both Latitude/Longitude and Cartesian (x, y, z) coordinates. The area is covered by 5 teams, the first of which is in the south west of the area. What I n... | Sort/Order Locations | CC BY-SA 2.5 | null | 2010-08-18T16:04:02.040 | 2010-08-18T16:26:55.893 | null | null | 219,689 | [
"c#",
"geospatial"
] |
3,514,251 | 1 | 3,514,632 | null | 1 | 188 | I want to create a new dialog looking like the Eclipse "Edit working set" dialog, example:
 (it's not that exact dialog, but it has the same look).
Since it seems to be a fairly standard type of dialog, I was hoping I would be able to reuse it, but I haven't found anyt... | Reuse working set dialog? | CC BY-SA 2.5 | null | 2010-08-18T16:20:21.220 | 2010-08-18T17:02:07.843 | null | null | 207,764 | [
"eclipse"
] |
3,514,392 | 1 | 3,514,483 | null | 5 | 4,197 | I'm wondering how I can create a custom pop-up like the one in the screenshot below (borrowed from the Swype keyboard), where I can have a couple of buttons, which each commit a string to the currently "connected" `TextView` (via a [InputConnection](http://developer.android.com/reference/android/view/inputmethod/InputC... | Android IME: showing a custom pop-up dialog (like Swype keyboard) which can enter text into the TextView | CC BY-SA 2.5 | 0 | 2010-08-18T16:36:21.553 | 2015-09-30T12:39:06.727 | 2010-11-13T10:41:37.953 | 49,246 | 184,367 | [
"android",
"keyboard",
"ime",
"android-input-method"
] |
3,514,690 | 1 | 3,515,445 | null | 0 | 3,982 | I have a problem with using primeface's wizard component and the core selectOneRadio. My signup page looks like this
```
<ui:define name="content">
<f:view>
<h:form id="signUpForm">
<p:wizard widgetVar="wiz" flowListener="#{SignUpBean.onFlowProcess}">
... | Primefaces Wizard and selectOneRadio | CC BY-SA 2.5 | null | 2010-08-18T17:12:16.113 | 2010-08-18T18:35:02.950 | null | null | 407,120 | [
"jsf",
"jsf-2",
"primefaces"
] |
3,514,926 | 1 | 3,547,717 | null | 1 | 406 | Have a look at the menus on this page:
[http://www.pieterdedecker.be/labs/vspwpg/?page_id=96](http://www.pieterdedecker.be/labs/vspwpg/?page_id=96)
They look okay in Chrome 5 (above) and IE8 (below).


When I load the page int... | Why does this menu render poorly in Firefox 3.5 and IE7? How do I adapt? | CC BY-SA 2.5 | 0 | 2010-08-18T17:40:13.973 | 2010-08-23T19:29:09.217 | 2010-08-22T15:27:26.647 | 217,649 | 217,649 | [
"html",
"css",
"internet-explorer",
"cross-browser"
] |
3,515,265 | 1 | 3,515,337 | null | 0 | 194 | Please can you tell me why the dark blue background (between the main white section and the outer light-blue section) not show in FireFox? It does show in IE.

The site URL is [http://www.moorespeed.co.uk/](http://www.moorespeed.co.uk/)
The relevant code is at: [http:/... | Why does the dark blue background not appear in FireFox (it does in IE)? | CC BY-SA 2.5 | 0 | 2010-08-18T18:16:38.130 | 2010-08-18T18:29:51.483 | null | null | 2,699 | [
"css",
"firefox"
] |
3,515,459 | 1 | 3,515,600 | null | 2 | 434 | A user reported to us that some strange behaviour in our application can be resolved after installing .NET 4:
```
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v2.0.50727" />
</startup>
</configuration>
```
I wasn't aware that if you didn't specify an assembly i... | How to identify which framework an assembly is loaded in? | CC BY-SA 2.5 | null | 2010-08-18T18:36:28.343 | 2010-08-19T19:28:58.977 | 2010-08-19T19:28:58.977 | 74,302 | 74,302 | [
".net",
"assemblies",
"mixed-mode"
] |
3,515,638 | 1 | 3,515,974 | null | 3 | 5,333 | I am adding different markers to my map...
```
Drawable drawable = app1.getResources().getDrawable(R.drawable.test);
drawable.setBounds(0, 0, drawable.getIntrinsicWidth(), drawable.getIntrinsicHeight());
OverlayItem overlayitem2 = new OverlayItem(mark, "Test", "t");
overlayitem2.setMarker(drawable);
app1.mapOverlay.ad... | MapView Marker shadow | CC BY-SA 2.5 | 0 | 2010-08-18T18:56:29.960 | 2012-04-23T20:13:52.987 | 2010-08-18T19:47:14.803 | 126,562 | 401,025 | [
"android",
"android-mapview",
"marker"
] |
3,515,879 | 1 | 3,516,317 | null | 1 | 1,623 | I am trying to create a page as shown in picture. Now only tables are allowed and no css. I am having difficulty in understanding how to achieve as it is in original image. Any help please?

This is what I have written
```
<html>
<head>
<title>HTML</title>
</head>
<body... | HTML page (Only with Tables, no css allowed) | CC BY-SA 2.5 | null | 2010-08-18T19:28:04.537 | 2010-08-18T20:19:51.060 | null | null | 235,181 | [
"html"
] |
3,515,923 | 1 | 3,536,046 | null | 0 | 170 | What kind of char is this and how do I convert it to a text in c#/vb.net?

I opened a .dat file in notepad, took a screenshot and attached it here.
| What kind of char is this and how do I convert it to a text? | CC BY-SA 2.5 | null | 2010-08-18T19:32:30.303 | 2010-08-21T02:46:46.927 | null | null | 82,709 | [
"character-encoding"
] |
3,516,130 | 1 | null | null | 4 | 4,518 | I'm attempting to upgrade my existing ASP.net MVC 2 web application to MVC 3 so I can use the goodness that is the Razor Viewengine and other [said](http://weblogs.asp.net/scottgu/archive/2010/07/27/introducing-asp-net-mvc-3-preview-1.aspx) improvements.
After using the converter to convert my app from mvc2 to mvc3 I'... | Upgrade MVC 2 to MVC 3 issues with views | CC BY-SA 2.5 | 0 | 2010-08-18T19:54:24.303 | 2013-01-10T18:30:09.777 | 2010-08-18T20:31:07.787 | 263,943 | 263,943 | [
"asp.net-mvc-2",
"view",
"asp.net-mvc-3"
] |
3,516,313 | 1 | 3,517,037 | null | 53 | 33,521 | Realizing that this could be subjective based on the project at hand, I'm looking for the "best practice" method of structuring a VS (Visual Studio) Solution.
Please feel free to edit this, comment on what you think might be incorrect, suggest alternatives, etc. I'd love to see this Community Wiki grow into a great r... | The Ultimate Visual Studio Solution Structure | CC BY-SA 3.0 | 0 | 2010-08-18T20:19:20.877 | 2015-07-15T16:41:04.763 | 2015-06-11T15:57:40.397 | 1,804,496 | 124,069 | [
".net",
"visual-studio",
"projects-and-solutions"
] |
3,516,406 | 1 | 3,516,484 | null | 0 | 802 | I've got some problems while trying to lay out my site. I'm using [Blueprint Framework](http://www.blueprintcss.org/) and it happens when I apply borders to my div. Since their width are controlled by `span-XX` (or `grid-xx` as I noticed in [960gs](http://960.gs)), the moment I apply borders to any `div` element I have... | Blueprint CSS framework or any Grid system: fix for bordered divs | CC BY-SA 2.5 | null | 2010-08-18T20:31:33.420 | 2011-09-23T08:29:00.250 | null | null | 336,945 | [
"css",
"gridview",
"grid",
"blueprint-css"
] |
3,516,527 | 1 | null | null | 1 | 511 | I'm having an issue where certain controls are flipped, depending on the machine that I'm building my project on. On my development machine, when I build it, everything is okay. However, when I build it on our build server, some things are flipped. It seems to be things that are on a higher layer - for instance, option... | Adobe AIR: Controls flipped (mirrored) in certain build environments | CC BY-SA 2.5 | 0 | 2010-08-18T20:45:03.620 | 2011-05-30T11:25:01.870 | null | null | 52,791 | [
"apache-flex",
"air",
"flex4"
] |
3,516,710 | 1 | null | null | 0 | 2,497 | I have a question about Ext JS (error message).
I had code that was running fine in all browsers but yesterday at noon I tried to
modify de css and I think I messed something up.
After saving my document and uploading it to my server, I encountered the error:
`Ext is not defined` and `illegal character`. I really... | Ext is not defined IN Firefox? | CC BY-SA 3.0 | null | 2010-08-18T21:08:31.083 | 2014-02-22T21:42:06.997 | 2014-02-22T21:42:06.997 | 807,423 | 424,513 | [
"extjs"
] |
3,516,784 | 1 | 3,520,633 | null | 2 | 498 |
: How to efficiently query and update entities having relationships to other entities?
Here's an interesting data modeling scenario with two tables that has been puzzling me:
```
Entities { ID, Name, ScalarValue }
ComponentEntities { AggregateEntityID, ComponentEntityID, quantity }
```
`AggregateEntityID` and `C... | How to prevent deep recursive queries with entities consisting of entities of the same type? [Cool example inside] | CC BY-SA 2.5 | 0 | 2010-08-18T21:18:15.647 | 2010-08-19T10:02:13.863 | null | null | 377,920 | [
"database-design",
"recursion",
"hierarchical-data",
"self-reference",
"rdbms-agnostic"
] |
3,517,006 | 1 | 3,517,043 | null | 1 | 185 | On the screenshot, you see on the bottom there is a list of prices. I want it hidden by default and when I click on the button 'Prices', I want it to slide down from underneath. Then if I press it again I want the list to slide up again. How can I do this? Sorry if I didn't explain much, any questions please ask.
![al... | How can I use JQuery on my page? | CC BY-SA 2.5 | null | 2010-08-18T21:48:51.293 | 2010-08-18T21:58:57.677 | null | null | 363,551 | [
"jquery",
"css"
] |
3,517,123 | 1 | 3,519,339 | null | 1 | 2,819 | Whenever I do:
```
xxx = [NSImage imageNamed:@"Package.png"];
```
loads but it's width and height remain 0. And whenever I try loading it into an NSImageCell I get this error:
> NSImageCell's object value must be an NSImage.
Can someone help me out? I've never had this problem before.
Edit: So when I do it in t... | Can't create an NSImage? | CC BY-SA 2.5 | 0 | 2010-08-18T22:08:45.243 | 2010-08-19T08:20:28.050 | 2010-08-19T05:37:48.573 | 160,868 | 160,868 | [
"objective-c",
"cocoa",
"nstableview",
"nsimage"
] |
3,517,278 | 1 | null | null | 4 | 1,925 | Problem is solved by updating.
---
Resharper is really annoying me and marking code that is 100% correct as wrong, it keeps wanting me to change an `Action` to an `Action<T1,T2...Tn>` when this obviously incorrect. It flashes everytime I type something so is really distracting. Is there a way to disable resharper... | Disable Resharper with comment | CC BY-SA 2.5 | null | 2010-08-18T22:33:22.693 | 2011-07-24T10:40:46.237 | 2010-08-19T08:13:42.237 | 139,766 | 139,766 | [
"c#",
"delegates",
"resharper"
] |
3,517,298 | 1 | 3,518,163 | null | 0 | 659 | (EDIT: I've edited my question to make it simpler,
sorry if some answers are out of context)
I have prepared a reduced test case for my question:

I'm trying to create a custom component which is
being fed with XML data coming from the server.
My problem is tha... | Flex: Listening for CollectionEvent in custom component | CC BY-SA 2.5 | null | 2010-08-18T22:37:39.020 | 2010-08-25T14:21:15.077 | 2010-08-25T14:21:15.077 | 165,071 | 165,071 | [
"apache-flex",
"e4x",
"xmllist"
] |
3,517,370 | 1 | 3,517,578 | null | 7 | 8,623 | The following code puts a cube at (0, 0, 0) and another at (0, .5, .5) and each cube is (.5, .5, .5) in dimension. I'm trying to rotate the view that the screen gets to one like this  but instead I get this view . Also, I realiz... | Rotating the viewing platform in Java3d | CC BY-SA 2.5 | 0 | 2010-08-18T22:49:54.273 | 2010-08-30T03:26:20.390 | 2010-08-30T03:26:20.390 | 386,059 | 386,059 | [
"java",
"3d",
"rotation",
"java-3d"
] |
3,517,726 | 1 | 3,517,746 | null | 217 | 123,972 | >
[Why is it bad to use goto?](https://stackoverflow.com/questions/3444060/why-is-it-bad-to-use-goto)
[GOTO still considered harmful?](https://stackoverflow.com/questions/46586/goto-still-considered-harmful)
I was ramdomming through xkcd and saw this one (if also read some negative texts about them some years... | What is wrong with using goto? | CC BY-SA 2.5 | 0 | 2010-08-19T00:05:55.090 | 2022-06-24T20:38:19.520 | 2017-05-23T12:10:36.343 | -1 | null | [
"c++",
"goto"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.