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
4,170,178
1
4,170,284
null
1
2,158
I am creating a document in LateX and the following multivalued function has been giving me trouble for a while. ![alt text](https://i.stack.imgur.com/UHRTE.jpg) The Latex code for the above as I gave is ``` $\[delta \tau_{i,j}^{k}$ = $\left\{$ \begin{array}{l l} \frac{1}{L_{k}} & \quad \mbox{if ant k travels ...
Error while writing multi-valued function in LateX
CC BY-SA 2.5
null
2010-11-13T00:24:41.933
2010-11-13T00:53:26.507
null
null
383,439
[ "latex", "document", "mathematical-typesetting" ]
4,170,578
1
null
null
1
663
I recently started learning C++ and I installed Netbeans IDE 6.9.1 and also the Cygwin compiler packages and configured them, and added Cygwin to my environment variable PATH like the instructions told me to. I wrote a basic "Hello World" program and when I press Ctrl+F5 to "Debug Main Project" it seems to build fine ...
Error in basic C++ program running in Netbeans IDE with Cygwin
CC BY-SA 3.0
null
2010-11-13T02:14:23.677
2011-12-04T00:41:47.340
2011-12-04T00:41:47.340
84,042
506,427
[ "c++", "netbeans", "console", "cygwin" ]
4,170,976
1
4,171,042
null
0
95
![http://gadgetfolio.com/wp-content/uploads/2010/09/Picture-024.png](https://i.stack.imgur.com/1nUOO.png) What's the UI element that is top of that number buttons to display number ? (which is in light blue color)
What's this UI element?
CC BY-SA 3.0
null
2010-11-13T04:28:57.380
2013-12-18T16:58:43.970
2013-12-18T16:58:43.970
759,866
450,048
[ "iphone" ]
4,171,174
1
null
null
0
757
I have a factorial code ``` class FactorialTest { public static void main(String args[]){ System.out.println(factorial(10)); } public static int factorial(int N){ if (N <= 1) return 1; return N*factorial(N-1); } } ``` It was traced using [Trace](http://download.oracle.com/ja...
Tracing order of execution in Java
CC BY-SA 2.5
null
2010-11-13T05:48:38.053
2010-11-13T06:01:20.643
null
null
132,127
[ "java", "recursion", "trace" ]
4,171,664
1
4,171,680
null
155
145,356
I'd like to create an HTML form submit button with the `'add tag'`, however, the web page is in Swedish, so I'd like to have a different . That is, I want to have a button like ![enter image description here](https://i.stack.imgur.com/1NeV7.png) but I want to have my code like ``` if (request.getParameter(cmd).equ...
HTML Submit-button: Different value / button-text?
CC BY-SA 3.0
0
2010-11-13T08:35:01.257
2015-07-14T09:37:02.737
2015-07-14T09:37:02.737
276,052
276,052
[ "html", "forms" ]
4,171,834
1
4,194,161
null
0
888
In my iphone app i have implemented the SearchBar on TableView. Now the SearchBar Searches the items but the searched items are not shown in the tableview as the NSMutableArray which fills up the table with the search results is not retaining the values. I have put the screenshot of the code and the NSLog statements ...
NSMutableArray not retaining the value even after setting the property
CC BY-SA 2.5
0
2010-11-13T09:25:37.063
2010-11-16T12:36:38.107
2010-11-13T09:46:24.917
463,857
463,857
[ "iphone", "objective-c", "cocoa-touch", "ios4", "uisearchbar" ]
4,172,183
1
4,172,200
null
0
207
I am implementing search page in php. I need to show the results like the following image ![sample](https://i.stack.imgur.com/pus66.jpg) how can i achieve this kind of designing using css. I want it a fluid design using percentages with an addition i.e alternate row color changed. Also let me know how can i limit a ...
tableless search results
CC BY-SA 2.5
null
2010-11-13T11:04:35.500
2010-11-13T11:23:32.977
null
null
356,188
[ "php", "css" ]
4,172,246
1
4,172,431
null
16
49,686
I'm trying to draw a grid on a `<canvas>` element with the ultimate goal of making a [Go board](http://upload.wikimedia.org/wikipedia/commons/d/df/Go_game_example.png). For some reason the grid is looking stretched, with the lines being thicker than 1 pixel and the spacing being completely wrong. It doesn't even start...
Grid drawn using a <canvas> element looking stretched
CC BY-SA 3.0
0
2010-11-13T11:17:34.070
2019-01-14T05:40:31.807
2017-05-26T16:20:41.020
311,220
311,220
[ "javascript", "jquery", "html", "canvas", "grid" ]
4,172,317
1
4,175,030
null
7
3,910
when adding a new record like this ``` ContentContacts c2 = new ContentContacts(); c2.updated_user = c2.created_user = loggedUserId; c2.created_date = c2.updated_date = DateTime.UtcNow; db.ContentContacts.AddObject(c2); ``` I'm getting > Cannot insert the value NULL into column 'main_email_support', table 'SQL200...
How to insert DB Default values under EF?
CC BY-SA 2.5
0
2010-11-13T11:35:43.750
2016-02-13T14:23:01.167
2010-11-13T14:23:46.297
28,004
28,004
[ "entity-framework" ]
4,172,650
1
4,175,219
null
5
6,903
I've been following the polls tutorial up until the point where I should have a login page for the admin backend. [http://docs.djangoproject.com/en/dev/intro/tutorial02/](http://docs.djangoproject.com/en/dev/intro/tutorial02/) Instead I get the welcome page like this: ![What I get trying to access the admin page](htt...
Django admin page not showing
CC BY-SA 3.0
0
2010-11-13T13:09:54.673
2014-04-12T19:20:01.070
2014-04-12T19:20:01.070
663,064
181,637
[ "python", "django", "mod-wsgi" ]
4,173,057
1
4,173,068
null
1
215
Hi I am facing a weird bug, I am writing a tag like ``` <div id="thecontent" dojoType="dojox.layout.ContentPane"></div> ``` Please see the "T" in dojoType it is in uppercase.Now I go and see my page not rendered properly, so I view source and I find that the source is correctly shown, but when I check firebug , I g...
uppercase lowercase bug..web dev
CC BY-SA 2.5
null
2010-11-13T14:43:00.003
2010-11-13T18:11:52.077
2010-11-13T17:00:59.177
459,514
459,514
[ "dojo" ]
4,173,318
1
4,209,919
null
15
14,536
I'm trying to set up my (iframe) Facebook application to use OAuth for authentication. I used the [python-sdk](https://github.com/facebook/python-sdk) from Facebook, but I'm not really satisfied by the result, yet. The problem is that when I redirect a user that never accessed my application to the login page, my ifra...
Facebook OAuth login for iframe canvas apps displays a logo image and a Go to Facebook.com caption instead of logging in
CC BY-SA 3.0
0
2010-11-13T15:43:11.787
2013-07-12T06:17:57.687
2013-07-12T06:15:11.190
1,656,977
27,565
[ "authentication", "oauth", "facebook" ]
4,173,684
1
4,173,731
null
1
137
Anybody has an idea what the hell these characters in below screenshot are? Almost every key I press results in the characters in the screenshot. I get the issue very frequently (can't code 20 lines in a row without having it) and it seems to be triggered by intellisense use... Seems I got it after installing the late...
Eastern characters in VS 2010 code editor
CC BY-SA 2.5
0
2010-11-13T17:07:23.197
2010-11-13T17:17:40.977
null
null
26,579
[ "visual-studio" ]
4,173,923
1
4,173,941
null
1
287
I have been doing lots of successful boolean searches however 1 word seems to be stopping it from displaying the expected results. Below you can see the table structure at the top, with special attention to the tags content for this test product. ![alt text](https://i.stack.imgur.com/VVtnh.jpg) The code in text inca...
Boolean search ignoring word
CC BY-SA 2.5
null
2010-11-13T17:58:39.607
2010-11-13T18:08:03.767
null
null
241,465
[ "mysql", "boolean" ]
4,173,961
1
null
null
6
3,341
I'm sure this question or derivatives of it have been asked a bazillion times, but I couldn't find anything that helped me solve the problem, so I'm asking. Please feel free to direct me to the duplicate that I'm sure exists but I can't find. Apparently I'm not so great with keywords. I have a Custom Control, it has i...
WPF Custom Control Template Not Applied
CC BY-SA 2.5
null
2010-11-13T18:05:36.890
2014-07-11T07:56:44.000
2011-09-16T16:37:07.447
305,637
177,547
[ "wpf", "custom-controls", "controltemplate", "resourcedictionary" ]
4,174,209
1
4,174,240
null
3
2,129
I would like to deconstruct the following polygon shown in blue removing all of the points from the polygon that cause concavity. ![alt text](https://i.stack.imgur.com/APQiz.png) Currently, what I have been attempting to do is: - - - - This works in most cases, but in the previous case the points at (2,3) and (2,4...
Polygon Decomposition - Removing Concave Points to Form Convex Polygons
CC BY-SA 2.5
null
2010-11-13T19:11:04.133
2010-11-13T22:11:10.007
2010-11-13T19:32:46.383
50,476
506,889
[ "geometry", "computational-geometry", "convex-optimization", "convex-polygon" ]
4,174,523
1
null
null
1
827
I need a simple shader code to use with my XNA application which just draws a given texture to the screen .. Essentially, I'm trying to do post processing, but my aim here is to not apply any post processing effect, but to just display the texture as itself .. I tried the following pixel shader code but I'm getting s...
Need a simple pixel shader code which just draws an input texture to the screen (viewport)
CC BY-SA 2.5
null
2010-11-13T20:27:02.170
2011-03-28T18:37:18.570
null
null
366,207
[ "c#", "xna", "shader" ]
4,174,868
1
4,175,036
null
0
103
![alt text](https://i.stack.imgur.com/C8Btx.jpg) As you see in the snapshot, variable names are shown e.g. "email_address", "email_message" and "email_subject". Instead i want to print "Email", "Message" and "Subject". MM_validateForm() Javascript is used for validation.
Form Validation Exposes Variable Name insead of Label Name on the Altert Box - MM_validateForm()
CC BY-SA 2.5
null
2010-11-13T21:38:12.790
2010-11-19T12:37:34.843
2010-11-19T12:37:34.843
372,445
372,445
[ "php", "javascript", "html", "webforms" ]
4,175,050
1
4,175,075
null
0
2,790
I have ( [http://www.rohanjain.in](http://www.rohanjain.in)) based on . It uses the new elements defined in html5 for page layout: , , , , etc. But I just checked that with old browsers and ie (dont care about this "non" browser) dont render the page properly. : ![alt text](https://i.stack.imgur.com/1Sc6o.png) T...
html5 new layout elements old browsers
CC BY-SA 2.5
0
2010-11-13T22:20:35.933
2010-11-13T23:00:42.670
2010-11-13T22:26:33.560
420,357
420,357
[ "layout", "html", "cross-browser" ]
4,175,184
1
4,175,816
null
4
11,603
How to draw a chart which looks exactly the same as one on the picture using C# and .net 4 built-in chart control ? Important are X and Y axis and there markings, and I don't want any graph line, just empty chart. ![alt text](https://i.stack.imgur.com/wqyYU.jpg) I'd be relly grateful for code snipet. Best regards, Pr...
How to draw a chart using C# and .net 4 built-in chart control?
CC BY-SA 2.5
0
2010-11-13T23:01:13.870
2010-11-14T04:35:27.440
2010-11-13T23:49:36.497
423,278
423,278
[ "c#", ".net", ".net-4.0", "charts" ]
4,175,222
1
null
null
2
1,831
Could anyone help me to realize this kind of interesting javascript search form? ![alt text](https://i.stack.imgur.com/LwUDR.png) I need this form to realize search engine on my website. So by pushing arrow down it has to be shown drop down list of choosing another language flag. When chosen another language flag, it...
JavaScript search form
CC BY-SA 2.5
0
2010-11-13T23:12:40.477
2010-11-14T02:04:34.927
null
null
304,855
[ "javascript", "search", "forms" ]
4,175,819
1
4,175,846
null
6
769
Ok, I searched the internet and stackoverflow but I just can't seem to find an answer for my problem. I need to watermark images uploaded by users dynamically, but I don't want just text applied on an image. I need a real watermark like this: ![alt text](https://i.stack.imgur.com/bdMld.png) The only way I can achieve...
User name as Watermark
CC BY-SA 2.5
0
2010-11-14T02:01:04.163
2022-07-03T16:08:08.083
2010-11-14T02:52:17.393
126,562
483,262
[ "php", "image-processing", "gd", "imagick" ]
4,175,826
1
4,175,838
null
0
187
This is my problem: ![Problem](https://i.stack.imgur.com/zJ49M.png) The background of the progress indicator doesn't appear to be redrawing, and it's certainely not transparent. I'm using core animation to animate the image in the background; when I don't use core animation it looks fine. This is the code I am usin...
Redraw issue objective-c
CC BY-SA 2.5
null
2010-11-14T02:02:36.280
2010-11-14T02:08:06.677
null
null
220,935
[ "objective-c", "cocoa" ]
4,175,828
1
4,177,233
null
1
486
I have a ListBox with custom styles applied. It seems sometimes, when I select a color then another (didn't press Ctrl/Shift) it seems like 2 items are selected, sometimes even more ![alt text](https://i.stack.imgur.com/eVsPc.jpg) Whats with this rendering? My XAML looks like ``` <ListBox ItemsSource="{Binding Theme...
WPF: More than 1 items rendered as Selected in a ListBox?
CC BY-SA 2.5
null
2010-11-14T02:03:34.087
2012-10-01T15:39:03.583
2010-11-14T14:07:40.970
292,291
292,291
[ "wpf", "templates", "listbox", "styles" ]
4,176,283
1
4,177,142
null
3
1,006
![alt text](https://i.stack.imgur.com/acCF3.png) Why does the zoom control show like this? It only happens on QVGA resolution smulator. It works perfectly on HVGA resolution. This is the code that I used. ``` ZoomControls zoomControls = (ZoomControls) findViewById(R.id.zoomcontrols); zoomControls.setOnZoomInClic...
Android: Why is the zoom control like this?
CC BY-SA 2.5
null
2010-11-14T05:10:28.017
2010-11-14T10:43:20.927
null
null
481,239
[ "android", "maps", "zooming" ]
4,176,258
1
4,176,989
null
0
72
I need to find a way to implement some sort of "MessageCenter" where any control can register to receive messages from other controls, without knowing where those messages are coming from (or it can know, so long as it doesn't mean any extra work for me). After typing out this whole thing, I think I've helped myself c...
WPF - Disjointed Controls Need to Communicate
CC BY-SA 2.5
null
2010-11-14T05:00:04.140
2011-09-28T00:38:43.670
null
null
177,547
[ "wpf", "events", "communication", "messaging" ]
4,176,468
1
4,179,282
null
4
939
I want to generate something like this - the alignment of the nodes is the important thing, not the angle of the edges: ``` +--------------+ | | +--------------+ | | V V +-----+ +-----+ <--- alignment at top | | | | | |->| | | | | | +-----+ | | | ...
Lining up multiple short nodes in parallel with a single tall node in GraphViz
CC BY-SA 2.5
0
2010-11-14T06:33:01.763
2010-11-14T22:50:20.030
null
null
3,712
[ "alignment", "graphviz", "dot" ]
4,176,500
1
4,176,537
null
0
386
![http://imgur.com/99X4x.jpg](https://i.stack.imgur.com/Z41ON.jpg) Above is a screenshot of what I'm trying to accomplish. I tried setting `height:100%`, but I get an "overflow" caused by having `margin-top:48px`, causing me to scroll down even though the content fits on 1 screen. Right now the content is only up to ...
Fill remaining area with color?
CC BY-SA 3.0
null
2010-11-14T06:50:19.647
2012-03-15T19:14:24.273
2011-12-07T23:19:49.310
84,042
159,685
[ "css" ]
4,177,574
1
4,178,372
null
17
28,847
I am creating a dashboard in WPF with a bunch of key performance indicators, each of which consists of three values. ![alt text](https://i.stack.imgur.com/J5K8j.png) Whenever the values change I would like the user control to blink for 5 seconds. I would like to make the background color of the control to switch the...
How to make a textblock blink in wpf?
CC BY-SA 2.5
0
2010-11-14T13:00:50.570
2013-01-10T10:53:59.610
null
null
1,768
[ "wpf", "animation" ]
4,177,562
1
4,177,663
null
1
725
I'm working on a ServerControl (SuperFish Menu). Below is my codes. Menu.cs ``` [AspNetHostingPermission(SecurityAction.Demand, Level = AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal)] [ParseChildren(true, "MenuItems")] [Pe...
Problem in creating a ServerControl in ASP.NET , C#?
CC BY-SA 2.5
0
2010-11-14T12:57:18.540
2010-11-20T11:11:41.443
null
null
191,647
[ "c#", "asp.net", "menu", "menuitem", "servercontrols" ]
4,177,898
1
null
null
0
1,700
I need jquery drop down button plugin, like this ![alt text][1] or ![alt text](https://i.stack.imgur.com/sruJd.jpg) thx)
jquery drop down button plugin - Somebody knows?
CC BY-SA 2.5
0
2010-11-14T14:22:26.053
2010-11-14T14:31:00.793
2010-11-14T14:31:00.793
266,644
266,644
[ "jquery-plugins", "drop-down-menu" ]
4,178,258
1
4,178,752
null
2
581
I have a blender model and below is a image of how my model renders when I load it into python. It looks like the normals are all messed up. I am using the correct normal for each vertex. I'm exporting them in the correct order. I test this in the blender console that the actual export file had the right data. I know...
OpenGL: Model doesn't look right when loaded in python
CC BY-SA 2.5
0
2010-11-14T15:53:52.237
2010-11-14T17:44:54.160
null
null
207,193
[ "python", "opengl", "pyglet" ]
4,178,400
1
4,186,560
null
1
8,297
![alt text](https://i.stack.imgur.com/3cWio.jpg) I have problem with creating border for an icon in JLabel. I have JPanel in which I set it into GridLayout. I added Jlabel on the JPanel. The size of the JLabel were according to the size of the icon. However when I tried to set the border on the icon, it created border...
Creating border around ImageIcon on a JLabel, not around the Jlabel
CC BY-SA 2.5
null
2010-11-14T16:24:46.557
2010-11-16T01:44:21.757
2010-11-15T18:23:37.380
21,234
80,796
[ "java", "swing", "border", "jlabel" ]
4,178,423
1
4,178,483
null
0
22,905
While trying to start the Tomcat 7 process, the following logging is reported and the service does not start. ``` [2014-02-03 11:31:57] [info] Commons Daemon procrun (1.0.10.0 32-bit) started [2014-02-03 11:31:57] [info] Running 'BOE120Tomcat7' Service... [2014-02-03 11:31:57] [info] Starting service... [2014-02-03...
Failed loading main org/apache/catalina/startup/Bootstrap class in tomcat 7
CC BY-SA 3.0
null
2010-11-14T16:30:01.420
2014-02-03T18:58:44.667
2014-02-03T18:58:44.667
684,966
444,668
[ "tomcat", "tomcat7" ]
4,178,636
1
4,201,877
null
3
5,383
I have tweets and commenting system like this ![alt text](https://i.stack.imgur.com/cLlCC.png) This is the code block for one set of tweet and its comments and commenting box: ``` <li class="storyBlock"> <div> <div class="grid userImageBlockL"> <div class="imgMedium"> <a href="/bakasura1/users/harshamv">...
Facebook Style Comment Box
CC BY-SA 2.5
0
2010-11-14T17:18:50.690
2017-02-17T11:50:22.497
2010-11-14T18:00:36.093
229,044
155,196
[ "facebook", "forms", "jquery", "twitter" ]
4,179,069
1
4,179,965
null
11
7,569
Is there any way to draw a line using javascript and the canvas with "better" antialiasing, like Flash does? I know the Math.floor(coord)+0.5 trick to get an exactly 1 pixel line when you need it, but that's not what I mean. The following blue lines drawed using canvas look _ugly in supporting html5 and cavas, so the...
Drawing GOOD LOOKING (like in Flash) lines on canvas (HTML5) - possible?
CC BY-SA 2.5
0
2010-11-14T18:56:23.207
2010-11-14T22:04:23.287
2010-11-14T21:45:51.920
507,537
507,537
[ "javascript", "html", "canvas", "drawing" ]
4,179,910
1
4,180,745
null
7
4,159
How do you make a gtk.ToolButton disabled so that it is 'greyed out'? Like this: ![alt text](https://i.stack.imgur.com/XDObt.png) How do you make it enabled again?
How to enable/disable toolbar items?
CC BY-SA 2.5
null
2010-11-14T21:52:41.737
2010-11-15T01:25:50.413
null
null
477,933
[ "python", "gtk", "pygtk", "toolbar" ]
4,180,115
1
4,180,414
null
6
23,780
Netbean 6.9 generated the following JPA entity class from this SQL Server 2008 table: ![alt text](https://i.stack.imgur.com/Fnxer.jpg) I want to get all the ProductDescriptors that have a specific SKU value. Something like this: ``` SELECT * FROM ProductDescriptors WHERE SKU='something' ``` Given the entity class,...
JPA: query to get results based on value of foreign key defined in the entity class?
CC BY-SA 2.5
0
2010-11-14T22:39:36.867
2010-11-14T23:44:36.313
null
null
3,401
[ "java", "jpa", "entity" ]
4,180,181
1
4,180,198
null
0
427
I am floating a couple divs inside a container div & the first div has a border on the right. It works correctly WITHOUT the border, but when I add the border it all messes up & the text inside the container on the right displays itself under the border from the other div. To show you what I mean here is a picture: !...
Using border-right with floats displays incorrectly
CC BY-SA 3.0
null
2010-11-14T22:55:01.630
2012-08-28T19:06:47.780
2012-08-28T19:06:47.780
5,640
472,501
[ "css", "css-float" ]
4,180,629
1
4,180,664
null
5
6,409
Hi all I have a collection of images that are similar to photos of car registration plates. I am wondering how to pre process the image before sending it to an OCR engine to determine the text. I would like to eventually be able to crop the input on only the white content of the registration plate. The actual image ...
ocr and image preprocessing techniques
CC BY-SA 2.5
0
2010-11-15T00:52:48.030
2010-11-15T01:03:52.483
null
null
180,487
[ "image", "image-processing", "ocr" ]
4,180,812
1
null
null
2
265
I have the following DB structure, and I need to create the relevant nHibernate Mapping files. The problem I am having is one-one, many-one and bag mappings. My current mapping data is also below, any help is appreciated to figure it out. ![alt text](https://i.stack.imgur.com/6CNDm.png) ``` <?xml version="1.0" enco...
Mapping DB structure to nHibernate mapping files
CC BY-SA 2.5
0
2010-11-15T01:39:38.343
2011-11-20T19:13:39.330
null
null
25,361
[ "nhibernate", "nhibernate-mapping" ]
4,180,824
1
4,180,844
null
4
19,444
I'm not sure where/how I specify this SQL Spatial Index hint on my query :- ``` SELECT Whatever FROM Table1 a INNER JOIN Table2 b ON a.Id = b.Id WHERE @SomeBoundingBox.STIntersects(b.SomeGeographyShape) = 1 ``` When I run the query, it's NOT using the Spatial Hint. Yes, I'm using the the latest version SQL Server ...
How can I specify this SQL Index Hint on my SQL Server 2008 query?
CC BY-SA 2.5
0
2010-11-15T01:42:58.063
2010-11-15T04:11:07.747
2020-06-20T09:12:55.060
-1
30,674
[ "sql", "sql-server-2008", "indexing", "spatial", "spatial-index" ]
4,180,851
1
4,180,860
null
0
162
please help: I have a data set need to be stored like tree, following is stucture, I am not sure how to store this, the letters are not comparable, this is just a hierarchic structure ![alt text](https://i.stack.imgur.com/81N92.jpg)
What data structure should I use for hierarchical data?
CC BY-SA 3.0
null
2010-11-15T01:50:20.643
2011-08-03T13:58:42.307
2011-08-03T13:58:42.307
864,339
376,753
[ "data-structures" ]
4,180,905
1
4,182,424
null
5
4,893
Given the following entity (some columns omitted from this long definition for brevity): ``` @Table(name = "Products") public class Products implements Serializable { private static final long serialVersionUID = 1L; @Id @Basic(optional = false) @Column(name = "SKU") private String sku; @Basic(o...
JPA: join table syntax
CC BY-SA 2.5
0
2010-11-15T02:07:18.177
2010-11-15T12:15:16.413
null
null
3,401
[ "java", "jpa" ]
4,181,001
1
4,181,040
null
2
2,679
I have Bloodshed Dev C++ 4.9.9.2. Every time I stop typing for a second this hint pops up and I can't see a thing what I'm typing! I have a feeling that it waits for a most unsuitable moment to pop up. Then it disappears in 2 secs, or, sometimes, whenever it wants. ![dev c plus plus hint tooltip](https://i.stack.img...
How to disable hints in Dev C++?
CC BY-SA 2.5
null
2010-11-15T02:36:56.973
2011-12-18T05:55:35.720
null
null
420,376
[ "c++", "c", "dev-c++", "hints", "type-hinting" ]
4,181,029
1
4,181,702
null
5
5,470
I'm subclassing NSScroller to try to make it look similar to how "scrollbars" look on iOS. I want it to just be an overlay representing the current position that is drawn OVER what is under it. For whatever reason if I override drawRect for the scroller, I get the bounds filled with white. Is there any way to preven...
How to draw a transparent NSScroller
CC BY-SA 2.5
0
2010-11-15T02:44:21.217
2021-05-30T01:15:02.963
2010-11-16T05:09:00.497
95,636
95,636
[ "objective-c", "cocoa", "nsview", "nsscroller" ]
4,181,241
1
4,181,383
null
1
63
![alt text](https://i.stack.imgur.com/ceEeo.png) Hi!I have used UIBarButton Image but i have got such kind of issue.i mean Image+button on backside.for that i have written code below. UIBarButtonItem *btnMap = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"mapbutton.png"] style:UIBarButtonItemStylePlain...
why I have got such kind of BarButton one upon other?
CC BY-SA 2.5
0
2010-11-15T03:44:29.407
2010-11-15T04:24:42.127
null
null
198,680
[ "ios4", "uibarbuttonitem" ]
4,181,607
1
null
null
0
212
I am using the demo code from [https://github.com/bengottlieb/Twitter-OAuth-iPhone](https://github.com/bengottlieb/Twitter-OAuth-iPhone) When i build the demo code on iphone 3.0 it gives the 18 errors ![alt text](https://i.stack.imgur.com/NR3Kl.png) It works on iphone 4.0 How can i solve these errors on iphone 3....
Twitter OAuth api on iphone 3.0?
CC BY-SA 2.5
null
2010-11-15T05:19:37.427
2010-11-15T15:01:02.387
null
null
446,029
[ "iphone", "twitter" ]
4,181,898
1
null
null
0
1,781
![alt text](https://i.stack.imgur.com/mdRYj.png) Dear all, Actaully i am a admin user.i am trying to create a test user account for in app purchases... when i log into the iOS Provisioning portal, i cant able to create test users. also refer the screenshot i attched.in that it is mentioned that "Manage Your In App Pu...
Help on creating test users on iTunes Connect Portal
CC BY-SA 2.5
null
2010-11-15T06:16:48.503
2011-03-26T22:31:55.057
2010-11-15T06:44:19.867
352,627
352,627
[ "iphone", "iphone-sdk-3.0" ]
4,181,984
1
null
null
0
502
If I am making a page using only the DIV elements - how would I go about aligning it to something shown in the picture below? What is the best approach (besides trial and error :) I am not experienced in css and if you answer contains usage of this please provide brief explanation. ![alt text](https://i.stack.imgur....
Formatting Divs for MVC - how to?
CC BY-SA 2.5
null
2010-11-15T06:35:05.823
2010-11-15T18:38:28.890
null
null
247,184
[ "asp.net", "asp.net-mvc-2", "html" ]
4,182,592
1
4,182,791
null
3
2,909
I am building a simple site with extJS. I can successfully attach click events from JQuery and from within extJS but only to elements which I create in the HTML in the body tag itself. However, events that I attach to extJS-generated elements either have no effect or cause the extJS site not to be generated. For exa...
How can I get JQuery/Javascript access to elements generated by extJS?
CC BY-SA 2.5
0
2010-11-15T08:25:26.357
2010-12-15T11:27:43.880
2010-12-15T11:27:43.880
114,251
4,639
[ "javascript", "jquery", "events", "extjs", "event-handling" ]
4,183,287
1
null
null
0
320
I want my tooltip to include a an active url link. Would it be possible in a MapView? Or do i have to place my MapView inside a WebView for this purpose? Any tutorial on the web? Any solution? Here is something i require: ![alt text](https://i.stack.imgur.com/d1eF1.jpg)
Is it possible to have an active url in a tooltip in Google Map in Android
CC BY-SA 2.5
null
2010-11-15T10:07:42.843
2010-11-16T05:59:08.920
2010-11-15T11:13:27.833
2,355,649
2,355,649
[ "android" ]
4,183,854
1
null
null
2
2,610
How can i make widgets overlap one another. Lower most should be image, rest above can be other widgets like buttons. ![alt text](https://i.stack.imgur.com/5eCXl.png)
overlapping widgets gtk
CC BY-SA 2.5
0
2010-11-15T11:24:20.187
2010-11-15T12:46:06.487
null
null
276,989
[ "gtk" ]
4,184,141
1
4,184,341
null
4
1,480
I've got a small clipping problem that I haven't been able to solve using an EditText view in a TableRow. Whatever I try, the EditText view is either clipped (attached screenshot), or, if I set shrinkColumns to either 0 or 1, the label text disappears (and the EditText view takes up the whole width). The layout is as f...
Android text clipping problem with EditView inside a TableLayout
CC BY-SA 2.5
0
2010-11-15T12:06:31.843
2010-11-15T12:35:23.637
null
null
249,893
[ "android", "text", "tablelayout", "clipping" ]
4,184,315
1
null
null
5
10,088
How can i customize gtk window title bar. I need to add custom buttons, and title bar image.![alt text](https://i.stack.imgur.com/TJZ6r.png)
customizing gtk window title bar
CC BY-SA 2.5
0
2010-11-15T12:29:23.393
2021-03-13T17:06:26.117
2010-11-15T13:00:54.903
276,989
276,989
[ "gtk" ]
4,184,323
1
4,184,339
null
2
1,778
I'm really pulling my hair out, this must be a simple problem, but I just can't see it. I'm just trying to assign a value to a variable from a text field. In my h file I have ``` NSString *currentPass; @property (nonatomic, retain) NSString *currentPass; ``` My m file. ``` @synthesize currentPass; - (void)alert...
NSString out of scope problem?
CC BY-SA 2.5
0
2010-11-15T12:30:58.497
2010-11-15T14:46:44.227
null
null
450,456
[ "iphone", "objective-c", "xcode" ]
4,184,605
1
4,185,141
null
4
2,009
Notice in Xcode's symbols list (the NSPopUpButton directly above the editor, to the right of the recently edited documents), it shows `<No selected symbol>` when you're out of scope of any symbols it lists, but then when you click on it that option is not there. Is there a trick to making this "placeholder" magic happ...
NSPopUpButton placeholder value?
CC BY-SA 2.5
0
2010-11-15T13:04:01.970
2010-11-15T15:34:25.100
null
null
322,122
[ "objective-c", "cocoa", "macos", "nspopupbutton" ]
4,184,627
1
6,317,146
null
0
6,739
I have a dataset which counts the number of produced pallets per hour, eg 11/11/2010 22:00 --> 22 11/11/2010 23:00 --> 12 11/12/2010 00:00 --> 18 11/12/2010 01:00 --> 19 11/12/2010 03:00 --> 20 As you may notice, there is a gap between 01:00 and 03:00 since there is no data for that hour. This data gets visual...
SSRS line graph: x-axis time-scale with gaps in data
CC BY-SA 2.5
null
2010-11-15T13:06:27.673
2011-06-11T16:35:52.453
2010-11-16T11:10:27.037
null
508,251
[ "reporting-services", "axis", "scalar" ]
4,184,837
1
null
null
2
129
I used to be able to click on a StyleCop warning and select a "Show Help Menu" which would show me more info about the warning. Can anyone suggest why I am not seeing it now? ![alt text](https://i.stack.imgur.com/Xi0iP.png)D:\Users\UserName\Documents\Visual Studio 2010\Templates\ProjectTemplates\Visual C#
StyleCop no longer shows "Show Help" context sensitive menu
CC BY-SA 2.5
null
2010-11-15T13:31:21.723
2011-03-03T13:40:16.853
2010-11-15T13:34:14.970
40,347
493,669
[ "visual-studio", "stylecop" ]
4,185,267
1
null
null
1
661
I have a BubbleSeries within a Chart. I bind data to the BubbleSeries and set a specific color to the bubbles. What I want to do is to iterate over all the bubbles and set each bubble's color to specific color depending on the value. My bubbles, two series: ![alt text](https://i.stack.imgur.com/QSQ41.png) The gray b...
WPF BubbleSeries, iterate over the bubbles and set the style
CC BY-SA 2.5
null
2010-11-15T14:27:47.140
2010-11-16T12:15:31.207
null
null
452,861
[ "c#", "wpf", "wpftoolkit" ]
4,185,304
1
null
null
0
620
I'm trying to make selectable NSToolbarItems. I've connected everything correctly in IB, but `toolbarSelectableItemIdentifiers:` is not working. It doesn't get called. The delegate is the File's Owner (subclass of NSWindowController), and the toolbar is in a sheet. Here's my code: ``` // TOOLBAR DLGT - (NSArray *)toolb...
toolbarSelectableItemIdentifiers: is not called
CC BY-SA 2.5
null
2010-11-15T14:32:16.280
2010-11-15T20:53:34.093
2020-06-20T09:12:55.060
-1
null
[ "objective-c", "cocoa", "delegates", "nstoolbar", "nstoolbaritem" ]
4,185,426
1
4,185,446
null
2
93
I have the following entities ![alt text](https://i.stack.imgur.com/RKxkO.png) AddressType is simply an enum field that define if the Email is Personal/Work/Other. Is it possible to do a query that returns a flattened result like the one in the following sample? ``` CustomerID Full Name Personal Email ...
Join query with flattened result
CC BY-SA 2.5
null
2010-11-15T14:43:27.677
2010-11-15T14:59:54.203
null
null
431,537
[ "sql-server-2008" ]
4,185,532
1
4,210,476
null
2
17,641
I am discovering Pentaho DI and i am stuck with this problem : I want to insert data from a csv file to a custom DB, which does not support the "insert table" step. So i would like to use the sql script step, with one request : ``` INSERT INTO myTable SELECT * FROM myInput ``` And my transformation would like th...
Pentaho kettle : how to execute "insert into ... select from" with the sql script step?
CC BY-SA 2.5
0
2010-11-15T14:55:00.080
2013-12-05T06:50:12.753
null
null
204,682
[ "pentaho", "kettle" ]
4,185,838
1
4,191,004
null
2
3,446
Hello awesome dev community. I have looked for an answer to this for days now and just can't seem to find a handle, so decided to post Q myself. I have a game that has menus for picking items. The menus can have 2 -> 30+ items, so they need to scroll. There are also category menus, which when an item is clicked, a new...
Cocos2d: Calling function from one CCLayer in another (parent?) CCLayer
CC BY-SA 2.5
0
2010-11-15T15:23:34.773
2010-11-16T03:36:48.850
null
null
359,984
[ "function", "cocos2d-iphone", "cclayer" ]
4,186,053
1
8,631,922
null
23
11,131
We are using and with the . We use the for the like the query. The problem is when we move to sprint 2 the "Current Sprint" still points to sprint 1. Is there a way to to tell TFS that we are now currently in sprint 2 and have the queries use a variable to run against instead of hard-coding the sprint? For exa...
How to update current sprint team queries in TFS 2010?
CC BY-SA 2.5
0
2010-11-15T15:46:59.600
2018-03-02T19:57:26.947
2011-12-26T19:58:21.307
422,565
49,215
[ "tfs", "scrum", "tfs-process-template" ]
4,186,188
1
4,188,300
null
1
135
I've created this contrived example to illustrate my problem. There are two paragraphs with a div in between. The div's height and line-height have been set to 0 and all margins are also 0. I would expect for the two paragraphs to be right next to each other without any spacing from the div at all, however this is n...
IE6 renders spacing even when margin and padding are zero
CC BY-SA 2.5
null
2010-11-15T16:00:40.790
2010-11-15T20:01:08.207
null
null
1,247
[ "css", "whitespace", "internet-explorer-6" ]
4,186,282
1
4,186,318
null
3
6,525
I have read through [Scott Hanselman's post](http://www.hanselman.com/blog/SplittingDateTimeUnitTestingASPNETMVCCustomModelBinders.aspx) on this topic. I found [another article](http://devblog.lundy.us/2010/09/28/date-time-picker-asp-net-mvc-jquery-part-1/) that seems to be a simpler approach. The second of which I dec...
Split DateTime to Date and Time in ASP.NET MVC
CC BY-SA 2.5
null
2010-11-15T16:09:24.987
2010-11-15T16:20:24.673
null
null
2,535
[ "asp.net-mvc", "datetime", "mvc-editor-templates" ]
4,186,360
1
4,186,405
null
2
557
I am facing a weird problem with a text field on my page. This HTML structure is generated by some Java code (which is very cluttered and written years back). The problem I am facing is, when I click on the text field (Highlighted in the snapshot), the cursor positions itself on the second field instead of the very fir...
Initial HTML text field cursor position
CC BY-SA 2.5
null
2010-11-15T16:16:04.220
2010-11-15T16:23:09.700
2010-11-15T16:23:09.700
157,247
449,035
[ "java", "html", "css", "jsp" ]
4,186,520
1
4,188,972
null
2
1,947
I've got a WinForm application with separate groupboxes and objects, but the code isn't sorted by groupbox and pretty messed up. Can the code be split in 2 files or something with the objects on the same place? EDIT: this is my code: ![alt text](https://i.stack.imgur.com/48zXY.png) how should i split it? (i need ...
Separate code in single Form [C#]
CC BY-SA 3.0
null
2010-11-15T16:29:20.813
2014-09-20T11:08:12.503
2014-09-20T11:08:12.503
759,866
508,081
[ "c#", "winforms" ]
4,186,650
1
4,186,690
null
0
191
Here is the relevant HTML: ``` <div class="row"> <div class="arrow box">&#9668;</div>Month Year<div class="dayMonth box"></div>&#9658;<div class="arrow box"></div> </div> ``` Here is the css which the .html file that the above HTML is in links to: ``` * { margin: 0; padding: 0; } body { ...
Setting the width of HTML div's with %'s
CC BY-SA 3.0
null
2010-11-15T16:40:16.170
2015-01-03T21:43:37.473
2015-01-03T21:43:37.473
2,065,702
282,315
[ "html", "css", "margins" ]
4,186,807
1
4,186,856
null
2
899
I am making a program with graphics.h in C.I am trying to implement the matrix screen saver but I am stuck here in the code.The alphabets fall just once.I want them to keep on falling (removing the text before).Please guide me how to clear the old contents ``` void main_page(void) { int i,j,k,l,m,n,size; set...
matrix sort of graphics in C
CC BY-SA 2.5
null
2010-11-15T16:55:31.287
2022-04-06T20:56:02.007
2022-04-06T20:56:02.007
44,729
null
[ "c", "bgi" ]
4,186,953
1
4,187,883
null
4
1,455
How can I implement in my own custom windows control library like below? ![alt text](https://i.stack.imgur.com/wbFfC.jpg)
Custom Windows Control library in C#
CC BY-SA 2.5
0
2010-11-15T17:10:17.653
2011-09-11T03:39:19.403
2010-11-15T17:13:58.357
47,550
395,703
[ "c#", "custom-controls" ]
4,187,031
1
4,187,055
null
0
3,832
I want to create a PDF reader like iBooks. So that you can see the thumbnails for the pages, press on it and it opens the page etcetera. Also the bookshelf for showing the loaded PDF's Does anyone know how I can create something like that? Is there a library or does somebody knows a good tutorial? Thanks in advance! ...
PDF Reader like iBooks
CC BY-SA 2.5
0
2010-11-15T17:19:20.860
2012-02-08T17:20:47.500
2010-11-15T17:41:15.733
387,556
387,556
[ "iphone", "xcode", "ios4", "ipad" ]
4,187,498
1
null
null
4
47,489
I'm trying to make a simple alphabetical list to order items in my database. The thing I can't figure out is how to actually list it. I would like it to be the same format as you have on miniclip.com Here's an image ![alt text](https://i.stack.imgur.com/JYk8u.png) I looked around, but couldnt find an answer really...
PHP Order in alphabetical order
CC BY-SA 2.5
0
2010-11-15T18:14:18.950
2015-10-13T06:35:33.510
null
null
460,033
[ "php", "list" ]
4,187,695
1
4,187,755
null
3
1,558
How can I create an interface similar like the following in Java (tweetie)? ![alt text](https://i.stack.imgur.com/M7mHo.png) I was thinking of using a JTable with one columns and customized cell that has an image in it...not sure how to do it though.
creating a table interface in java
CC BY-SA 2.5
null
2010-11-15T18:43:22.097
2010-11-18T17:55:25.253
2010-11-18T17:55:25.253
2,598
95,265
[ "java", "swing", "user-interface", "jtable" ]
4,187,840
1
4,208,442
null
0
3,953
I have a chart in Report Builder 2.0 with multiple series values (the fields added to the box along the top side of the chart) and no series fields (box on right side of chart) or category fields (box along bottom side of chart). The different values belong to different categories but there is no one field that splits...
chart in Report Builder 2.0 does not show all Category Fields in x-axis
CC BY-SA 2.5
null
2010-11-15T19:03:42.640
2010-11-17T19:42:42.610
null
null
38,743
[ "reporting-services", "charts", "ssrs-2008", "reportbuilder" ]
4,188,482
1
4,188,574
null
2
1,448
![alt text](https://i.stack.imgur.com/2ty20.png) Is there any module that could aid me in producing something like this?
Plotting 3D scatter with python?
CC BY-SA 3.0
null
2010-11-15T20:26:20.083
2019-08-07T15:33:23.343
2013-10-19T15:35:39.123
1,207,193
433,417
[ "python", "3d" ]
4,188,741
1
4,253,371
null
0
1,240
I have a portal in my contacts table layout that shows related mention in a second "mentions" table. This related table has a relationship to a third "sources" table that I want the user to select from when they view the data in the "mentions" portal of my "contacts" layout. This works for the most part. The problem co...
FileMaker Pro pop up values from related table
CC BY-SA 2.5
null
2010-11-15T20:57:12.377
2011-09-29T13:02:18.223
2010-11-18T13:54:06.397
234,670
234,670
[ "portal", "filemaker" ]
4,188,859
1
4,188,880
null
61
55,874
I want to put a button next to a EditText and I want their heights to match. For example, from the built in Android browser: ![alt text](https://i.stack.imgur.com/l9lk9.png) The Go button is the same height as the EditText field. I know I could wrap both these views in a parent layout view, and set both of their h...
How to get a button's height to match another element's height?
CC BY-SA 2.5
0
2010-11-15T21:13:07.577
2020-06-10T10:06:36.460
null
null
445,348
[ "android", "layout", "height", "match" ]
4,189,234
1
4,217,726
null
5
691
I want to draw a variable number of equidistant points on a HTML5 canvas element, using JavaScript. How do I calculate the X/Y position of each point? I want the distance from one point to its direct neighbours and to the edges of the canvas to be the same. If I had an 8px x 8px canvas and 4 points, the distace from...
Equidistant points on canvas
CC BY-SA 2.5
0
2010-11-15T21:58:45.460
2010-11-18T17:27:07.007
2010-11-15T22:53:15.850
229,189
229,189
[ "javascript", "math", "html", "canvas" ]
4,189,393
1
4,192,088
null
1
669
I'm trying to rehost the designer, but every time I slap a workflow into the designer: ``` _workflowDesigner = new WorkflowDesigner(); // added to UI here Properties.Content = _workflowDesigner.PropertyInspectorView; _workflowDesigner.Load(myWorkflowInstance); ``` where `myWorkflowInstance` is a workflow defined in ...
Activities are always collapsed in rehosted designer
CC BY-SA 2.5
0
2010-11-15T22:17:08.380
2010-11-17T11:37:51.807
2010-11-15T22:40:58.373
null
null
[ "android-activity", "designer", "workflow-foundation-4", "rehosting" ]
4,189,736
1
5,087,427
null
5
4,347
I have this problem that a week ago, when debugging, suddently the "Locals" window is blank, the "Immediate Window" and Watches don't work and all return "Unable to evaluate the expression." Also the standard debugger display stopped giving me any info when I break the execution to check out stuff :-( ![alt text](htt...
Visual Studio 2010: suddently Locals, Immediate Window and Watches don't work
CC BY-SA 2.5
0
2010-11-15T23:03:48.263
2011-05-05T04:54:48.623
null
null
454,714
[ "debugging", "visual-studio-2010", "immediate-window" ]
4,190,128
1
4,190,216
null
5
310
### Updates : 3 updates added below The following sql statement takes 5 mins to complete. I. Just. Don't. Get. It :( First table has 6861534 rows in it. Second table has a little bit less .. and third table (which contains 4 GEOGRAPHY FIELDS) has the same as the first. Those `GEOGRAPHY` fields in the 3rd table .. ...
Why does this Sql Statement (with 2 table joins) takes 5 mins to complete?
CC BY-SA 2.5
0
2010-11-16T00:19:12.397
2011-05-11T10:30:52.490
2011-05-11T10:30:52.490
440,502
30,674
[ "sql", "sql-server", "performance", "sql-server-2008" ]
4,190,405
1
4,190,427
null
0
233
In the interest of eliminating as many nested queries as possible, I'm trying to optimize the following query: ``` SELECT fp.id, fp.user_id, COUNT(c.id) AS num_replies, c2.created AS latest_activity_time, c2.user_id AS latest_activity_user_id FROM forum_posts fp LEFT JOIN comments...
Reading most recent values in a join without performing a nested SELECT
CC BY-SA 2.5
null
2010-11-16T01:22:15.770
2010-11-16T19:00:36.533
2010-11-16T01:43:30.807
385,950
385,950
[ "sql", "mysql", "join", "greatest-n-per-group", "subquery" ]
4,190,457
1
4,982,228
null
0
951
Given a collection of Word objects, I want to display a scrollable tag cloud similar to what is shown below. My Word class has properties for Name and Rank from which I will determine sorting and weighting of the fonts. Each word should be a selectable object (for invoking some event). Since the collection can contai...
Ideas for programming a scrolling tag cloud on iPhone?
CC BY-SA 2.5
0
2010-11-16T01:35:49.197
2011-02-13T03:34:31.757
2010-11-16T01:49:29.350
413,631
413,631
[ "iphone", "objective-c", "tag-cloud" ]
4,190,506
1
4,190,547
null
2
4,599
I have a difference of time execution between a 1-minute query and the same one in a table-valued function. But the most weired thing is that running the UDF with another (valid) company_id argument gives me a result in ~40 seconds and as soon as I change this company_id for 12 (valid again), it never stops. and of...
SQL Server 2005 Table-valued Function weird performance
CC BY-SA 2.5
null
2010-11-16T01:47:07.467
2010-11-16T18:43:04.367
2010-11-16T18:43:04.367
24,995
303,726
[ "sql", "sql-server", "sql-server-2005", "tsql", "user-defined-functions" ]
4,191,195
1
4,191,391
null
1
13,782
How can I create below type of gridview with merge merged header columns? If anybody have example share with me. ![alt text](https://i.stack.imgur.com/LqC9E.jpg) Thanks in advance.
Merge Merger header columns in gridview?
CC BY-SA 2.5
0
2010-11-16T04:21:11.987
2016-06-19T15:21:21.697
null
null
158,008
[ "c#", "asp.net" ]
4,191,262
1
4,191,332
null
3
30,006
I want to set header column width for grid view. I tried `HeaderStyle-Width="30px"`. But it is depending on Item columns. The column width is setting based on item value. But I want fixed width even if it has value or empty. ![alt text](https://i.stack.imgur.com/xosnv.jpg)
Fixed header column width in gridview?
CC BY-SA 2.5
0
2010-11-16T04:34:43.533
2019-12-18T07:41:40.140
null
null
158,008
[ "c#", "asp.net", "vb.net" ]
4,191,400
1
4,192,365
null
1
303
I'm guessing it is using a custom `NSWindow, NSTextField, NSSecureTextField, NSButton`? I don't necessarily want to replicate it, I would just like to know what would be involved in customizing my app's UI to this level. ![alt text](https://i.stack.imgur.com/juLM7.png)
Cocoa / Interface Builder: What do I need to subclass to replicate this window?
CC BY-SA 2.5
null
2010-11-16T05:14:35.240
2010-11-16T08:44:19.100
null
null
435,405
[ "objective-c", "cocoa", "interface-builder", "customization", "nswindow" ]
4,191,437
1
null
null
0
2,337
I have created two gtkmm button and added to HBox object. I called pack_end, and maintained the size as 21,20. But, the sizes are not maintained. Here is the code i have written and the window that i got while running the program. ![alt text](https://i.stack.imgur.com/Kretk.png) Note: MYWindow is subclass of Gtk::Win...
gtkmm button not maintaining size and location
CC BY-SA 2.5
null
2010-11-16T05:23:58.293
2013-07-15T03:04:16.837
2010-11-16T05:32:44.503
276,989
276,989
[ "gtk" ]
4,191,674
1
4,205,685
null
13
964
I'm working on a piece of software which needs to implement the wiggliness of a set of data. Here's a sample of the input I would receive, merged with the lightness plot of each vertical pixel strip: ![alt text](https://i.stack.imgur.com/coUW6.jpg) It is easy to see that the left margin is wiggly (i.e. has a ton of m...
Determine "wiggliness" of set of data - Python
CC BY-SA 2.5
0
2010-11-16T06:23:36.307
2010-11-17T18:26:23.650
2010-11-17T18:26:23.650
478,206
464,744
[ "python", "list", "statistics", "frequency-analysis", "frequency-distribution" ]
4,191,905
1
4,191,916
null
1
80
I'm using selenium-rc with php. I want to show in my test the value of CLASSNAME. How can i present the var? I tried to do `$this['drivers']['CLASSNAME']` but this is not working for me. ![alt text](https://i.stack.imgur.com/EoDqb.png) (This is from the debug) Thank you!
How to access var in PHP
CC BY-SA 2.5
null
2010-11-16T07:08:14.073
2010-11-16T07:10:15.587
null
null
429,248
[ "php", "selenium-rc" ]
4,191,902
1
4,235,189
null
0
4,233
I have a vertically oriented `LinearLayout` that has a child `LinearLayout` that includes a `TextView`, an `EditText`, and a `Button`, and a child `ImageView`. So something like: ``` <LinearLayout> <LinearLayout> <TextView> <EditText> <Button> <ImageView> ``` And the problem I am exp...
Removing ImageView border
CC BY-SA 2.5
0
2010-11-16T07:07:46.653
2010-11-20T21:50:11.677
2010-11-16T15:31:19.267
487,840
487,840
[ "android", "imageview", "android-linearlayout" ]
4,192,863
1
4,192,886
null
3
255
Ok, so I want to have the characters from below in my html page. Seems easy, except I can't find the HTML encoding for them. ![alt text](https://i.stack.imgur.com/OqkTM.jpg) Note: I would like to do this without having sized elements, plain ol' text would be fine ^_^. Cheers.
Special HTML Characters
CC BY-SA 2.5
null
2010-11-16T09:52:56.513
2010-11-16T10:00:32.570
null
null
285,178
[ "html", "character-encoding" ]
4,193,158
1
4,193,740
null
4
7,689
I am working through [this extJS tutorial](http://www.sencha.com/learn/Tutorial:Playing_With_Ext_The_Easy_Way) where you type in code into Firebug, press CTRL-Enter and it renders it for you, it worked for the simple example but then I got this error: ## Instructions: ![alt text](https://i.stack.imgur.com/F3J4J.pn...
Why does extJS give me "Ext.Panel is not a constructor" error in Firebug?
CC BY-SA 2.5
null
2010-11-16T10:28:07.377
2013-05-03T14:32:30.820
null
null
4,639
[ "extjs" ]
4,193,493
1
null
null
19
3,304
Ok this is kind of a weird issue and I am hoping someone can shed some light. I have the following code: ``` static void Main(string[] args) { try { Console.WriteLine("in try"); throw new EncoderFallbackException(); } catch (Exception) { Console.WriteLine("in Catch"); ...
Finally Block Not Running?
CC BY-SA 2.5
0
2010-11-16T11:07:52.863
2010-11-16T20:55:38.037
2010-11-16T13:22:01.373
406,784
406,784
[ "c#", "exception", "c#-4.0" ]
4,193,643
1
4,193,697
null
1
4,506
When I execute the following extJS code, it shows me "undefined" instead of the text that I want to insert into the div. ![alt text](https://i.stack.imgur.com/VEPkB.png) ## result ![alt text](https://i.stack.imgur.com/lDRaf.png) ``` <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/...
Why does insertHTML('text') render as "undefined"?
CC BY-SA 2.5
null
2010-11-16T11:28:11.340
2010-11-17T09:00:30.610
2010-11-16T11:46:22.517
4,639
4,639
[ "extjs" ]
4,193,870
1
4,194,159
null
5
440
at the top of my template workflow I put a ReceiveRequest / SendReply block where I'd like to perform synchronous operations, enabling then the user client to receive a timely response of the workflow being started. Client knows about the status of the current request with status of an entry on my application databas...
Behaviour of SendResponse in WF4
CC BY-SA 2.5
0
2010-11-16T11:59:40.140
2010-11-16T12:36:10.240
null
null
201,116
[ "xaml", "workflow", "workflow-foundation-4", "xamlx" ]
4,193,912
1
null
null
0
348
![alt text](https://i.stack.imgur.com/bDZ5v.gif) a.why is there so many wait states in the in the vms/vax process states ?
homework questions from stallings book
CC BY-SA 2.5
null
2010-11-16T12:04:18.620
2010-11-16T15:45:39.173
null
null
327,249
[ "process", "operating-system", "vax" ]
4,193,968
1
4,194,052
null
0
622
Greetings! I'm attempting to build an iPhone application that makes use of an iOS4-only function: 'UIGraphicsBeginImageContextWithOptions'. I'm building for iPhone device 3.1.3 in XCode 3.2.1 and getting errors about that function not being defined. [This stackoverflow page](https://stackoverflow.com/questions/36070...
UIGraphicsBeginImageContextWithOptions undeclared
CC BY-SA 2.5
null
2010-11-16T12:10:16.733
2010-11-16T12:21:01.877
2017-05-23T12:13:41.910
-1
51,133
[ "iphone" ]