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,849,569
1
3,850,496
null
7
6,638
If I use the following ``` for(int i = 255; i > 0; i--) { Color transparentBlack = new Color(0, 0, 0, i); } ``` I have the effect of the object using this color to draw with going from black to a light grey and then invisible when the alpha value goes to zero. However if I start with a white value: ``` new Colo...
Is there an alpha value that makes white go invisible?
CC BY-SA 2.5
0
2010-10-03T11:34:24.367
2010-10-03T19:32:18.767
2010-10-03T19:32:18.767
69,214
69,214
[ "c#", "xna", "windows-phone-7" ]
3,849,615
1
null
null
3
675
When i have an ImageButton and a drawable and i want to do something like the Drawer or Twitter where when i press the button and the corner of the image is highlighted over the edge, in drawer its yellow, in twitter its white. Like the one below. ![alt text](https://i.stack.imgur.com/oVZXz.png) How do i set my drawa...
Highlight edge on Drawable in Android
CC BY-SA 2.5
null
2010-10-03T11:54:40.147
2010-10-03T12:33:32.927
null
null
258,648
[ "android", "android-widget" ]
3,849,698
1
3,849,806
null
1
925
I have a table in html with some tabular data. The thing is that I have designed a delete and edit visually link outside the table (on the left side of the table), that will only be visible when the user hovers the table row. How can I add these links without messing up the default table layout? The current problem...
HTML: How to add a delete link inside a html table, but still visible as outside the table
CC BY-SA 2.5
null
2010-10-03T12:27:23.143
2010-10-03T14:37:17.647
null
null
197,879
[ "html", "css" ]
3,850,151
1
3,850,159
null
0
415
I am having trouble with a HelloWorld Applet. Here is my Java code: ``` package webCrawler.applet2; import javax.swing.JApplet; import java.awt.Graphics; public class HappyFace extends JApplet { public void paint (Graphics canvas) { canvas.drawOval(100,50,200,200); canvas.fillOval(155,100,...
Hello World, Java Applet, Problem
CC BY-SA 2.5
null
2010-10-03T14:28:30.600
2010-10-03T14:57:51.257
2017-05-23T12:07:02.087
-1
251,589
[ "java", "applet" ]
3,850,561
1
3,850,718
null
0
811
I'm trying to make an [XYLine](http://code.google.com/apis/chart/docs/gallery/line_charts.html#chart_types) with the [Google Chart API](http://code.google.com/apis/chart/) via the not-so-well-documented [GChartWrapper](http://code.google.com/p/google-chartwrapper/) libraries. Here's a portion of the code that is suppo...
Google Chart API: trouble with rendering a XYLine graph
CC BY-SA 2.5
0
2010-10-03T16:24:10.107
2010-10-03T17:11:36.363
2017-02-08T14:30:31.150
-1
13,992
[ "python", "google-visualization" ]
3,850,655
1
3,858,233
null
0
444
![View of high number](https://i.stack.imgur.com/WXCFa.png) How to make it show large numbers in QTableView like 10030232145 and not as 1.02342e+10?
Qt's QTableView and large numbers
CC BY-SA 2.5
null
2010-10-03T16:48:15.643
2010-10-04T18:56:00.783
2010-10-03T16:54:22.747
262,732
262,732
[ "qt", "qtableview" ]
3,850,748
1
3,850,757
null
2
1,366
I have a website and when I click on a link, I get this blue border around the link just during the time I am clicking it. When the new page loads, that highlighting is gone. Here is an example screenshot how it looks right when I click on the link: ![Alt text](https://i.stack.imgur.com/vSspv.png) How can I stop thi...
How can I avoid a blue line show up when I click on a link?
CC BY-SA 3.0
0
2010-10-03T17:17:44.993
2015-10-06T18:35:24.287
2015-10-06T18:35:24.287
63,550
4,653
[ "html", "css", "hyperlink" ]
3,850,976
1
3,867,725
null
3
2,588
I'm trying to create a border inside an image instead of outside of the image. I want to do this because I would like to put some alpha value on the border so that i can see the image through the border. I tried placing a div a few pixels smaller than the image around the image and then setting "overflow:none". Th...
alpha border inside image
CC BY-SA 2.5
0
2010-10-03T18:19:58.983
2011-11-28T13:24:45.803
null
null
225,128
[ "css" ]
3,851,252
1
3,851,310
null
3
790
The [Independent website](http://www.independent.co.uk) has a little widget that pops up a message informing you that there is an Independent Chrome extension available when you visit it using Chrome (v7 in my case): ![ ](https://i.stack.imgur.com/wJw4z.jpg) Is this part of the Chrome extensions API - if so how is i...
Alerting website visitors that a chrome extension is available - how?
CC BY-SA 2.5
0
2010-10-03T19:25:06.983
2013-05-08T10:44:08.110
null
null
116,923
[ "google-chrome", "google-chrome-extension" ]
3,851,477
1
3,852,398
null
3
3,907
I have a couple of queries which pull data for use in a graph. ``` <cfquery name='clusterPrivateReferrals' dbtype="query"> SELECT organisationName, count(messageID)*1000/listSize as msgCount FROM clusterReferrals WHERE datecreated>#refRateStartDate# AND refTypeID=3 GROUP BY organisationName, listSize </cfquery> <cfq...
Coldfusion cfchart stacked order
CC BY-SA 2.5
0
2010-10-03T20:27:52.837
2012-02-03T22:35:36.573
2010-10-04T22:51:54.920
83,147
83,147
[ "coldfusion", "stacked", "cfchart" ]
3,851,655
1
null
null
1
178
(In the application start up event, I added my main view to app's Window in the following codes: ``` - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { // Override point for customization after application launch. MyViewController* vc = [[MyViewCon...
View position is too high
CC BY-SA 2.5
null
2010-10-03T21:23:21.403
2010-10-03T21:30:48.123
null
null
62,776
[ "iphone" ]
3,851,668
1
3,861,219
null
30
14,901
Given n circles with radii r1 ... rn, position them in such a way that no circles are overlapping and the bounding circle is of "small" radius. The program takes a list [r1, r2, ... rn] as input and outputs the centers of the circles. 1. I ask for "small" because "minimum" radius converts it into a much more difficu...
Position N circles of different radii inside a larger circle without overlapping
CC BY-SA 2.5
0
2010-10-03T21:27:34.667
2010-10-05T06:26:44.413
2010-10-05T06:15:15.753
444,748
444,748
[ "algorithm", "language-agnostic", "geometry" ]
3,851,922
1
3,851,934
null
3
2,244
I'm having some trouble figuring out the boost image library. I could not find any exact documentation on how to use the interleaved_view function included in the boost::gil library. More specifically, I don't know exactly what binary format the raw data is supposed to be stored in. The only mention of it I could fi...
boost::gil Interleaved_view
CC BY-SA 2.5
0
2010-10-03T22:54:55.617
2010-10-03T23:02:45.633
2010-10-03T23:02:45.633
319,988
319,988
[ "c++", "png", "boost-gil" ]
3,852,252
1
3,852,345
null
2
1,371
I'm new to OpenGL and C++. Say I start with a 2D square (on the very left) like shown in the picture below. I want to make it interactive with the `glutKeyboardFunc()` so when I press a number a new box will draw next to the corresponding edge. ![alt text](https://i.stack.imgur.com/3eanM.png) Figure the best way to d...
How to store OpenGL Primitives in a tree data structure in C++?
CC BY-SA 2.5
0
2010-10-04T01:07:12.103
2010-10-04T02:13:23.253
2010-10-04T01:32:34.757
84,346
84,346
[ "c++", "opengl", "data-structures", "tree", "glut" ]
3,852,561
1
3,852,600
null
1
367
Here's the screenshot of my firebug installed in updated firefox. I've noticed that the firebug shows hidden nested tag in the html tab. I don't know what causes this to happen...![alt text](https://i.stack.imgur.com/zXbJ1.png) Anyone?..Please help....Thanks... And here's the html mark-up..![alt text](https://i.stac...
Firebug: nested <strong> tags
CC BY-SA 2.5
null
2010-10-04T02:54:04.670
2010-10-04T03:04:54.300
2010-10-04T03:02:55.007
250,471
250,471
[ "html", "firefox-addon", "firebug" ]
3,852,649
1
3,852,772
null
0
147
Because the navigationItem.rightBarButtomItem is customized, it will occupy a big place and the title view won't be on the center. ![alt text](https://i.stack.imgur.com/KMmUQ.png) For example, I want the "OMG" is located at the center between buttoms of "Home" and "Group". How to achieve this?
How to make navBar's title located at center?
CC BY-SA 2.5
null
2010-10-04T03:22:01.100
2010-10-04T04:07:48.410
null
null
419,348
[ "iphone", "cocoa-touch" ]
3,853,171
1
null
null
1
4,933
I used jQuery UI buttons in a project, and they have been working fine. But, in IE7, the icon doesn't float as it should. I realise IE doesn't have rounded corners support yet, but that is OK. ## Good browsersSome browsers render it fine ![good example](https://i.stack.imgur.com/UDLxn.png) ## IE sucks version 7...
Float and jQuery UI button
CC BY-SA 3.0
0
2010-10-04T05:59:25.307
2013-08-17T17:00:25.653
2017-05-23T12:30:36.930
-1
31,671
[ "jquery", "css", "jquery-ui", "internet-explorer-7", "jquery-ui-button" ]
3,853,186
1
null
null
6
816
I’ve got an `UIActionSheet` with a single button that I show in a popover. In landscape mode there is a plenty of space around the popover, so that it displays with an arrow in the middle and everything is fine: ![in landscape](https://i.stack.imgur.com/g5FJk.png) In portrait the popover has to be displayed with an a...
Wrong UIActionSheet layout in popover
CC BY-SA 2.5
0
2010-10-04T06:03:19.617
2011-02-03T20:39:36.757
null
null
17,279
[ "ios", "uipopovercontroller", "uiactionsheet" ]
3,853,287
1
3,853,753
null
1
114
How can I disable vertical scaling in GTK+? My program, which is currently only several controls in a few `hbox` objects stacked vertically in a `vbox`, stretches vertically when I increase the size of the window. I don't want this to occur. ![](https://imgur.com/Jms1Q.png) ![](https://imgur.com/N07A1.png)
Disable vertical scaling in GTK+
CC BY-SA 2.5
null
2010-10-04T07:18:43.800
2010-10-04T08:46:13.463
2010-10-04T07:32:58.150
330,644
330,644
[ "c", "gtk" ]
3,853,977
1
3,866,960
null
2
221
My present TextMate theme (Ruby Blue) is nice, except there's one annoying attribute that I haven't been able to fix. When editing CSS, it doesn't apply any color to "word values" for properties. See screenshot below -- for `width: 90%`, the 90% is highlighted. However, for `display: block`, 'block' gets no highligh...
What's the selector to color word values in CSS files in TextMate?
CC BY-SA 2.5
0
2010-10-04T09:23:13.697
2010-10-05T19:29:52.980
null
null
139,934
[ "css", "themes", "textmate" ]
3,854,041
1
4,022,863
null
4
1,255
I have in my project a report that calculate some event ...i want insert a chart in this report but its unshown when i complie it .... its shown like un appernce image :( ![](https://i.stack.imgur.com/vvuk4.jpg) --- ![](https://i.stack.imgur.com/IsJiG.jpg)
Insert Chart In Asp.Net using VB.NET
CC BY-SA 2.5
null
2010-10-04T09:36:32.760
2010-10-26T10:39:54.377
null
null
226,149
[ "vb.net", "crystal-reports", "charts" ]
3,854,475
1
3,864,305
null
2
188
I can't figure out what Re# is complaining about with a piece of code. Everything compiles ok and works as it should, but Re# can't seem to resolve the expression without offering any suggestions. Look at the attachment for code and error. Any offers? ![alt text](https://i.stack.imgur.com/21YPf.jpg)
Unresolved lambda expression in Re#
CC BY-SA 2.5
null
2010-10-04T10:46:18.950
2010-10-05T13:56:01.217
2010-10-04T11:18:29.900
21,692
21,692
[ "c#", "visual-studio-2010", "silverlight-4.0", "lambda", "resharper" ]
3,854,508
1
4,177,452
null
3
2,031
I have seen the WWDC-104 video showing UIScrollView for photos. I have downloaded the Sample code too. In my app the Structure is as follows, (Root Class)Class A ---> Class B -----------> PhotoViewController(Containing ScrollView) I am calling the PhotoViewController class by using presentModalViewController method...
In photoscroller app (iPhone WWDC-104 Photos App) uiscrollview images shift to right when called using presentModalviewController
CC BY-SA 2.5
null
2010-10-04T10:49:50.410
2010-11-14T13:29:06.033
2010-10-07T05:11:07.177
162,677
162,677
[ "iphone", "uiscrollview", "paging", "presentmodalviewcontroller", "wwdc" ]
3,854,541
1
3,854,762
null
1
1,282
I have tested my pages in Firefox & IE and looking at Firebug in Firefox for some reason some images are taking a long time to load. They are not very big in comparison to the ones which are loading quicker. Attached is a screenshot of Firebug. I especially notice it in IE with the progress bar at the bottom of the ...
ASP.Net MVC - Images taking a long time to load
CC BY-SA 2.5
null
2010-10-04T10:53:18.963
2010-10-04T11:23:25.007
null
null
84,539
[ "asp.net", "asp.net-mvc", "optimization", "asp.net-mvc-2" ]
3,854,597
1
3,855,038
null
1
386
Current the google map display US as default. ![alt text](https://i.stack.imgur.com/lTMAQ.png) I want to dispaly India as default on the map. How can i do this?
How to draw default postion on the google map in android?
CC BY-SA 2.5
null
2010-10-04T11:00:17.223
2012-01-14T12:25:59.740
2010-10-04T11:56:24.827
443,075
443,075
[ "android" ]
3,855,182
1
3,855,989
null
0
441
There is a strange bug which I can't solve. The bug is reproducable by this simplified example: css: ``` table.class1 td.subclass1{ display : none } table.class2 td.subclass2{ display : none } ``` html: ``` <table class="class1"> <tr> <td class="subclass1"> Invisible </td> <td class="subclass2"> Visible </td...
Internet Explorer 7 css js table column display bug
CC BY-SA 2.5
null
2010-10-04T12:26:31.940
2010-10-04T14:05:05.177
2010-10-04T12:40:19.800
159,319
159,319
[ "jquery", "html", "css", "internet-explorer-7" ]
3,855,221
1
3,855,283
null
6
388
I'm fairly new to database design, but I understand the fundamentals. I'm creating a relational database and I'd like to do something similar to creating a reusable type or class. For example, let's say I have a `Customer` table and a `Item` table. Customer and Item are related by a standard 1-to-many relationship, so ...
How to model a custom type in a relational database?
CC BY-SA 2.5
null
2010-10-04T12:31:41.123
2018-11-26T06:37:29.790
null
null
262,748
[ "database", "database-design", "types", "relational-database" ]
3,856,075
1
3,856,147
null
1
1,816
I have a button which I want to occupy 75% of the screen: ![Panic](https://i.stack.imgur.com/6kFJr.jpg) On a 480x800 resolution screen this would be 360 pixels wide. On a 280x320 resolution screen this would be 210 pixels wide. I understand there is a DIP unit of measurement, but does that also work to scale sc...
Scaling ImageButtons for multiple resolutions
CC BY-SA 2.5
null
2010-10-04T14:15:08.943
2010-10-05T05:50:30.883
null
null
21,574
[ "android", "imagebutton" ]
3,856,158
1
3,896,330
null
14
4,770
On a localized Iphone (Language set to Hebrew) when we view a webpage using safari and tap on an input field we get the keyboard up with the "Next/Previous/Done" buttons in Hebrew. When we view the same webpage using a UIWebview embedded inside our application the "Next/Previous/Done" buttons are always in English. ...
UIWebview Localization
CC BY-SA 2.5
0
2010-10-04T14:24:49.947
2010-10-09T16:06:47.977
2010-10-07T11:09:00.090
130,304
130,304
[ "iphone", "cocoa-touch", "ios4" ]
3,856,163
1
3,862,527
null
3
2,480
I am having troubles to carry over previously selected items in a ModelForm in the admin. I want to use the widget since that is the most straightforward UI in this usecase. It works as far that when saving, the values are stored. But when editing the previously saved item, the values previously saved in this field ar...
Django: MultipleChoiceField in admin to carry over previously saved values
CC BY-SA 2.5
0
2010-10-04T14:25:46.243
2022-09-02T13:18:48.600
2010-10-05T09:19:44.177
18,671
18,671
[ "django", "admin", "modelform" ]
3,856,224
1
3,856,323
null
1
3,933
I want to "concatenate" all the "Text"-rows into one single row and get one row as a result. Is this even possible? I use MSSQL Server 2005. ![query](https://i.stack.imgur.com/BpT0x.png)
Group and concatenate many rows to one
CC BY-SA 2.5
null
2010-10-04T14:33:49.710
2011-09-20T14:46:29.947
2011-09-20T14:46:29.947
570,191
6,851
[ "sql", "sql-server", "sql-server-group-concat" ]
3,856,318
1
3,856,348
null
1
776
I have collapsable/expandable [tree](http://docs.jquery.com/Plugins/Treeview) created in jQuery. After loading the tree: ``` $("#tree").treeview({ collapsed: true, animated: "medium", control: "#sidetreecontrol", persist: "location" }); ``` I have expando data attribute on the nod...
Newly created elements without jquery expando attribute aren't maintained by jquery?
CC BY-SA 2.5
null
2010-10-04T14:44:35.143
2010-10-04T14:47:43.457
null
null
270,315
[ "jquery" ]
3,856,399
1
10,893,821
null
0
206
Hi this is my UITextView coordinate on InterFace builder : ![alt text](https://i.stack.imgur.com/9crqD.png) so if i want use this coordinate via frame task , my UITextView going to change the position on the screen !!! i don't know what's the problem ! i insert the exactly numbers on the interface builder size tab . ...
Problem with UITextView and frame task
CC BY-SA 2.5
null
2010-10-04T14:53:34.813
2012-06-05T10:16:36.303
null
null
319,097
[ "iphone", "ios4" ]
3,856,408
1
3,856,565
null
0
717
Is it possible to detect the touches in a scrollview which is filled with a grid of buttons as in the image below? ![alt text](https://i.stack.imgur.com/MAZRV.png) For example, in this image, i can only drag the scroll view by dragging on the red areas, but i would like to be able to scroll the scrollview no matter w...
Detecting touches on a scrollview
CC BY-SA 2.5
null
2010-10-04T14:55:38.223
2012-11-14T16:20:44.700
null
null
222,217
[ "objective-c", "uiscrollview", "ios4" ]
3,856,461
1
3,864,709
null
8
5,687
[Screenshot below] I was using ListPlot to draw a smooth line through some data points. But I want to be able to work with the 1st and 2nd derivative of the plot, so I thought I'd create an actual "function" using Interpolation. But as you can see in the picture, it's not smooth. There are some strange spikes when I d...
In Mathematica, what interpolation function is ListPlot using?
CC BY-SA 2.5
0
2010-10-04T15:02:19.793
2012-01-02T22:17:46.650
2010-10-04T22:20:11.067
327,572
327,572
[ "wolfram-mathematica", "interpolation" ]
3,856,598
1
null
null
10
2,538
Two month ago I started to write a new iPhone Application and for this reason I created a generic RESTFul web service, which allows me to have a lot of these necessary features like user authentication, user profiles, a friendship system, media processing, a messaging system and so on. In my mind there are several use ...
iOS App Architecture with NSOperations
CC BY-SA 2.5
0
2010-10-04T15:20:00.967
2012-09-07T01:51:41.917
2012-09-07T01:37:15.537
191,596
107,004
[ "iphone", "objective-c", "architecture", "nsoperation", "nsoperationqueue" ]
3,856,659
1
6,444,784
null
3
2,576
I have an Application that runs tests on a customers account in order to judge if their service is working correctly. During the process of running the tests, the application reads each test and checks to see if it passes / fails / etc... It plays a green checkmark / red x on the tabPage itself as an imagekey... the i...
C# TabPage ImageKey not drawing
CC BY-SA 2.5
null
2010-10-04T15:26:53.467
2020-02-28T17:31:33.423
null
null
450,782
[ "c#", "image", "tabpage" ]
3,856,863
1
3,857,015
null
1
3,442
![http://i.stack.imgur.com/L1z4D.jpg](https://i.stack.imgur.com/L1z4D.jpg) Invoice ID, PO Number and dueDate are shown in duplicates. TotalPrice is an alias (It should be Unit Price, total price is a mistake, so assume it Unit Price not total price) TotalShippingPrice shows the shipping price that was associated with...
How can I use aggregate function SUM on an alias column?
CC BY-SA 2.5
null
2010-10-04T15:50:18.857
2010-10-04T17:13:42.727
2010-10-04T17:13:42.727
41,956
311,509
[ "sql", "sql-server", "tsql", "sql-server-2008" ]
3,857,092
1
3,857,467
null
10
2,095
As the title says, I am wondering if it is possible to implement a Drop Down Menu on the Title Bar of my Form, similar to Firefox 4's: ![Firefox Menu Image 2](https://i.stack.imgur.com/5C5tM.png) Is it possible for me to do this with C# and WinForms? If so, how? It doesn't have to be very fancy like the Office Ribb...
Create Firefox 4 Style Button and Drop Down Menu on Form Title Bar C#
CC BY-SA 3.0
0
2010-10-04T16:18:38.207
2015-08-18T08:24:49.263
2015-08-18T08:24:49.263
4,374,739
119,919
[ "c#", "winforms" ]
3,857,365
1
3,857,571
null
1
935
![alt text](https://i.stack.imgur.com/hrddp.jpg) The way i designed my working sheet doesn't help me to calculate working hours easily. The output in snapshot has been gathered from multiple tables. Don't worry regarding setDate and timeEntered formatting. SetDate represents working day. tsTypeTitle represents type...
Need Help in Calculating Working Hours
CC BY-SA 2.5
null
2010-10-04T16:50:46.923
2010-10-04T17:32:36.693
2010-10-04T16:54:21.353
341,251
311,509
[ "sql", "sql-server", "tsql", "sql-server-2008" ]
3,857,434
1
5,370,077
null
4
768
Given a DAG with |V| = n and has s sources we have to present subgraphs such that each subgraph has approximately k1=√|s| sources and approximately k2=√|n| nodes. If we define the height of the DAG to be the maximum path length from some source to some sink. We require that all subgraphs generated will have approxima...
digraph partitioning to subgraphs
CC BY-SA 2.5
0
2010-10-04T17:01:52.603
2011-03-20T17:15:58.040
2011-02-05T02:18:22.013
590,042
466,056
[ "algorithm", "graph-theory", "partitioning", "directed-acyclic-graphs" ]
3,857,931
1
3,858,803
null
5
12,694
I have an issue that only seems to affect Safari and Chrome (aka WebKit). I have an overlay that fills the whole screen, and two table rows that I would like to appear on top of the overlay. Everything else on the page should be displayed below the overlay. The problem is that Safari only displays one of the table row...
Safari and Chrome CSS table row positioning z-index issue (works in Firefox)
CC BY-SA 3.0
0
2010-10-04T18:09:33.593
2011-08-31T20:02:30.667
2011-08-31T20:02:30.667
48,523
48,523
[ "css", "firefox", "google-chrome", "safari", "z-index" ]
3,858,180
1
null
null
1
760
is it possible to create an image like this one using php with the help of GD/ImageMagick? This image was generated by Web Button Maker Delux, which is a .NET App. So i think, may be there is an way for me to generate one using PHP. So any help on that please? Thanks, Anjan ** in case image is broken here is anothe...
create aqua style buttons using php
CC BY-SA 2.5
0
2010-10-04T18:47:01.143
2012-11-05T03:25:36.833
2010-10-04T19:35:37.567
47,468
47,468
[ "php", "gd", "imagemagick" ]
3,858,341
1
3,858,639
null
1
490
I'm trying to do some blending of images in Java. After succcesfully doing multiply and screen blending, "normal" blending is causing me headaches. I found on Wikipedia that the formula for blending two pixels with alpha is: ![](https://upload.wikimedia.org/math/3/c/3/3c377902304f3e4c105ad360abbbc180.png) I've trie...
Problems with "normal" blending of two images with alpha
CC BY-SA 2.5
null
2010-10-04T19:12:07.207
2010-10-04T19:55:38.027
2017-02-08T14:18:39.680
-1
251,455
[ "java", "android", "image-processing" ]
3,858,460
1
3,859,366
null
13
16,653
I am trying to have a resizable on a div, but the resizer handle is always contained within the div can I have it where scrollbars end. ![demo](https://i.stack.imgur.com/Pgyuv.png) /////////// Edit /////////// I have achieved it with jScrollPane but after using jScroll I am unable to resize horizontally. [demo http:...
jQuery ui ReSizable with scroll bars
CC BY-SA 2.5
0
2010-10-04T19:33:38.057
2019-04-23T10:18:34.020
2010-10-04T20:48:10.133
107,129
107,129
[ "javascript", "jquery", "jquery-ui" ]
3,858,902
1
null
null
1
1,774
I am trying to style the divs to fill the entire contents of the table cell. That means that the background color should fill the height of the table cell. How can I get the div to fill the height of the table cell? ``` <style> body { background-color: #ccc; } table, tr, td { border: 2px solid #00f; } td >...
How to style a div to fill the entire contents of a table cell?
CC BY-SA 2.5
null
2010-10-04T20:34:25.500
2010-10-04T20:56:25.400
2010-10-04T20:56:25.400
48,523
48,523
[ "html", "css" ]
3,858,956
1
3,859,172
null
10
4,754
: I submitted an [Eclipse enhancement request for this refactoring](https://bugs.eclipse.org/bugs/show_bug.cgi?id=391281). Is there a way to move a private field from one class to its helper class? The below chicken-scratch UML shows what I'm doing manually right now. Class `C1` has private `field` and a private fi...
Refactoring to move a private field from one class to its helper class?
CC BY-SA 3.0
null
2010-10-04T20:42:12.117
2012-10-06T00:40:22.870
2012-10-06T00:40:22.870
403,455
403,455
[ "java", "eclipse", "refactoring", "automated-refactoring" ]
3,859,181
1
null
null
4
528
i've noticed that the default look of tabs has changed between Android versions (see screenshot). I like the first version better, but i need to set my android target to version 8 (android 2.2) so that app2sd works. but then i have the darker backgrounds. how can i switch to the old one? setting the background color ma...
TabHost color changed between Android versions
CC BY-SA 2.5
0
2010-10-04T21:16:23.807
2010-10-05T06:40:51.593
2010-10-04T21:25:00.963
424,514
424,514
[ "android", "android-tabhost" ]
3,859,437
1
3,873,439
null
8
4,886
Per Greg's suggestion I've created one pair of image/text that shows the output from a 37k image to base64 encoded, using 100k chunks. Since the file is only 37k it's safe to say the loop only iterated once, so nothing was appended. The other pair shows the output from the same 37k image to base64 encoded, using 10k c...
Base64 Encode File Using NSData Chunks
CC BY-SA 2.5
0
2010-10-04T21:55:03.767
2013-11-15T06:09:34.057
2010-10-05T19:27:44.390
465,524
465,524
[ "iphone", "objective-c", "base64", "nsdata", "nsfilehandle" ]
3,859,504
1
null
null
2
718
In the past, I installed Visual Studio 2010. With that comes SQL Server. Now I installed this:[Microsoft SQL Server Management Studio Express](https://www.microsoft.com/downloads/en/details.aspx?FamilyID=c243a5ae-4bd1-4e3d-94b8-5a0f62bf7796) Now, upon starting, I get this screen: ![alt text](https://i.stack.imgur.co...
SQL Server 2005 Management finds no database, 2008 won't install
CC BY-SA 2.5
0
2010-10-04T22:04:20.637
2010-10-12T04:25:08.377
2010-10-04T22:08:53.620
23,199
80,907
[ "sql-server" ]
3,859,521
1
3,859,541
null
12
4,383
When I type `.ToString()` on an `Enum` type in Visual Studio, the Intellisense shows a "strike-through" line through `ToString()` (although it builds and works fine). It seems to indicate that `Enum.ToString()` is deprecated in some way. Is this true? If so, why? ![alt text](https://i.stack.imgur.com/4NnAN.png)
Enum.ToString() deprecated?
CC BY-SA 2.5
null
2010-10-04T22:07:52.313
2012-07-28T07:03:17.217
2012-07-28T07:03:17.217
366,904
16,012
[ "c#", "enums", "resharper", "deprecated" ]
3,860,023
1
3,876,234
null
0
12,397
My local computer is 64 bit but the downloads for the .Net mySql connector found here: [http://dev.mysql.com/downloads/connector/net/](http://dev.mysql.com/downloads/connector/net/) are 32 bit. I installed the 32 bit file however, whenever I try to input any new connector information after the 1st keystroke the box di...
.net mySQL Connector for a 64 bit machine
CC BY-SA 2.5
null
2010-10-04T23:59:13.257
2010-10-06T19:37:17.877
2010-10-06T17:55:56.527
380,317
380,317
[ ".net", "asp.net", "mysql" ]
3,860,187
1
3,860,192
null
-2
759
I have to sort a table and looking for right plugin. Some of the columns have dates and some have currency signs($) as shown below. Are there any JQuery plugins available for sorting this kind of data. ![alt text](https://i.stack.imgur.com/qblqK.jpg)
Sorting table data with JQuery, table has columns with dates and dollar signs, which plug-in is good?
CC BY-SA 2.5
null
2010-10-05T00:49:00.440
2016-07-01T08:41:25.990
2016-07-01T08:41:25.990
2,333,214
322,492
[ "jquery", "jquery-plugins", "gridview-sorting" ]
3,860,200
1
null
null
3
709
I have seen the following in a few different apps so it seems like some kind of public api. Anyone where I can find the code for this? Specifcally the twitter login that appears in the popover: ![alt text](https://i.stack.imgur.com/t3lRh.jpg)
iphone/ipad standard twitter oauth module?
CC BY-SA 2.5
null
2010-10-05T00:53:54.817
2010-10-05T00:59:28.487
null
null
426,860
[ "iphone", "ipad", "twitter", "oauth", "popover" ]
3,860,403
1
null
null
2
613
I'm having a very frustrating issue where my SP2010 project in VS2010 where everything seems to be perfectly normal when I build/rebuild the solution, but when I go to "Package" the SP2010 project, though it builds and deploys successfully, one of the dependent assemblies loses one of its references to a different proj...
Why does packaging my Sharepoint 2010 project break my references?
CC BY-SA 2.5
null
2010-10-05T02:03:55.397
2012-08-21T14:44:34.830
null
null
167,018
[ "visual-studio-2010", "build-process", "sharepoint-2010", "reference" ]
3,861,018
1
null
null
0
525
Can following thing be done? ![alt text](https://i.stack.imgur.com/kqN0w.png) The red rectangled datatable should be modified as the other row. I am using c#, DataTable with MS-SQL. I want to give shown type of view of second row to the user in a windows. I'll be having at least 500-600 rows like this out of 1000 r...
c# custom datatable view
CC BY-SA 2.5
null
2010-10-05T05:20:43.580
2013-08-29T17:15:27.650
null
null
110,426
[ "c#", "mysql", "datatable" ]
3,861,188
1
3,861,605
null
0
2,458
My site is incompatible with IE. How can I fix this problem? ![Firefox](https://i.stack.imgur.com/xh6gE.jpg) ![IE](https://i.stack.imgur.com/vVI07.jpg)
Cross-browser compatibility problem with IE
CC BY-SA 2.5
null
2010-10-05T06:05:55.050
2010-10-05T13:52:22.900
2010-10-05T06:12:11.593
313,758
369,161
[ "html", "css", "internet-explorer", "cross-browser" ]
3,861,296
1
3,861,396
null
49
44,880
I am new to QT, and I'm using `QTableView`, as shown below: ![enter image description here](https://i.stack.imgur.com/i5XnB.png) On the left side of the table, Qt is automatically showing a row number, as I've noted in red. How do I get rid of these numbers? My other problem is, if I click any cell, only that cell i...
How to select Row in QTableView?
CC BY-SA 3.0
0
2010-10-05T06:28:36.903
2017-11-02T22:02:36.480
2017-11-02T19:26:42.480
5,031,373
446,208
[ "qt", "qtableview" ]
3,861,570
1
3,861,846
null
0
879
I'm using `TwwDbLookupComboDlg` component. I want to change the date format in the combobox (as shown below) from `1/1/2009` to `Jan 2009`, any idea? ![TwwDbLookupComboDlg](https://i.stack.imgur.com/J6IBX.jpg)
How to change the date format in a DB aware combo box?
CC BY-SA 3.0
null
2010-10-05T07:20:03.137
2013-03-07T22:36:09.547
2013-03-07T22:36:09.547
937,125
367,856
[ "delphi", "combobox", "delphi-7", "date-format", "datefield" ]
3,861,647
1
3,861,697
null
5
24,294
i try to use generate MVVM pattern using Silverlight ListView. But if i bind data my silverlight control no data visualize. also no error return. i see empty gridview. ### Model: ``` public class MyData { public int ID { get; set; } public string Name { get; set; } public string Price...
How to get data using ListView Binding via MVVM in wpf?
CC BY-SA 2.5
0
2010-10-05T07:31:40.263
2016-04-11T01:32:17.467
2010-10-05T07:58:12.957
52,420
52,420
[ "c#", ".net", "wpf", "mvvm" ]
3,861,996
1
null
null
0
1,620
When I'm starting rich client application with JNLP it does some requests to remote servers. Some of this requests are intended to check if the servers available or not. If they aren't available the client catches, for example, `UnknownHostException` and it's a completely valid and expected case. However, if I specif...
Empty error dialog on start in case of UnknownHostException
CC BY-SA 2.5
0
2010-10-05T08:29:01.363
2010-10-05T11:35:34.380
2010-10-05T09:22:22.513
136,971
136,971
[ "java", "java-web-start" ]
3,862,269
1
3,862,823
null
0
420
In the iTunes app on the iphone there is a list of songs or something. They are in a grouped tableview and the first image has a curved corner to match the top left corner of the grouped tableView. How would I go about replicating this (and the one at the bottom?) ![alt text](https://i.stack.imgur.com/Qaow0.png) T...
cell.imageView curved corner on first and last cell
CC BY-SA 2.5
0
2010-10-05T09:11:33.327
2010-10-05T10:34:30.120
null
null
414,972
[ "iphone", "itunes-app" ]
3,862,418
1
3,863,074
null
18
18,003
I have data that is mostly centered in a small range (1-10) but there is a significant number of points (say, 10%) which are in (10-1000). I would like to plot a histogram for this data that will focus on (1-10) but will also show the (10-1000) data. Something like a log-scale for th histogram. Yes, i know this means ...
How can I plot a histogram of a long-tailed data using R?
CC BY-SA 2.5
0
2010-10-05T09:35:36.873
2019-04-15T01:17:20.513
2010-10-05T13:31:26.880
377,031
377,031
[ "r", "histogram" ]
3,862,478
1
3,865,659
null
2
2,211
I am using the following code for create a button. It is working fine. but I got the yellow rectangle at the left corner. Why? Please help me. Thanks in advance, ``` backButton = new QPushButton(tr("Back")); connect(backButton, SIGNAL(clicked()), this, SLOT(showSearchResultPage())); backButton->se...
QPushButton Issues
CC BY-SA 2.5
null
2010-10-05T09:45:04.103
2010-10-05T16:23:23.713
2010-10-05T15:04:34.883
9,876
430,278
[ "qt", "qt4", "stylesheet" ]
3,862,543
1
3,862,578
null
1
582
Hi I'm having some trouble with IE7 when doing a map. I've made an xml and ajaxed it to grab points based on where the user is on the map. It works well, and in FF, IE8 no problems when they click the points. On IE7 it firstly misses the cross at the top right, has some problems with the border (fixed that with some ma...
Internet Explorer 7 Google Map Rendering Problem
CC BY-SA 2.5
null
2010-10-05T09:54:26.273
2010-10-05T10:03:13.033
2010-10-05T10:03:13.033
222,908
278,853
[ "javascript", "google-maps", "internet-explorer-7" ]
3,862,576
1
3,862,602
null
1
124
![alt text](https://i.stack.imgur.com/XIABK.png) I have seen the above marked (Encircled in Red) widget in quiet a few applications, what is it?
Identify this Android Widget
CC BY-SA 2.5
null
2010-10-05T09:58:53.053
2010-10-05T10:03:04.103
null
null
421,372
[ "android", "widget" ]
3,862,625
1
3,869,689
null
5
412
I had found a strange output when I write the following lines in very simple way: Code: ``` printf("LOL??!\n"); printf("LOL!!?\n"); ``` Output: ![alt text](https://i.stack.imgur.com/UbRB0.jpg) It happens even the code is compiled under both MBCS and UNICODE. The output varies on the sequence of "?" and "!"... A...
Print ?? and !! in different sequence will show different output
CC BY-SA 2.5
null
2010-10-05T10:05:55.370
2016-02-29T22:24:40.917
2016-02-29T22:24:40.917
4,370,109
281,843
[ "c", "trigraphs" ]
3,863,378
1
3,864,395
null
0
90
I'm doing a blog engine using symfony as a learning exercice. How do I get the list of tags from the id of a blog post ? Here's the database shema : ![alt text](https://i.stack.imgur.com/XJois.png) I added the following in the model : ``` public static function getTags($id) { return Doctrine_Core::getTable('Tag') ...
How do I access the list of tags linked to a blog post?
CC BY-SA 2.5
null
2010-10-05T11:57:03.587
2010-10-05T14:41:03.503
2010-10-05T14:24:50.123
113,305
113,305
[ "symfony1", "doctrine" ]
3,863,493
1
null
null
1
9,030
I am displaying a `ProgressBar` in Android, as seen below: ![alt text](https://i.stack.imgur.com/iKMla.png) but there is a around the progress bar. What if I i.e., only the progress bar circle and text should be shown in the progress bar dialog. How do I display the progress bar as shown below? ![alt text](http...
ProgressBar dialog Without Border
CC BY-SA 3.0
0
2010-10-05T12:13:02.697
2014-06-11T14:04:36.240
2014-06-11T14:03:43.967
2,598,115
379,693
[ "android", "progress-bar", "android-progressbar" ]
3,863,674
1
3,863,725
null
1
182
I have a bunch of sports team logos. What I want to do is find the color that is used for the highest percentage of pixels. So, for the patriots logo below, I would pick out the blue or #000f47 (white will not be an acceptable color), as this is used for the highest percentage of pixels. Obviously I can eyeball each...
Image Color Picking Script
CC BY-SA 2.5
null
2010-10-05T12:40:41.493
2010-10-05T12:55:22.753
2010-10-05T12:55:22.753
131,640
131,640
[ "image", "image-processing", "png", "imagemagick", "jpeg" ]
3,863,803
1
null
null
20
8,045
I'm using Eclipse Helios v3.6 and every time I start up I get the following dialog. Yet I do not use subversion. Does anyone know how to make this stop? ![Subversive Connector Discovery](https://i.stack.imgur.com/vCZ75.jpg)
How can I stop Eclipse from asking to install Subversive Connectors
CC BY-SA 2.5
0
2010-10-05T12:57:09.570
2014-04-06T06:13:22.923
null
null
269,547
[ "eclipse", "subversive" ]
3,863,849
1
3,869,698
null
0
238
Could Someone help me to find out why l.X1 is set to default value(0.0) when the binded source is having a value of 156. Following image may be self explanatory. ![alt text](https://i.stack.imgur.com/37L52.png)
Silverlight property binding
CC BY-SA 2.5
null
2010-10-05T13:01:59.197
2010-10-06T05:29:57.360
2010-10-05T13:09:16.843
448,063
448,063
[ "c#", "silverlight-3.0", "windows-phone-7" ]
3,864,416
1
3,866,242
null
3
177
I am facing a conceptual problem that I am having a hard time overcoming. I am hoping the SO folks can help me overcome it with a nudge in the right direction. I am in the process of doing some ETL work with the source data being very similar and very large. I am loading it into a table that is intended for replicat...
Need approach for working with small subsets of a large dataset
CC BY-SA 2.5
0
2010-10-05T14:07:21.600
2010-10-05T17:43:18.423
2010-10-05T15:12:57.050
127,126
127,126
[ "sql", "sql-server", "tsql" ]
3,864,433
1
3,864,549
null
4
747
How to write a query suitable for generating an age pyramid like this: ![alt text](https://i.stack.imgur.com/FgtGU.gif) I have a table with a DATE field containing their birthday and a BOOL field containing the gender (male = 0, female = 1). Either field can be NULL. I can't seem to work out how to handle the birthda...
MySQL to generate an Age Pyramid
CC BY-SA 2.5
0
2010-10-05T14:09:29.890
2010-10-05T14:19:40.073
2010-10-05T14:14:54.973
440,137
440,137
[ "mysql", "statistics", "charts" ]
3,864,961
1
3,864,983
null
0
1,041
I have a search form in my web application that throws an Apache 400 Bad Request error when you search using an apostrophe (smart quote, i.e. `’` not `'`). This happens when someone copy and pastes from Microsoft Word (which automatically converts tick marks to smart quotes). ![search box](https://i.stack.imgur.com/Gs...
Apostrophe (Smart Quote) in search throws Apache 400 Bad Request
CC BY-SA 2.5
null
2010-10-05T15:06:31.010
2010-10-05T15:09:32.783
null
null
48,523
[ "html", "apache", "url", "apostrophe" ]
3,865,396
1
3,870,216
null
1
841
I just included jQuery jScrollPane plugin in to my page and it seems to be working fine except one small issue. I want to decrease the size(height) of scrollBar tab (where we click to drag the scroll bar up and down). I have attached the current snapshot of it as you can see how long it is. On the example site, it show...
jQuery Scroll Plugin
CC BY-SA 2.5
null
2010-10-05T15:51:04.430
2010-10-06T07:18:39.383
null
null
449,035
[ "jquery", "jscrollpane" ]
3,865,631
1
3,872,438
null
2
912
Heres the link to the page In question.... [http://team2648.com/OTIS2/DivTest.html](http://team2648.com/OTIS2/DivTest.html) So If you look at that page, If your browser is small enough, you see that below the box with the red background, there is a bit of space, Why doesn't the box below float up? ![This is what I wa...
Floating Div boxes limited by magic
CC BY-SA 2.5
0
2010-10-05T16:19:31.947
2012-05-17T17:14:48.450
2012-05-17T17:14:48.450
44,390
429,544
[ "css", "html", "css-float" ]
3,865,785
1
null
null
0
131
I want to generate this image in PHP with different colors for a skinning module in my app. How do I go about it? image(2x40 pixels): ![alt text](https://i.stack.imgur.com/b3sjD.png) magnified 4x ![alt text](https://i.stack.imgur.com/2oxfE.png) The original image was generated using the gradient tool in paint.net ...
Generate this image with PHP
CC BY-SA 2.5
null
2010-10-05T16:39:47.873
2010-10-05T16:45:05.483
null
null
405,861
[ "php", "image" ]
3,865,898
1
4,261,650
null
2
487
What is the view used to create the Template Chooser view in the iWork apps on iPad? ![alt text](https://i.stack.imgur.com/TXdlf.png) How can I create a view like that on iPad, and what would be a best way to implement it on iPhone considering screen size constraints.
How to get the Template Chooser/Document Browser view on iOS?
CC BY-SA 2.5
0
2010-10-05T16:54:01.393
2012-09-23T01:59:18.757
2010-10-12T13:35:40.810
249,029
249,029
[ "iphone", "ipad", "uiview", "ios4", "ios" ]
3,866,070
1
5,301,080
null
1
1,044
I'm having an issue with drawing to areas outside of the `MKMapRect` passed to `drawMapRect:mapRect:zoomScale:inContext` in my `MKOverlayView` derived class. I'm trying to draw a triangle for each coordinate in a collection and the problem occurs when the coordinate is near the edge of the `MKMapRect`. See the below ...
Clipping in MKOverlayView:drawMapRect
CC BY-SA 3.0
null
2010-10-05T17:16:14.733
2014-08-11T17:49:31.960
2014-08-11T17:49:31.960
3,126,646
313,207
[ "iphone", "objective-c", "ios", "mapkit" ]
3,866,164
1
8,235,077
null
2
475
In Windows Vista/7's windows explorer, the Icon Size selector has got a [track bar](http://msdn.microsoft.com/en-us/library/system.windows.forms.trackbar.aspx) in the [DropDownMenu](http://msdn.microsoft.com/en-us/library/system.windows.forms.toolstripdropdownmenu.aspx) (see Fig. 1) ![Vista DropDownMenu with TrackBar]...
Vista Style DropDownMenu with TrackBar
CC BY-SA 2.5
0
2010-10-05T17:34:09.620
2011-11-22T22:54:40.297
2010-10-06T10:20:57.010
117,870
117,870
[ "c#", "vb.net", "custom-controls", "drop-down-menu" ]
3,866,182
1
3,866,235
null
7
8,444
I need to place a button immediately above a dynamically populated UIViewTable. It feels right to not populate the first cell (row 0), but rather utilize the header area, so I use the UITableViewDelegate method to programmatically create a UIView containing a UIButton: ``` - (UIView *)tableView:(UITableView *)tableVie...
Adding a UIButton in the header of UITableView header
CC BY-SA 2.5
0
2010-10-05T17:35:57.400
2010-10-05T17:42:45.320
null
null
156,395
[ "iphone", "uitableview" ]
3,866,741
1
null
null
0
284
I Have a specific set of HTTP response headers I'm trying to recreate in ASP.NET. Here is how it looks in Fiddler (Raw): ``` HTTP/1.1 200 OK Content-Length: 570746 Content-Type: audio/wav Last-Modified: Wed, 19 May 2010 00:44:38 GMT Accept-Ranges: bytes ETag: "379d676ecf6ca1:3178" Server: Microsoft-IIS/6.0 X-Powered...
How to emulate specific HTTP Headers with ASP.NET
CC BY-SA 2.5
0
2010-10-05T18:47:10.403
2010-10-05T19:00:29.517
null
null
1,363
[ "asp.net", "http-headers" ]
3,866,766
1
3,866,820
null
30
51,753
I'm starting to develop a simple application for iOS, and this application is a simple gallery of some photo (taken from a website). The first problem I encountered is how to create the view for the gallery. The view should be something like this (or the Photo App): ![Sample View](https://i.stack.imgur.com/cb5y1.png) ...
How To Create A Gallery on iOS
CC BY-SA 2.5
0
2010-10-05T18:50:14.997
2014-02-24T17:42:14.127
null
null
169,274
[ "iphone", "objective-c", "ios" ]
3,866,906
1
3,867,306
null
16
26,808
I was successfully able to remove read only attribute on a file using the following code snippet: In main.cs ``` FileSystemInfo[] sqlParentFileSystemInfo = dirInfo.GetFileSystemInfos(); foreach (var childFolderOrFile in sqlParentFileSystemInfo) { RemoveReadOnlyFlag(childFolderOrFile); } private static void Remo...
Removing read only attribute on a directory using C#
CC BY-SA 3.0
null
2010-10-05T19:16:21.997
2017-08-18T20:48:04.543
2017-08-18T20:48:04.543
5,099,801
62,245
[ "c#", ".net", ".net-3.5", "c#-4.0" ]
3,867,353
1
3,867,412
null
1
962
I have a process which I break into multiple processes and even when using threading it takes a very long time to complete. I'd like to give the user an indication of the status of the execution in a cute way (for each process % complete). Maybe betting on the right horse will ease the pain :) I found this project lo...
Is WPF still relevant and can I use it in my C# windows application?
CC BY-SA 3.0
null
2010-10-05T20:15:08.923
2016-01-16T23:36:38.320
2016-01-16T23:36:38.320
63,550
382,588
[ "c#", ".net", "wpf", "windows" ]
3,867,700
1
4,020,161
null
3
452
![alt text](https://i.stack.imgur.com/rfKYh.png)On this page [http://cacrochester.com/](http://cacrochester.com/) the 2 rotating images are messed up in webkit browsers. It's not all the time, and it's usually not on the first image. Why is that? I'm using the NivoSlider jquery plugin to rotate the images. here's wh...
Images are messed up in webkit
CC BY-SA 2.5
null
2010-10-05T21:02:55.327
2010-10-26T01:59:41.420
2010-10-12T18:57:56.263
176,769
222,403
[ "jquery", "html", "css", "webkit", "image-rotation" ]
3,867,767
1
3,872,372
null
4
509
I have a datagrid based selection control that duplicates the Easing Function selector in Expression Blend. This is for the [Easing Function project](http://www.easing.co) so you will also be helping yourself :) This selector is a permanent fixture on the screen, to make it easy to try out options, while still lookin...
How do you restrict selection of cells to exclude a column in a DataGrid?
CC BY-SA 2.5
0
2010-10-05T21:11:12.930
2010-11-05T16:22:23.450
2010-11-05T16:22:23.450
201,078
201,078
[ "silverlight", "datagrid", "silverlight-4.0" ]
3,867,937
1
4,054,281
null
3
676
I have a `UITableView` within a navigation controller shown within a popover. When you press a bar button from within the popover (on a detail view), it shows a modal view. If you rotate the iPad with the popover visible and the modal view on top of that, the popover's content changes to a seemingly random orientation ...
Contents of UIPopover change to random orientation when Modal View is visible and iPad rotated
CC BY-SA 3.0
0
2010-10-05T21:35:17.777
2014-08-11T17:47:07.623
2014-08-11T17:47:07.623
3,126,646
273,130
[ "ipad", "uitableview", "ios", "uinavigationcontroller", "uipopovercontroller" ]
3,868,093
1
3,878,665
null
3
3,035
I have a with a Flow Layout, the is in a , the holds a bunch of other , inner panels, in it. All the inner panels have the same dimensions. If there are more panels then the can hold in its then they are gridded downwards, and if there are more panels then the can hold in its , then the inner panels are aligned ...
Resizing panel with flow layout does not invoke the scroll bars
CC BY-SA 2.5
0
2010-10-05T21:58:33.120
2010-10-07T04:26:34.480
2010-10-06T09:44:12.087
348,189
348,189
[ "swing", "jscrollpane", "java", "flowlayout" ]
3,868,350
1
3,868,468
null
2
1,524
My problem is that I don't see a icon when I look for my app in iTunes. I am not sure why? I am creating IPA files. I include an image called iTunesArtwork.png. Any help appreciated. This is what i am seeing in iTunes. Notice no image for iCreditCard. Why can't I see my icon? (See iCreditCard app with empty image) ![...
iPhone SDK: iTunes Artwork Not Showing
CC BY-SA 2.5
0
2010-10-05T22:50:08.707
2010-10-05T23:34:30.020
2010-10-05T23:22:16.617
107,004
352,285
[ "iphone" ]
3,868,565
1
3,868,961
null
0
9,273
I am new to jQuery and am having a problem selecting an item in a select list. I have implemented cascading select boxes as show in this [post](http://jsatt.blogspot.com/2010/01/cascading-select-boxes-using-jquery.html). Everything is working fine except for setting a default. The problem is that I need to select one ...
jQuery and selecting a select list item
CC BY-SA 2.5
null
2010-10-05T23:39:22.160
2010-10-07T17:12:09.523
2010-10-07T16:15:49.273
131,818
131,818
[ "jquery" ]
3,868,727
1
3,873,738
null
1
663
I'm starting to put together an activation dialog as part of my application. I like the way Microsoft did theirs recently with Windows 7, more specifically the way the hyphens that separate each quintet of the product key are added and removed automatically. After taking a quick look at it, it seems like it's a bit m...
Reproduce Windows Product Key Input
CC BY-SA 2.5
0
2010-10-06T00:25:16.060
2010-10-06T14:46:07.263
null
null
5,473
[ ".net" ]
3,868,833
1
4,209,045
null
2
368
I'm using Sphinx to search MySQL. One of the results Sphinx returns for a search is `M*A*S*H`, as in the hit television show. ![alt text](https://i.stack.imgur.com/DGja7.jpg) The problem I'm facing is that `M*A*S*H` is returned for nearly any query made with Sphinx. If not, then what could the problem be? `M*A*S*H...
Dealing with asterisks in Sphinx results
CC BY-SA 2.5
0
2010-10-06T00:54:42.370
2011-09-05T17:27:02.267
null
null
373,496
[ "mysql", "search", "search-engine", "sphinx" ]
3,868,907
1
3,869,270
null
12
8,824
I am populating the ComboBox items with a list using the Click event. When it is already populated the MaxDropDownItems is not working. Does anyone know how to fix this one? Here's the code: ``` List<string> list = new List<string>(); ComboBox cb; private void button1_Click(object sender, EventArgs e) { ...
ComboBox.MaxDopDownItems is not working when adding items using the Click event
CC BY-SA 2.5
0
2010-10-06T01:19:29.360
2010-10-06T03:37:29.517
null
null
416,801
[ "c#", "winforms", "combobox", "onclick" ]
3,868,919
1
3,868,989
null
0
193
i'm struggling with display/hide text using javascript here. Here is what i wanted to achieve like the picture below: ![alt text](https://i.stack.imgur.com/lRcwh.jpg) and the below is my javascript i've got: ``` function change_display(display) { if(display.style.display=="none") { display.style.di...
side navigation bar javascript help!
CC BY-SA 2.5
null
2010-10-06T01:24:28.600
2010-10-06T01:45:53.437
null
null
324,753
[ "javascript" ]
3,868,933
1
3,868,956
null
1
1,984
I'm trying to make a data form in Silverlight 4. Perhaps I'm doing something wrong. The class: ``` public class ExpenseInfoTest { public int MyProperty { get; set; } public int Foo { get; set; } public int Bar { get; set; } } ``` XAML: ``` <local:ExpenseInfoTest x:Key="newExpense"/> <df:DataForm H...
Silverlight Dataform: "Save" and "Edit" buttons not showing up
CC BY-SA 2.5
null
2010-10-06T01:30:13.720
2010-10-06T01:45:01.567
null
null
147,601
[ "c#", "silverlight", "xaml", "dataform" ]
3,869,261
1
3,892,135
null
3
373
I have a database table that holds parent and child records much like a Categories table. The ParentID field of this table holds the ID of that record's parent record... My table columns are: SectionID, Title, Number, ParentID, Active I only plan to allow my parent to child relationship go two levels deep. So I have ...
LINQ Grouping help
CC BY-SA 2.5
0
2010-10-06T03:09:55.680
2010-10-08T18:09:35.783
2010-10-08T18:09:35.783
202,820
202,820
[ "linq" ]
3,869,436
1
null
null
1
1,168
I have this scipt, ``` <script> $(document).ready( function() { $('.add').button({ icons: 'ui-icon-plus', text: false }).next().button({ icons: 'ui-icon-minus', text: false }).next().button({ icons: 'ui-icon-arrowthick-1-w', ...
jQuery UI buttonset shift down in Internet Explorer 8
CC BY-SA 3.0
null
2010-10-06T04:07:57.330
2011-10-18T16:45:50.350
2011-10-18T16:08:48.013
63,550
218,380
[ "jquery-ui", "radio-button" ]
3,869,959
1
3,870,193
null
2
1,089
Actually I have Multiple update panels on page, which update different values on server but the problem is that I have textbox to which I attach javascript class for datepicker on Load event. But There are other updatepanels before that date TextBox, when I update them first calender image with date control which is in...
Multiple updatepanels on page remove JavaScript Datepicker calender from textbox
CC BY-SA 2.5
null
2010-10-06T06:23:24.723
2010-12-06T21:56:01.443
2020-06-20T09:12:55.060
-1
228,755
[ "javascript", "asp.net", "ajax", "updatepanel", "datepicker" ]