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
1,108,587
1
1,109,822
null
6
14,044
I would like to style a `<ul>` to display all items in a box with rounded corners (see below): ![enter image description here](https://i.stack.imgur.com/ocf8o.gif) Is it possible to use CSS and only the `<ul>` (with no additional `<div>`s and tables), as I'm going to use it in a CMS system to style all `<ul>`s create...
Style unordered list to display list items in rounded corner box
CC BY-SA 3.0
0
2009-07-10T09:20:11.823
2013-03-10T05:05:57.007
2013-03-10T05:05:57.007
707,111
2,808
[ "html", "css" ]
1,109,453
1
1,110,076
null
1
1,233
In a Silverlight interface I'm working on I have the need to resize a stack panel when its container resizes, to prevent the text in it from being truncated. The text in question is added at runtime from language files, depending on the language the user has selected. As the lengths of strings can vary considerably bet...
How best to resize XAML with dynamic text
CC BY-SA 2.5
null
2009-07-10T13:15:14.970
2009-07-10T15:04:53.910
2017-02-08T14:13:22.963
-1
1,535
[ "silverlight", "xaml", "dynamic", "resize" ]
1,109,536
1
7,947,389
null
234
108,328
How would I "inflate" a polygon? That is, I want to do something similar to this: ![alt text](https://i.stack.imgur.com/GUzIo.gif) The requirement is that the new (inflated) polygon's edges/points are all at the same constant distance from the old (original) polygon's (on the example picture they are not, since then it...
An algorithm for inflating/deflating (offsetting, buffering) polygons
CC BY-SA 4.0
0
2009-07-10T13:32:47.490
2023-02-17T18:42:23.937
2020-08-08T01:06:39.427
1,681,985
55,408
[ "algorithm", "geometry", "polygon", "computational-geometry", "buffering" ]
1,110,048
1
1,110,079
null
2
716
I have three images that I would like to join in a widget I'm creating in Html. I just want to give the round effect on the corners. These are the three images: ![alt text](https://imgur.com/ydFae.png) ![alt text](https://imgur.com/JrPiK.png) ![alt text](https://imgur.com/jmOYZ.png) I have the middle one repeating in...
How can I join background images?
CC BY-SA 2.5
null
2009-07-10T14:59:27.477
2009-07-10T18:14:06.237
2009-07-10T15:19:07.087
117,792
117,792
[ "html", "css" ]
1,111,643
1
1,111,876
null
1
1,713
I want to "fix" the Background while only the ListFields scrolls. Current Problem: ![alt text](https://files.getdropbox.com/u/357576/saves/8310-1.png) Scrolling Down (the surounding box should move with the List) ![alt text](https://files.getdropbox.com/u/357576/saves/8310-1-02.png) Corresponding code for the Ve...
Blackberry Custom Background of VFM scrolls with listfield?
CC BY-SA 2.5
0
2009-07-10T19:55:06.360
2011-04-13T12:48:21.197
2017-02-08T14:13:23.993
-1
107,004
[ "user-interface", "blackberry" ]
1,112,500
1
1,112,689
null
3
1,229
I'm building app that will store large video files to the server and then user will be able to view them. For my app I'm using GWT + GAE/J and to store files I would like to use S3 account. But as we know that you can upload max 10mb to GAE. I have [asked this kind of question](https://stackoverflow.com/questions/10675...
Saving Large file using GWT + GAE + S3 path
CC BY-SA 2.5
null
2009-07-10T23:58:54.123
2009-07-11T01:36:55.313
2017-05-23T12:33:39.607
-1
51,230
[ "java", "google-app-engine", "gwt", "amazon-s3" ]
1,113,751
1
null
null
0
642
I have developed a project in VS2005(C#) which contains two crystal reports, the project is working fine and crystal reports are running properly on my system. But when my friend tries to run the project on his system, then the projects runs well but when I am opening crystal reports I am getting the error shown in ima...
Crystal report is not working properly in Visual Studio 2005?
CC BY-SA 2.5
null
2009-07-11T13:49:17.363
2009-07-11T14:16:19.480
2017-02-08T14:13:25.677
-1
45,261
[ "c#", ".net", "visual-studio", "visual-studio-2005", "crystal-reports" ]
1,113,845
1
1,113,857
null
0
4,697
It doesn't stay where I want it, look at this: ``` <div style="float: left; width: 30%"> <img src="{avatar}" alt="" /> </div> <div style="float:right; width: 70%; text-align: left"> {message} </div> <div style="clear:both"></div> ``` ![](https://i.stack.imgur.com/wpcgS.png) ![](https://i.stack.imgur.com/B6Ir...
CSS floats messed up
CC BY-SA 4.0
0
2009-07-11T14:39:12.500
2019-03-28T18:03:16.740
2019-03-28T18:03:16.740
4,751,173
132,432
[ "css", "html", "css-float" ]
1,116,134
1
1,116,150
null
2
346
I'm curious. What could be the reason that a Comparator shuffles entries on each application start? ``` final static class ContactsListComparator implements Comparator { public int compare(Object o1, Object o2) { if((o1.toString().compareTo(o2.toString()))<0) { ...
Strange behaviour: Java Comparator randomizes list entries
CC BY-SA 2.5
null
2009-07-12T14:38:24.697
2009-07-12T16:12:18.657
2017-02-08T14:13:26.680
-1
107,004
[ "java", "blackberry", "list" ]
1,116,963
1
1,183,327
null
6
36,486
I am trying to build an adhoc build for my app , I am following the instructions on the apple's documentation which says > Select the Target and open the Build settings inspector. In the ‘Code Signing Entitlements’ build setting, type in the filename of the new Entitlements.plist file including the extensio...
Don't see Code Signing Entitlements in xcode target properties
CC BY-SA 3.0
null
2009-07-12T21:27:34.840
2019-03-31T07:59:54.807
2015-06-20T02:16:54.150
1,159,643
70,551
[ "iphone", "xcode", "code-signing" ]
1,117,069
1
1,135,913
null
3
1,081
I'm used to [VSSConneXion](http://www.epocalipse.com/vcx.htm), and love the feature 'Review Changes' where I can go through every changed file and comment the change while looking at it: ![alt text](https://www.epocalipse.com/images/v_review_changes.png) Now I'm trying to get used to SubVersion and Tortoise. Is there...
Subversion: Review changes
CC BY-SA 4.0
null
2009-07-12T22:11:22.707
2018-10-21T13:48:58.330
2018-10-21T13:48:58.330
397,817
11,956
[ "svn", "tortoisesvn" ]
1,117,211
1
1,118,005
null
87
58,085
I would like to tint an image with a color reference. The results should look like the Multiply blending mode in Photoshop, where would be replaced with : ![alt text](https://i.stack.imgur.com/CqiUz.png) I will be changing the color value continuously. I would put the code to do this in my ImageView's drawRect: me...
How would I tint an image programmatically on iOS?
CC BY-SA 4.0
0
2009-07-12T23:38:02.050
2019-04-25T08:34:27.397
2019-04-25T08:34:27.397
1,033,581
23,973
[ "ios", "cocoa-touch", "image-processing", "uiimage", "tint" ]
1,117,757
1
1,123,619
null
1
1,984
I'm trying to figure out the ToolStripSplitButton. The purpose is to display a usercontrol gauge when a ToolStripSplitButton is pressed. However, no matter what settings I try, there is a grey line visible below the button. The ToolStrip itself is set to RenderMode.System, is not docked, and the ToolStripSplitButton ...
Winforms ToolStripSplitButton displays with a grey line under it, and is only raised on when the mouse hovers over it
CC BY-SA 3.0
0
2009-07-13T04:54:47.773
2011-11-13T17:41:30.387
2011-11-13T17:41:30.387
118,211
118,211
[ "c#", "winforms", "toolstrip" ]
1,120,457
1
1,120,537
null
6
2,526
Alex explained what I'm looking for much better than I have: > You want an existing program that allows you to draw a picture, captures what you do as you draw, and writes each action as a Java command. When you click the "Drawl Oval" tool and click at 0,0 and then at 50,50, it would generate the line g....
Java Image Editor which renders output as source code?
CC BY-SA 2.5
0
2009-07-13T16:13:53.943
2009-07-28T19:20:03.550
2009-07-28T19:20:03.550
40
40
[ "java", "graphics", "code-generation", "image-editor" ]
1,121,338
1
1,121,419
null
0
662
I installed the latest version of Wordpress and added the [WP-Syntax](http://wordpress.org/extend/plugins/wp-syntax/) plugin (and also the [Markdown Extra](http://michelf.com/projects/php-markdown/) plugin, but I think it's unrelated to this issue). It works perfectly with both themes that ship with Wordpress: [lookin...
Fix a CSS problem with a Wordpress theme and a syntax highlighting plugin
CC BY-SA 2.5
0
2009-07-13T18:46:50.873
2009-07-14T18:33:35.357
2009-07-14T18:33:35.357
null
null
[ "css", "xhtml" ]
1,126,701
1
null
null
0
1,185
The app I'm developing requires that it be deployed in China, which means that it needs to have Pinyin and Chinese character handling. I'm told that the way that our customers handle character entry is like so: - - ![pinyin characters](https://mmroden.smugmug.com/photos/591010893_TtC3y-L.jpg) - How can I hook su...
Pinyin Character entry on a touchscreen keyboard
CC BY-SA 2.5
0
2009-07-14T17:00:29.117
2012-04-13T13:48:51.600
2017-02-08T14:13:29.140
-1
21,981
[ "wpf", "touchscreen" ]
1,128,294
1
null
null
0
1,649
I seem to be having a problem with my table when I load in more information with Jquery. When I click the 'more info' link more content slides down but unfortunately seems to expand the table right or something. Here are a picture of the page being expanded to explain better: 'more info' link clicked: ![Click Here...
Table rows shifting right
CC BY-SA 3.0
null
2009-07-14T21:58:12.883
2016-09-30T19:33:40.630
2017-02-08T14:13:29.830
-1
137,679
[ "jquery", "css", "css-tables" ]
1,131,867
1
1,131,882
null
19
14,183
Can one domain generate multiple cookies on visitor's web browser? If so, when user vists the website, which cookies will be delivered to server? And why would a website generate multiple cookies? I checked my Google Chrome Browser's Cookies settings, found that there are multiple cookies of nytimes.com. If server wa...
Can One Domain Have Multiple Cookies?
CC BY-SA 2.5
0
2009-07-15T14:47:06.537
2013-05-20T03:42:23.663
2017-02-08T14:13:31.573
-1
93,563
[ "http", "cookies" ]
1,131,937
1
1,131,952
null
2
9,027
I realize this is kind of a long question, but I saw no other way here than to post my code, that I tried to keep as short and simple as possible for the sake of clarity. Of course tons of best practices are violated to do so, the example is long enough as it is.. I made a very simple wpf app that - - - In the fol...
How to make listview update itself in wpf?
CC BY-SA 2.5
null
2009-07-15T14:58:28.670
2015-03-14T00:52:01.637
2017-02-08T14:13:31.910
-1
86,751
[ "wpf", "data-binding", "listview" ]
1,133,828
1
null
null
1
196
I want a `div` on the left-hand side of the page as a column, and another `div` to fill the right side of the page. The screenshot that I have attached shows that both in Firefox and IE7 (with scroll bars off), the two `div`s go beyond the boundaries of the screen. I have tried to get a `margin` of `2px` on all sides s...
CSS Column Troubles
CC BY-SA 3.0
null
2009-07-15T20:30:35.747
2013-03-18T00:20:21.303
2013-03-18T00:20:21.303
1,470,950
138,988
[ "css" ]
1,134,725
1
1,134,812
null
1
1,229
![enter image description here](https://i.stack.imgur.com/Yc7wb.png) Everything's explained in the above image. Basically, I need a sidebar div whose width expands according to the content inside of it and a `mainContent` that expands to the rest of the width of the window.
CSS: Fluid Sidebar - Fluid Content
CC BY-SA 3.0
0
2009-07-15T23:57:15.283
2013-02-21T12:28:42.357
2013-02-21T12:28:42.357
1,581,050
139,089
[ "html", "css", "xhtml" ]
1,137,320
1
1,137,402
null
17
22,701
I am confused about what means the update and delete rule in SQL Server 2008 Management Studio when we define foreign key constraints. I also did not find related help documents (e.g. F1 help). Here is the screen snapshot. Appreciate if anyone could describe what do they mean and recommend some related documents to re...
Understanding Update and Delete Rules for Relationships in SSMS 2008
CC BY-SA 3.0
0
2009-07-16T12:45:01.567
2014-10-16T12:51:51.290
2014-10-16T12:51:51.290
1,710,392
63,235
[ "sql", "sql-server", "sql-server-2008", "foreign-keys" ]
1,138,898
1
1,138,926
null
-1
95
I created a new ASP.NET MVC application. The home page looks like this: ![Original](https://i.stack.imgur.com/bTfps.png) I tried to move the [ Log On ] link to the bottom of the page and got this: ![Changed](https://i.stack.imgur.com/8m3Xs.png) What did I do wrong? EDIT: [Here's][3] the CSS code, [here's][4] the ...
Page title disappeared behind body
CC BY-SA 4.0
null
2009-07-16T16:52:37.590
2019-03-29T21:02:11.157
2019-03-29T21:02:11.157
4,751,173
88,739
[ "css" ]
1,139,766
1
null
null
44
86,621
I've written a custom plugin for CKEditor--successful on all fronts, save one currently: I can't, for the life of me, figure out how to customize the image on the button in the toolbar of the editor. As I'm a new user, you'll have to click through to see attached image; the highlighted square in the top left should h...
CKEditor Custom Plugins Button
CC BY-SA 3.0
0
2009-07-16T19:28:03.877
2017-09-19T01:27:15.903
2017-09-19T01:27:15.903
3,885,376
139,722
[ "ckeditor" ]
1,141,342
1
1,141,380
null
7
5,493
Without any user interaction, how would a program identify what type of waveform is present in a recording from an ADC? For the sake of this question: triangle, square, sine, half-sine, or sawtooth waves of constant frequency. Level and frequency are arbitrary, and they will have noise, small amounts of distortion,...
Identifying common periodic waveforms (square, sine, sawtooth, ...)
CC BY-SA 2.5
0
2009-07-17T03:35:50.513
2014-12-24T08:39:19.510
2017-02-08T14:13:37.000
-1
125,507
[ "audio", "signal-processing", "numerical", "waveform" ]
1,147,987
1
1,148,191
null
5
1,856
I am uploading large files to an ASP.NET server using a standard HTML `<input>` control posting multipart-form data. This is an ASP.NET MVC application. According to MSDN, the `HttpPostedFile` class buffers to disk out of the box: > "Files are uploaded in MIME multipart/form-data format. By default, all requests,...
Why doesn't HttpPostedFile perform as advertised and buffer downloads to disk rather than memory?
CC BY-SA 3.0
0
2009-07-18T16:45:34.657
2015-06-20T02:24:36.040
2015-06-20T02:24:36.040
1,159,643
18,440
[ "asp.net-mvc", "upload", "httppostedfilebase" ]
1,148,194
1
null
null
2
1,747
I sincerly believe that cool-looking UI has significant contribution to the value of your software. It not only significantly improves sales but also ease user-buyin, upgrading willingness, or just causes some pleasant moments to the user. To get cool UI, you will need a lot of images, and you need to play frequently...
What image editor do you recommend to create cool UI elements?
CC BY-SA 2.5
null
2009-07-18T18:18:03.113
2012-07-16T10:02:27.183
2017-02-08T14:13:40.107
-1
24,451
[ "user-interface", "image-manipulation", "image-editor" ]
1,150,799
1
1,151,277
null
2
2,028
Does anyone know if it's possible to remove the topbar from a UITableView in code? So in this case, remove the "Books" bar? ![](https://lh3.ggpht.com/_ixq8Dp4ESMo/SYuylQNqNCI/AAAAAAAAAFk/pPW6pbIlPGo/s576/Screen1.jpg)
Removing the bar in standard UITableView programmatically
CC BY-SA 2.5
null
2009-07-19T20:27:10.337
2009-07-28T16:23:48.663
2017-02-08T14:13:41.120
-1
140,983
[ "iphone", "objective-c", "cocoa-touch", "uitableview" ]
1,150,835
1
1,151,276
null
1
1,254
I have a layout question for Tab Navigators in Adobe Flex 3. Is it possible to insert a button that invades the grid space of the tabs? I have a tab navigator component and I am dynamically adding sub components to tab navigator and I want squeeze a button inside the tab space. I don't want the button to be another t...
Move Button into grid space of a TabNavigator's tabs in Flex Builder
CC BY-SA 2.5
null
2009-07-19T20:38:42.840
2009-07-20T00:15:52.677
2017-02-08T14:13:41.813
-1
135,435
[ "actionscript-3", "flex3", "mxml" ]
1,152,208
1
1,152,377
null
9
2,790
![They could say "the connection is probably lost," but it's more fun to do naive time-averaging to give you hope that if you wait around for 1,163 hours, it will finally finish.](https://imgs.xkcd.com/comics/estimation.png) Inspired by this [xckd cartoon](http://xkcd.com/612/) I wondered exactly what is the best mech...
Computing estimated times of file copies / movements?
CC BY-SA 2.5
0
2009-07-20T07:56:19.757
2021-04-05T16:26:50.203
2017-02-08T14:13:42.153
-1
135
[ "language-agnostic", "file", "filesystems", "copy", "estimation" ]
1,157,689
1
1,163,172
null
2
210
This question is related to [Array of pairs of 3 bit elements](https://stackoverflow.com/questions/1053242/array-of-pairs-of-3-bit-elements) This array has 52 pairs (about 40 bytes), and I want to find the first pair before the specified one that has it's values different from 0 (used pair). The obvious solution would ...
Finding the nearest used index before a specified index in an array (Fast)
CC BY-SA 3.0
0
2009-07-21T07:16:18.997
2015-06-20T01:46:21.627
2017-05-23T11:48:41.860
-1
121,557
[ "c++", "optimization", "memory", "performance" ]
1,158,737
1
1,158,938
null
0
2,554
How do I show or hide context menu items based on condition (For example, some item field value "True" or "False")? I`v added some custom actions for now (using features to add them), but would be nice to manipulate visibility of them. ![alt text](https://i.stack.imgur.com/wyuar.png) I`m using WSS 3.0. Thank you for...
Show or hide context menu item based on condition
CC BY-SA 3.0
0
2009-07-21T11:52:02.840
2015-06-20T02:17:16.953
2015-06-20T02:17:16.953
1,159,643
50,173
[ "sharepoint" ]
1,160,240
1
null
null
0
2,750
I am checking whether a user has a permission to view the report through dataset stored procedure and if the user doesn't, raiserror is called. Is there a way to display a different message from SQL Server Reports 2005 when a stored procedure (that populates report dataset) raises error (through RAISERROR) instead of ...
SSRS 2005 - Capturing RAISERROR message
CC BY-SA 2.5
null
2009-07-21T16:20:09.510
2009-07-22T20:47:29.737
2017-02-08T14:13:44.913
-1
4,035
[ "sql-server", "sql-server-2005", "reporting-services", "error-handling" ]
1,160,292
1
1,160,393
null
5
914
When I'm typing out new instance variables, they appear white. To turn them green, I do a space/backspace between the semicolon. Is there an XCode secret to automatically going through all of my classes and recognize the variables it has missed? Something similar happens with the orange #define variables used thro...
Xcode variable coloring
CC BY-SA 3.0
null
2009-07-21T16:31:54.230
2015-06-20T01:47:13.103
2015-06-20T01:47:13.103
1,159,643
124,060
[ "xcode" ]
1,165,419
1
1,174,244
null
8
17,252
I'm after setting up a WCF service on my dev box but I'm getting an error when accessing it. I've set the [service up as per this guide](http://blah.winsmarts.com/2008-4-Host_a_WCF_Service_in_IIS_7_-and-amp%3B_Windows_2008_-_The_right_way.aspx). It's is written in and my dev box is with . At the moment the service is...
Problem with WCF Service - The protocol 'http' is not supported. How to resolve?
CC BY-SA 2.5
null
2009-07-22T13:52:27.783
2019-08-30T06:54:08.373
2017-02-08T14:13:47.303
-1
17,461
[ "asp.net", "wcf", "web-services", "iis", "windows-vista" ]
1,166,236
1
23,385,790
null
55
38,301
Apple's iPhone apps such as Music and Contants use a search bar in a UITableView. When you scroll down so that the search bar moves down, the empty space above the scroll view's contents has a light gray background color (see screenshot). ![Screenshot of Contacts app showing light gray background](https://i.stack.imgu...
Light gray background in "bounce area" of a UITableView
CC BY-SA 3.0
0
2009-07-22T15:46:30.473
2020-07-21T20:14:38.233
2014-08-29T09:26:59.333
138,860
138,860
[ "iphone", "uitableview", "uikit", "uisearchbar" ]
1,167,120
1
1,167,151
null
3
2,281
I am trying to create a simple ray tracer. I have a perspective view which shows the rays visibly for debugging purposes. In my example screenshot below I have a single white sphere to be raytraced and a green sphere representing the eye. Rays are drawn as lines with If a ray misses the sphere it is given color ...
OpenGL Alpha blending with wrong color
CC BY-SA 2.5
null
2009-07-22T18:06:36.990
2010-07-01T02:50:38.267
2009-07-22T18:12:17.227
44,765
null
[ "c++", "qt", "opengl" ]
1,167,230
1
1,172,036
null
7
1,930
In AccuRev, when I look at the history for a file (in "history mode"), I see a list of the actions that were taken on the file. Each action has a number (#) and a version. When I click on one of these actions, another list appears that shows each of the files that was involved in the action (including the one whose h...
What are the various AccuRev version numbers?
CC BY-SA 3.0
0
2009-07-22T18:28:26.680
2015-06-20T02:16:28.797
2015-06-20T02:16:28.797
1,159,643
9,702
[ "accurev" ]
1,167,296
1
1,170,364
null
0
1,279
I've designed a website using some Jquery techniques. My problem is that in some random cases, Internet Explorer 8 and 6 can make the images look smaller than they should be. I didn't check with Explorer 7, but it's probably there too... Note that resizing the page might be more liable to cause these problems, and in f...
Jquery image resizing bug in Internet Explorer 8 and 6
CC BY-SA 3.0
null
2009-07-22T18:39:46.720
2015-06-20T02:07:06.760
2015-06-20T02:07:06.760
1,159,643
53,902
[ "jquery", "internet-explorer" ]
1,168,289
1
1,185,315
null
2
2,127
I am creating RESTful services for several database entities based on a modified version of the [BISDM](http://www.bisdm.org/information/). Some of these entities have associated lookup tables, such as depicted below: ![Snippet of modified BISDM schema](https://i.stack.imgur.com/DpiNn.png) The lookup tables are asso...
When implementing RESTful services should lookup values / tables get their own URI?
CC BY-SA 3.0
null
2009-07-22T21:14:07.157
2015-06-20T02:10:46.297
2015-06-20T02:10:46.297
1,159,643
19,977
[ "asp.net-mvc", "web-services", "rest" ]
1,168,430
1
1,168,558
null
2
1,520
I am creating RESTful services for several database entities based on a modified version of the [BISDM](http://www.bisdm.org/information/). Some of these entities have associated lookup tables, such as depicted below: ![Snippet of modified BISDM schema](https://i.stack.imgur.com/DpiNn.png) I have decided to use the r...
When implementing the repository pattern should lookup value / tables get their own Repository?
CC BY-SA 3.0
null
2009-07-22T21:40:06.137
2015-06-20T02:16:25.020
2017-05-23T12:07:04.890
-1
19,977
[ "repository-pattern", "lookup-tables" ]
1,168,615
1
1,173,831
null
2
2,276
I have a SharePoint DataView WebPart that is set up to combine data from a few different lists. I want to filter the data to only show data from last week. I am able to filter it to show data from this week, but have been unsuccessful in getting last week's data to show up. I have the web part filter set up like bel...
SharePoint DataView Show Items from last week
CC BY-SA 2.5
null
2009-07-22T22:17:18.900
2009-10-21T08:13:36.023
2017-02-08T14:13:47.653
-1
21,461
[ "sharepoint", "sharepoint-designer", "dataviewwebpart" ]
1,169,723
1
1,169,743
null
0
270
Its particular query pops up in the slow query log all the time for me. Any way to improve its efficiency? ``` SELECT mov_id, mov_title, GROUP_CONCAT(DISTINCT genres.genre_name) as all_genres, mov_desc, mov_added, mov_thumb, mov_hits, mov_numvotes, mov_totalvote, mov_i...
Any way to improve this slow query?
CC BY-SA 2.5
0
2009-07-23T05:15:03.273
2009-08-09T23:42:38.357
2009-07-23T05:39:26.533
null
null
[ "mysql", "query-optimization" ]
1,169,732
1
1,169,843
null
4
13,337
I'm trying to send a key stroke to one application, through PostMessage. I am using too Spy++ to try to understand how to send the message, as I do not fully understand its inner workings. ![alt text](https://i.stack.imgur.com/4vBJn.jpg) In this picture, the first item(selected item) was made with an actual key strok...
WM_KEYDOWN : how to use it?
CC BY-SA 3.0
0
2009-07-23T05:18:24.190
2022-11-25T07:51:13.917
2015-06-20T01:34:14.423
4,099,598
130,758
[ "c#", "c++", "vb.net", "winapi", "api" ]
1,178,522
1
1,178,568
null
3
1,582
I'm working on a site and having compatibility issues with IE7 (not working) vs IE8/Firefox (working). Can someone take a look at the following CSS and Screenshots and tell me why my site is broken in IE7 and what I can do to fix it? The site in question is live here: [CollectionTree](http://www.collectiontree.com) ...
Compatibility issues with IE7?
CC BY-SA 2.5
null
2009-07-24T15:45:09.787
2011-11-21T18:20:07.730
2009-07-24T15:47:23.963
2,635
117,792
[ "html", "css", "internet-explorer-8", "internet-explorer-7", "cross-browser" ]
1,182,818
1
1,263,975
null
17
11,125
I'm currently revisiting an area of my Windows-based software and looking at changing the relationship from 1->M to M->M. As a result, I need to adjust the UI to accommodate selecting multiple related records. There are a lot of ways to handle this that are common, but usually pretty clunky. Examples include the two-p...
Examples of good UI for selecting multiple records
CC BY-SA 2.5
0
2009-07-25T19:16:36.163
2019-04-13T10:48:55.667
2017-02-08T14:13:50.710
-1
722
[ "database", "user-interface", "language-agnostic" ]
1,184,599
1
1,250,722
null
3
11,832
I have installed and configured NetBeans 6.7 for c++ according to the official manual: [http://www.netbeans.org/community/releases/67/cpp-setup-instructions.html#mingw](http://www.netbeans.org/community/releases/67/cpp-setup-instructions.html#mingw) Configuration window looks like this: ![netbeans config](https://file...
How to correctly configure netbeans 6.7 and c++ on windows?
CC BY-SA 2.5
0
2009-07-26T13:29:53.167
2013-05-13T17:30:30.147
2017-02-08T14:13:51.387
-1
69,882
[ "c++", "windows", "netbeans" ]
1,185,371
1
9,183,777
null
1
1,356
I have a tabcontrol binded the an observable list. Eveything look to be perfect until I select a tab. Once selected, the tab doesn't lose its focus and the selected tab is not available. They are not any message in the Output Window. Here is a screen shot just before clicking the tab: ![alt text](https://i.stack.imgu...
WPF TabItem doesn't lose focus
CC BY-SA 4.0
null
2009-07-26T19:45:37.643
2019-04-01T06:25:41.790
2019-04-01T06:25:41.790
4,751,173
13,913
[ "c#", ".net", "wpf", "xaml", "tabcontrol" ]
1,187,928
1
null
null
0
1,392
I was recently put in charge of a new project for storing our analytics data. I want to give ORM a shot; the mapping doesn't seem difficult but this problem has me vexed. This database will store data for Google Analytics, Quantcast, and any future analytics provider. I was pretty much given the schema that needs to b...
NHibernate Conditional Mapping
CC BY-SA 3.0
null
2009-07-27T12:33:13.083
2015-06-20T01:35:34.183
2015-06-20T01:35:34.183
4,099,598
48,378
[ "c#", ".net", "database", "nhibernate", "orm" ]
1,189,520
1
1,189,536
null
0
148
got a strange issue for you. I created a control that inserts a record into a Database and writes a cookie to the user's machine. Here is the cookie writing code snippet: ``` protected void CreateCookie(Guid id, DateTime expires) { var oCookie = new HttpCookie("gsow"); oCookie.Value = id.ToString(); oCo...
Cookie getting unset when a read attempt is made?
CC BY-SA 2.5
null
2009-07-27T17:28:34.270
2009-07-27T17:30:29.430
null
null
25,515
[ "c#", "asp.net", "cookies" ]
1,189,896
1
1,189,956
null
1
1,162
I have a textbox which i applied on it jq wysiwyg: ``` public static void PopulateWysiwyg(this SafeTextBox tb) { string script = @" jQuery(document).ready(function() { jQuery('#safe_text_box').wysiwyg(); }); "; ScriptManager.RegisterStartupScript( tb, tb.GetType(), tb.ClientID + "...
jquery wysiwyg throws "Object doesn't support this property or method" on postback
CC BY-SA 2.5
null
2009-07-27T18:44:29.063
2010-08-14T13:14:19.700
2017-02-08T14:13:53.427
-1
75,500
[ "javascript", "jquery", "exception", "wysiwyg" ]
1,190,155
1
1,190,167
null
7
2,178
I am currently reading the [Algorithm Design Manual](http://www.algorist.com/), but my mathematical notation has become a little rusty. What does !["\left( a \ b \right)" LaTeX](https://chart.apis.google.com/chart?cht=tx&chl=%5CLARGE%5C%21%5Cleft%28%20a%20%20%5C%5C%20b%20%5Cright%29) mean?
Mathematical notation in algorithms
CC BY-SA 2.5
null
2009-07-27T19:33:21.430
2010-02-20T21:39:39.587
2017-02-08T14:13:53.763
-1
141,985
[ "algorithm", "math", "notation" ]
1,191,164
1
1,594,562
null
11
14,191
## How to replicate: 1. Create an html5 page. 2. Make sure you have the script from remysharp.com/2009/01/07/html5-enabling-script/ added so that IE will notice the tags. 3. Create an hardcoded <section id='anything'></section> tag. 4. Using jQuery 1.3.2, append another section tag: $('#anything').append('<section ...
jQuery, html5, append()/appendTo() and IE
CC BY-SA 3.0
0
2009-07-27T23:17:44.083
2014-01-12T03:40:45.617
2020-06-20T09:12:55.060
-1
29,851
[ "jquery", "html", "append" ]
1,191,959
1
null
null
2
611
I am currently working on a Silverlight2-based attendance register. I want to create a visualisation of attendance over time for students and classes, but am struggling to come up with a good way of doing it. The sort of thing I'm imagining is a grid with students on the vertical axis and date along the horizontal, wit...
What is the best way to display a grid of a large number of items in Silverlight?
CC BY-SA 2.5
null
2009-07-28T04:38:42.847
2009-07-28T18:51:07.787
null
null
20,122
[ "silverlight", "xaml", "reporting", "silverlight-2.0", "visualization" ]
1,192,101
1
1,192,116
null
0
3,044
I have the css code below along with an image to show it's output. I need help though 2 things. 1. This code works pretty good to show the username on the photo, however I noticed today while using chrome all day often when I would click a link that would take me to the page that has images with this code, it would ...
Adding colored bar to image with CSS
CC BY-SA 4.0
0
2009-07-28T05:37:58.547
2019-04-01T20:02:33.587
2019-04-01T20:02:33.587
4,751,173
143,030
[ "css", "image", "overlay" ]
1,194,176
1
1,194,215
null
1
450
In IE8 and mozilla 3.5 theres an white pixel to the right. How can i get rid of that? Seting background-color changes nothing. neither does width. ``` hr { border-top: 1px solid #111; border-bottom: 1px solid #444; } ``` This is how it looks right now ![enter image description here](https://i.stack.imgur.com/2YSv...
HR tag renders white pixel
CC BY-SA 3.0
null
2009-07-28T13:42:59.540
2012-05-17T14:56:44.167
2012-05-17T14:56:44.167
106,224
null
[ "html", "css" ]
1,194,352
1
1,222,855
null
53
18,796
Given a 2d picture of a rectangle distorted by perspective: ![enter image description here](https://i.stack.imgur.com/rI36D.png) I know that the shape was originally a rectangle, but I do not know its original size. If I know the pixel coordinates of the corners in this picture, how can I calculate the original prop...
proportions of a perspective-deformed rectangle
CC BY-SA 3.0
0
2009-07-28T14:09:07.933
2022-11-01T10:57:26.050
2013-02-16T11:46:25.780
145,999
145,999
[ "image-processing", "geometry", "computer-vision", "reverseprojection", "projective-geometry" ]
1,196,341
1
1,196,584
null
0
172
I updated my Sharp-Architecture libraries to the newest version and all of a sudden I'm getting unable to resolve errors - specifically with NHibernate Validators. I am not quite sure why though, here is what my test assembly looks like in reflector: ![alt text](https://content.screencast.com/users/togakangaroo/fol...
Why can't this reference be resolved?
CC BY-SA 2.5
null
2009-07-28T19:46:46.660
2009-07-28T20:38:36.900
2017-02-08T14:13:56.830
-1
5,056
[ ".net", "reference" ]
1,196,578
1
null
null
27
73,454
I went from this: [WPF GridViewHeader styling questions](https://stackoverflow.com/questions/1172534/wpf-gridviewheader-styling-questions) to this: ![WPF GridView Headers](https://i.stack.imgur.com/IYvoJ.png) Now I just need to get rid of the white space to the right of the "Size" header. I basically have a template f...
How do you style a WPF GridView Header?
CC BY-SA 4.0
0
2009-07-28T20:37:14.407
2022-07-16T15:41:15.417
2022-07-16T15:41:15.417
6,296,561
103,186
[ "wpf", "gridview", "styles" ]
1,198,000
1
null
null
3
3,428
SQL Server Edition: 2008 Enterprise Visual Studio: 2010 w/ .NET 4.0 [SSMS 2008 Addin - Data Scripter](http://ssmsaddins.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=19122) project source code on CodePlex references I have referenced the DLL under `<<Microsoft SQL Server install location>>\100\Tools\Binn\VSS...
Microsoft.SqlServer.SqlTools.VSIntegration reference problem/oddities in Visual Studio 2010
CC BY-SA 2.5
0
2009-07-29T04:08:57.730
2011-05-12T16:37:29.213
2017-02-08T14:13:57.843
-1
4,035
[ "sql-server", "visual-studio", "ssms", "assembly-resolution" ]
1,202,535
1
1,204,092
null
1
5,314
I'm getting a thrown error from javax.net.ssl.SSLHandshakeException (see attached picture) ![alt text](https://i1012.photobucket.com/albums/af244/tammens_photos/error.png) Is it possible for Java to have a corrupt or missing CA cert? If so how can I repair or resolve this issue/error? 1. I have removed all vers...
Could not find trusted certificate
CC BY-SA 2.5
null
2009-07-29T19:35:16.167
2011-03-14T10:50:36.523
2017-02-08T14:14:00.227
-1
2,140,183
[ "java", "ssl-certificate", "certificate-authority" ]
1,203,248
1
1,203,299
null
3
1,378
I have some data in a tree structure, and I want to represent them in a graphical way, with the root node in the middle of the stage, his children displaced in a circle around him, and so on for every children, around their parent. I don't want overlapping nodes, so the question is how to arrange space in an optimal wa...
Circular representation of a tree structure
CC BY-SA 3.0
0
2009-07-29T21:42:55.673
2014-05-02T11:44:57.440
2017-02-08T14:14:00.570
-1
55,385
[ "algorithm" ]
1,205,285
1
1,205,567
null
4
471
Is it possible to do the following layout with CSS but not using absolute/relative positioning? We tried to solve this riddle for several days but we couldn't fit the box 10. Please also provide css + html files of your solution. So we can discuss solutions. ![is it possible?](https://farm3.static.flickr.com/2497/377...
This layout can be done with CSS?
CC BY-SA 3.0
0
2009-07-30T08:46:04.153
2012-05-03T06:47:02.977
2017-02-08T14:14:00.913
-1
134,845
[ "css", "layout" ]
1,205,809
1
1,206,457
null
0
903
First of all, as I am using VB6, please confine your kind suggestions to techniques applied to VB6. ![alt text](https://i.stack.imgur.com/cSTWr.jpg) I have a set of controls related to each other as the above figure shows. It includes several treeviews, a split bar, a listview, a subform( a usercontrol), and etc. Wh...
How can I reuse classes in my VB6 application?
CC BY-SA 4.0
null
2009-07-30T10:44:21.607
2019-04-02T20:06:17.930
2019-04-02T20:06:17.930
4,751,173
118,132
[ "vb6", "activex", "components", "code-reuse", "reusability" ]
1,206,035
1
1,206,057
null
0
315
I am trying to connect MySQL to Windows following the instructions given [here](http://www.dscripts.net/tutorials/2009/01/18/connect-to-mysql-database-using-csharp/). I have installed MySQL 5.1 software, GUI tools and MySQL connector. MySQL is working fine. I want to establish connection between the MySQL database an...
Cannot add connection to MySQL in C# application
CC BY-SA 4.0
null
2009-07-30T11:34:52.440
2019-04-02T20:02:06.627
2019-04-02T20:02:06.627
4,751,173
128,036
[ "c#", "mysql" ]
1,207,173
1
null
null
5
2,880
I implemented a custom DateTimePicker. On the DateTimePicker there is a button. In the examples I've found it's width is set to 16. This is working but I would like to have a dynamic approach. So, is there a way to get the size of this button or is there a general way to get information about .Net-Control sub elements...
How to get width of button in DateTimePicker-Control/Controls in general?
CC BY-SA 3.0
0
2009-07-30T14:58:45.657
2011-11-29T19:30:26.687
2011-11-29T19:30:26.687
12,597
97,118
[ "c#", ".net", "winforms", "user-controls" ]
1,209,111
1
null
null
0
394
Here is how my menu looks right now: ![alt text](https://imgur.com/apS9k.png) Here is how I want it to look: ![alt text](https://imgur.com/qAoPd.png) Right now I have the following css: ``` #menu { position:relative; width: 940px; height:90px; } #menuItem { position: absolute; bottom: 0p...
How can I make these elements line up correctly using CSS?
CC BY-SA 2.5
null
2009-07-30T20:22:22.570
2011-11-21T20:29:11.873
null
null
64,878
[ "html", "css", "internet-explorer-7" ]
1,210,456
1
null
null
2
911
I'm trying unsuccessfully to get CoverStory working in an iPhone project. Unfortunately XCode build settings and gcc flags are a big mystery to me. :( I've managed to generate .gcno files but the .gcda files don't show. I've added -lgcov as an other linker flag, set both the GCC_GENERATE_TEST_COVERAGE_FILES and GCC_INS...
CoverStory for iPhone testing?
CC BY-SA 2.5
0
2009-07-31T02:50:27.313
2009-12-23T03:26:32.987
2017-02-08T14:14:01.277
-1
10,631
[ "iphone", "unit-testing", "xcode" ]
1,213,376
1
1,213,406
null
4
9,633
Given a database schema with a parent table and two or more child tables. For example: ![Database Diagram](https://farm4.static.flickr.com/3532/3774659839_3239c97d5c.jpg) Is it possible to create a query, using the `for xml` statement, that outputs the following XML: ``` <?xml version="1.0"?> <person> <name>Joe ...
Producing XML from a multi-table join in SQL Server
CC BY-SA 2.5
null
2009-07-31T15:57:40.557
2009-07-31T16:26:26.457
2017-02-08T14:14:02.010
-1
21,875
[ "sql-server", "xml", "join" ]
1,217,153
1
1,217,260
null
7
2,038
I am rotating my image with the following code: ``` CGAffineTransform rotate = CGAffineTransformMakeRotation( [ratio floatValue] ); [imageView setTransform:rotate]; ``` But it doesn't have sharp edges, does someone know a solution for this? Here's the image I get: ![enter image description here](https://i.stack.im...
My rotated image doesn't have sharp edges
CC BY-SA 3.0
0
2009-08-01T18:19:23.450
2015-09-03T19:20:11.373
2012-10-31T10:05:37.517
488,657
146,441
[ "iphone", "image", "uiimageview", "rotation" ]
1,218,986
1
1,222,790
null
5
4,539
I am building a website for a club that is part of a mother organisation. I am downloading (leeching ;) ) the images that where put on profile pages of the mother organisation to show on my own page. But their website has a nice white background, and my website has a nice gray gradient on the background. This does not ...
JPEG artifacts removal in C#
CC BY-SA 2.5
0
2009-08-02T14:20:11.250
2010-03-18T22:49:19.073
2017-02-08T14:14:05.990
-1
900
[ "c#", "image-processing", "gdi+", "bitmap" ]
1,219,827
1
1,219,833
null
5
3,089
I working on a simple paint program. It seemed Qt (and KDE) would be a easy way to implement it. I find Qt quite easy to work with, but now I have hit a problem. When I draw something in my program the mouse skips if I move the mouse to fast. like this: ![alt text](https://i229.photobucket.com/albums/ee237/kvasarnoma...
Qt, Mouse skipping, not updating every pixel, mouseMoveEvent()
CC BY-SA 2.5
0
2009-08-02T20:52:42.937
2009-08-02T20:56:13.707
2017-02-08T14:14:06.327
-1
149,091
[ "c++", "linux", "qt", "kde-plasma" ]
1,222,138
1
1,222,216
null
3
2,585
I'm desperately trying to connect controls of NSViews which will reside in a NSCollectionView using outlets. The collection view is fed using an NSArrayController. I created the NSView in a separate NIB file and in the implementation of NSCollectionViewItem I overwrote copyWithZone to load it: ``` -(id)copyWithZone:(...
How to use NSCollectionView and Outlets properly?
CC BY-SA 3.0
0
2009-08-03T12:41:33.740
2015-06-20T01:46:13.683
2015-06-20T01:46:13.683
4,099,598
149,406
[ "objective-c", "cocoa", "interface-builder", "cocoa-bindings", "nscollectionview" ]
1,229,456
1
1,229,947
null
3
5,817
I've been trying a lot of different things that I would think would work like expected. However, they are causing me some frustration. Here's the scoop: I am using ICEFaces 1.8 components in a Java EE web application. My goal is to render a bunch of ice:commandButtons on the page based on a query to my database. I wan...
Dynamically generate ice:commandButton components
CC BY-SA 2.5
null
2009-08-04T19:32:12.730
2009-08-05T11:55:10.080
2017-02-08T14:14:10.447
-1
318
[ "jsf", "jakarta-ee", "icefaces" ]
1,230,906
1
1,231,036
null
8
5,458
I'm trying to convert an image into an audio signal in MATLAB by treating it as a spectrogram [as in Aphex Twin's song on Windowlicker](http://www.bastwood.com/aphex.php). Unfortunately, I'm having trouble getting a result. Here it what I have at the moment: ``` function signal = imagetosignal(path, format) % R...
Reverse Spectrogram A La Aphex Twin in MATLAB
CC BY-SA 2.5
0
2009-08-05T02:34:12.530
2010-06-28T21:24:34.430
2009-08-05T04:36:09.890
48,096
48,096
[ "matlab", "image-manipulation", "signal-processing", "fft", "inverse" ]
1,233,673
1
null
null
5
11,839
I have a table that looks like this: ![alt text](https://imgur.com/MXqRf.png) ClientID is the only identity column I have in the table. UserID is a FK to a different tables primary key. Here is my Linq to SQL insert code: ``` public void InsertClientByUsername(string username, Entities.Client clientInfo) { usi...
Why am I getting "Cannot insert explicit value for identity column" in LINQ to SQL when I'm not specifying a value for an identity column?
CC BY-SA 2.5
0
2009-08-05T14:36:18.943
2012-11-13T07:46:31.690
2009-08-05T14:52:00.103
149,960
149,960
[ "c#", "linq-to-sql" ]
1,234,540
1
1,234,668
null
0
1,171
I am playing around with Sharepoint 2007. I have a virtual machine (win server 2k3) with an instance of sharepoint server 2007 running on it. I am now working on creating web parts. I have successfully created simple ones, such as this one that displays text: ``` public class SimpleWebPart : WebPart { private stri...
Could Not Load File or Assembly Sharepoint 2007 WebPart
CC BY-SA 2.5
null
2009-08-05T17:08:33.903
2009-08-05T17:35:27.657
null
null
25,515
[ "c#", "linq", "sharepoint", "web-parts" ]
1,234,764
1
1,234,870
null
3
532
So I'm working on a project that will, in the end, generate a kind of flow chart using the Flickr api. You will supply a seed tag, and the program will use that seed tag to find other related Flickr pictures that have common tags... I have all of the back end stuff up and running but I'm stumped on the formatting. He...
Automatic Spacing for Flowchart
CC BY-SA 2.5
0
2009-08-05T17:58:50.993
2009-08-05T20:19:53.750
null
null
52,749
[ "javascript", "logic", "flickr" ]
1,234,949
1
null
null
-1
14,277
I am making an application that reads an mp3 file , and I want the user to be able to share the mp3 player on his profile and be shown like the image below: ![](https://i.stack.imgur.com/mpiTg.jpg) and not like the normal share button.
how to add mp3 player to facebook members from my facebook application
CC BY-SA 3.0
null
2009-08-05T18:30:57.823
2015-06-20T02:11:51.473
2015-06-20T02:11:51.473
1,159,643
null
[ "facebook", "profile", "fbml", "share" ]
1,235,057
1
1,235,130
null
1
112
I have this dilemma about designing/programming border or gap widths in an application of mine. I'm using Swing but this is sort of implementation-agnostic. I have a splitter pane (JXMultiSplitPane) dividing two subpanes, shown below outlined in black; the black border will be gone in the real application and is just h...
GUI border dilemma
CC BY-SA 2.5
null
2009-08-05T18:50:46.117
2009-08-05T19:04:37.053
2017-02-08T14:14:11.807
-1
44,330
[ "user-interface", "whitespace" ]
1,236,341
1
1,236,649
null
4
1,020
The iPhone is admittedly not the best platform for viewing code, but I'd like to optimize the mobile portion of my web site for the device as best I can. I'm having trouble getting code (Java code, in this case) to display properly. I'm using `<pre>` tags, along with some CSS to render a nice little background for ...
How to display code on iPhone using HTML/CSS
CC BY-SA 2.5
0
2009-08-05T23:59:01.437
2009-08-06T02:13:32.653
2009-08-06T01:52:07.490
93,995
93,995
[ "iphone", "html", "css" ]
1,236,473
1
1,246,019
null
8
6,298
I want to use partially transparent images in drag/drop operations. This is all set up and works fine, but the actual transformation to transparency has a weird side effect. For some reason, the pixels seem to be blended against a black background. The following image describes the problem: ![Transparency problem](h...
Windows Forms: Making a cursor bitmap partially transparent
CC BY-SA 3.0
0
2009-08-06T00:52:58.857
2021-12-28T22:20:51.223
2021-12-28T22:20:51.223
4,294,399
118,211
[ "c#", "winforms", "gdi+", "alphablending", "mouse-cursor" ]
1,236,607
1
1,236,623
null
4
507
I'm a person that learns best from example. Currently, I'm diving into the field of Web Development after fifteen years of developing desktop apps. I'm still getting used to all the web technologies used for developing modern web sites and everywhere I look, I see cool little UI elements and question how they're implem...
How would you code this: Grid-breaking shapes
CC BY-SA 2.5
0
2009-08-06T01:58:27.107
2010-06-02T06:39:16.210
2017-02-08T14:14:13.157
-1
191,808
[ "html", "css", "image" ]
1,238,313
1
null
null
0
1,063
I have been playing around with the idea of a single audit table for a few tables in my database. I found the code on this page: [http://www.simple-talk.com/sql/database-administration/pop-rivetts-sql-server-faq-no.5-pop-on-the-audit-trail/](http://www.simple-talk.com/sql/database-administration/pop-rivetts-sql-server...
Querying single audit table for reporting
CC BY-SA 3.0
null
2009-08-06T11:30:20.440
2015-06-20T02:15:15.513
2015-06-20T02:15:15.513
1,159,643
6,335
[ "sql", "audit" ]
1,241,010
1
null
null
-4
126
![alt text](https://i.stack.imgur.com/IDpUQ.png) How can I accomplish the above using divs and CSS?
How can I accomplish this design using divs and CSS?
CC BY-SA 4.0
null
2009-08-06T19:53:28.090
2019-04-05T08:11:08.900
2019-04-05T08:11:08.900
4,751,173
null
[ "html", "css" ]
1,242,682
1
1,243,239
null
1
158
What library is used to create a window form like below? It certainly does not look/feel/acts like a typical windows forms app. ![alt text](https://farm3.static.flickr.com/2576/3796397035_35c2315cde_o.png)
What technology is used for Visual Studio SDK window?
CC BY-SA 2.5
null
2009-08-07T03:10:43.220
2012-07-03T00:27:12.980
2017-02-08T14:14:14.863
-1
4,035
[ "winforms", "visual-studio", "visual-studio-2008" ]
1,243,795
1
1,243,873
null
6
1,599
This is an idea I have been thinking about, but I do not quite know how to solve it. I would like to know if any solutions like this exists out there, or if you guys have any idea how this could be implemented. ### Steganography Steganography is basically the art of hiding messages. In modern days we do this...
Combining semacodes and steganography?
CC BY-SA 4.0
0
2009-08-07T09:22:41.417
2019-04-05T08:00:24.487
2019-04-05T08:00:24.487
4,751,173
81,398
[ "algorithm", "encoding", "persistence", "barcode", "steganography" ]
1,244,649
1
null
null
0
1,192
![enter image description here](https://i.stack.imgur.com/yx2Cr.png) I am in editing mode. The dark grey is an imageView, that it seems being pushed by the reorder icons, and you can see the UIview in the background (light grey). I do not like this to happen. What do you think?
Weird view, in UITableViewCell at editing mode, while reorder cells
CC BY-SA 3.0
0
2009-08-07T13:16:02.710
2013-04-18T09:26:31.430
2013-04-18T09:26:31.430
664,177
151,093
[ "iphone", "objective-c", "uitableview" ]
1,244,914
1
1,253,907
null
3
289
I have a CSS issue which occurs in IE6 only. I'm completely stumped and am hoping someone else might be able to help. In IE6, if you navigate to www.moneysupermarket.com/loans and search for a loan of £5000 over 5 years, Homeowner - Mortgaged, you will get the Loans results page. Scroll to the bottom of the page and ...
IE6 CSS Bug - ULs & LIs
CC BY-SA 3.0
0
2009-08-07T14:08:58.883
2012-09-03T17:02:09.450
2012-09-03T17:02:09.450
389,966
152,509
[ "css", "internet-explorer-6", "html-lists" ]
1,247,444
1
1,316,343
null
0
3,852
I have a RadGrid with a datatable as it's source. I have AllowCustomPaging set to true. ``` <telerik:RadGrid runat="server" ID="RadGridSearchResults" PageSize="50" AllowPaging="true" AllowCustomPaging="true" OnNeedDataSource="RadGridSearchResults_NeedDataSource" Skin="Default"> <PagerStyle Mode="NextPrevNumericAndAdv...
Rad Telerik GridGroupByExpression is not grouped until I click the sort grid button
CC BY-SA 2.5
null
2009-08-07T23:26:08.013
2009-08-22T16:20:21.857
null
null
127,257
[ "asp.net", "grid", "telerik", "radgrid" ]
1,248,809
1
2,157,103
null
2
1,459
I've got an NSSplitView with an NSScrollView in the bottom view. The problem is when I collapse, and then re-open (un-collapse) the bottom view, the height of the scroll view is beyond the height of that bottom view so the top part of the scoll view is being clipped. I've got my scroll view and my split view set to a...
How do I fix the height of my view after collapsing NSSplitView?
CC BY-SA 2.5
0
2009-08-08T12:52:17.130
2012-07-17T12:50:22.963
2017-02-08T14:14:16.887
-1
32,854
[ "cocoa", "height", "nsview", "nssplitview" ]
1,249,400
1
1,249,595
null
1
2,254
How can I configure a ASP.NET GridView to populate it by an Object DataSource where the object method needs a noticeCode to pass by the C# code? ## StudentControlPanel.aspx.cs ``` protected void Page_Load(object sender, EventArgs e) { string username = (string)Request.QueryString["username"]; ...
ASP.net GridView and Object DataSource
CC BY-SA 2.5
0
2009-08-08T17:17:53.587
2009-08-08T20:31:04.633
2017-02-08T14:14:17.223
-1
159,072
[ "asp.net", "gridview", "objectdatasource" ]
1,249,506
1
1,249,519
null
6
4,547
I find decorator pattern to be most confusing. Please consider the example provided in "Head first design patterns book". ![alt text](https://i.stack.imgur.com/mBVGy.png) So to get a with double mocha and a whip, you have to write ``` Beverage beverage2 = new DarkRoast(); beverage2 = new Mocha(beverage2); ...
Alternatives to decorator pattern
CC BY-SA 3.0
0
2009-08-08T18:01:39.553
2015-06-20T02:16:14.567
2015-06-20T02:16:14.567
1,159,643
50,419
[ "c#", "java", "design-patterns" ]
1,250,250
1
1,250,293
null
1
2,540
![Diagrams](https://i208.photobucket.com/albums/bb33/bradzeis/diagrams.png) I actually have two questions, I found the answer to the second and didn't update the diagram. I'm not actually sure if these are possible, they really stumped me. Given point A and e, the angle of the line A is on relative to the x-axis whe...
Calculating Coords of a point Perpendicular to a Line, Calculating Coords of Third Point in Angle Given Two Points and Angle
CC BY-SA 2.5
null
2009-08-09T00:25:51.667
2009-08-09T02:31:01.997
2017-05-23T12:08:51.063
-1
120,258
[ "geometry" ]
1,251,828
1
4,021,898
null
12
35,039
I need to calculate the 2 angles (yaw and pitch) for a 3D object to face an arbitrary 3D point. These rotations are known as "Euler" rotations simply because after the first rotation, (lets say Z, based on the picture below) the Y axis also rotates with the object. This is the code I'm using but its not working fully...
Calculate rotations to look at a 3D point?
CC BY-SA 4.0
0
2009-08-09T17:41:10.427
2019-04-12T13:59:26.093
2019-04-12T13:59:26.093
4,751,173
41,021
[ "math", "3d", "rotation", "angle", "euler-angles" ]
1,252,906
1
1,252,931
null
3
3,194
![alt text](https://farm3.static.flickr.com/2504/3806628370_c50137228d_o.jpg) Do you know any rounded corners tab like this one that I can download? Or how can I create a tab like that? Do the use of images in the tab menus are required or not? I used the: ``` -moz-border-radius-topleft: 5px; -moz-border-radius-toprigh...
Javascript: How to create a rounded corner tab menu?
CC BY-SA 4.0
0
2009-08-10T02:38:49.407
2021-02-15T15:37:50.327
2021-02-15T15:37:50.327
1,783,163
95,322
[ "javascript", "rounded-corners" ]
1,253,205
1
1,253,615
null
1
398
I have a shared runtime package that I am using to support an application that uses packages as a plugin system. I have included several third party units in the shared package to reduce the number of BPLs that have to be distributed. Delphi seems to have some headaches with this set up, occasionally updating only th...
Preventing the IDE from changing a package's "requires" clause
CC BY-SA 2.5
0
2009-08-10T05:16:34.817
2009-08-10T08:15:44.753
2017-02-08T14:14:18.920
-1
150,046
[ "delphi", "delphi-2009" ]
1,254,356
1
1,254,445
null
6
2,154
I'm recently working on a tree structure, multiple nodes, multiple and increasable levels, and a print() method. At first, i thought it should be a Composite, i then wrote down some possible design and codes: ![alt text](https://farm3.static.flickr.com/2596/3807730874_4d6d5ed7ee_o_d.gif) ``` $struc = new Node(‘name0’...
What advantage will Composite pattern bring me over just Array?
CC BY-SA 2.5
0
2009-08-10T11:19:17.300
2010-10-21T09:17:50.057
2017-02-08T14:14:20.277
-1
153,626
[ "php", "design-patterns" ]
1,256,695
1
1,259,402
null
0
1,001
In the following code, why isn't the button text initially displayed when ButtonSkin (from com.sun.javafx.scene.control.caspian) is used? In the following code (running WinXP, NetBeans 6.7.1, JavaFX 1.2 , JDK 1.6), when ButtonSkin is used, the button text starts as blank. After the slider is used, te button text is ...
JavaFX ButtonSkin anomaly
CC BY-SA 4.0
null
2009-08-10T19:17:30.397
2019-04-13T01:59:39.963
2019-04-13T01:59:39.963
4,751,173
29,454
[ "button", "slider", "javafx" ]
1,260,146
1
1,264,680
null
1
1,205
I have a virtual machine running windows 2003 server running MOSS 2007. This virtual machine is not being run on my dev machine, but on a different machine on the network. I can ping both the host and guest OS from my dev machine. I just need to know, if it is possible, how to configure visual studio 2008 to deploy the...
Is it possible to deploy a Web Part from Visual Studio 2008 to a (virtual) MOSS 2007 server on my network?
CC BY-SA 2.5
null
2009-08-11T12:49:59.243
2009-08-14T10:34:22.377
null
null
25,515
[ "visual-studio", "sharepoint", "deployment", "sharepoint-2007" ]