Id
int64
1.68k
75.6M
PostTypeId
int64
1
2
AcceptedAnswerId
int64
1.7k
75.6M
ParentId
int64
1.68k
75.6M
Score
int64
-60
3.16k
ViewCount
int64
8
2.68M
Body
stringlengths
1
41.1k
Title
stringlengths
14
150
ContentLicense
stringclasses
3 values
FavoriteCount
int64
0
1
CreationDate
stringlengths
23
23
LastActivityDate
stringlengths
23
23
LastEditDate
stringlengths
23
23
LastEditorUserId
int64
-1
21.3M
OwnerUserId
int64
1
21.3M
Tags
list
3,832,209
1
3,969,649
null
3
1,490
I have done the authorisation step of [LinkedIn-iphone API](http://github.com/ResultsDirect/LinkedIn-iPhone), and the app comes to the screenshot: --- ![where to use the LinkedIn PIN](https://i.stack.imgur.com/o4jEu.png) But the 'close' button does not respond, and no where to use the authorised PIN. Because i...
cannot confirm after passing the LinkedIn API authorisation on iPhone App
CC BY-SA 2.5
0
2010-09-30T15:36:27.223
2011-01-12T02:24:20.033
null
null
312,938
[ "objective-c", "api", "oauth", "linkedin" ]
3,832,725
1
null
null
14
26,275
How do I add a text description for my property? ![alt text](https://i.stack.imgur.com/fDunB.jpg) My code : ``` private bool _SpaceKey; public bool SpaceKey { get { return _SpaceKey; } set { _SpaceKey = value; } } ```
Add a description for a property
CC BY-SA 2.5
0
2010-09-30T16:28:43.217
2018-10-18T05:00:28.157
2010-09-30T16:56:58.883
76,217
461,057
[ "c#" ]
3,832,773
1
3,832,879
null
2
251
I have trouble in my linq application. I have , and tables. In 1 query i want to load orders and dependent tables. I use Linq. ``` return from p in _db.dbOrders select new Order { ID = p.ID, OrderStatusChangelog = new List<OrderStatusChangelog>( GetOrderStatusChangelog().Where(x => x.OrderID == p.ID)), Items ...
Linq query problem (too many ado.net request)
CC BY-SA 2.5
0
2010-09-30T16:33:15.020
2010-09-30T16:48:54.120
2010-09-30T16:44:16.053
29,407
322,706
[ "c#", "linq" ]
3,832,809
1
3,833,007
null
23
53,386
Is it possible to change only the color of a single bar in a graph made by matplotlib? ![alt text](https://i.stack.imgur.com/HmFtg.png) Let's say I've evaluation 1 to 10 and for each one I've a graph generate when the user choice the evaluation. For each evaluation one of this boys will win. So for each graph, I would ...
How to change the color of a single bar if condition is True
CC BY-SA 4.0
0
2010-09-30T16:39:28.153
2022-09-08T17:38:05.167
2022-09-08T17:38:05.167
7,758,804
426,176
[ "python", "matplotlib" ]
3,832,852
1
3,832,894
null
1
1,194
My question centers on some Parallel.ForEach code that used to work without fail, and now that our database has grown to 5 times as large, it breaks almost regularly. ``` Parallel.ForEach<Stock_ListAllResult>( lbStockList.SelectedItems.Cast<Stock_ListAllResult>(), SelectedStock => { ComputeTipDown( SelectedStock.S...
Parallel.ForEach throws exception when processing extremely large sets of data
CC BY-SA 2.5
0
2010-09-30T16:46:20.293
2010-09-30T16:50:25.150
null
null
339,518
[ "sql-server", "multithreading", "parallel-processing", "linq-to-objects", "large-data-volumes" ]
3,832,893
1
null
null
22
14,118
I have the following hierarchy: `Activity` -> `PopupWindow` -> `CustomView` My the `PopupWindow` itself is a square, but transparent, so you can see the Activity sitting in the background. The `CustomView` is a circle embedded inside the PopupWindow. ![alt text](https://i.stack.imgur.com/zFutR.png) What I have achiev...
Android: delegate touch event to underlaying view
CC BY-SA 3.0
0
2010-09-30T16:50:23.203
2013-04-02T05:54:15.533
2013-04-02T05:54:15.533
421,372
184,367
[ "android", "events", "touch" ]
3,833,241
1
3,833,743
null
8
1,440
I was hoping to release my software with a trial period and I was wondering how I could show a link in the right side of my title bar telling them how long their trial will last similar to this: ![What Coda Does](https://i.stack.imgur.com/nkpHZ.png). Anyone have any suggestions?
Adding secondary text to window title bar in Cocoa?
CC BY-SA 3.0
0
2010-09-30T17:34:10.107
2012-09-08T16:49:12.363
2012-04-22T06:39:01.023
1,028,709
391,121
[ "cocoa", "titlebar" ]
3,833,580
1
null
null
2
1,929
I need to attach my database to SQL server 2008(I used it before without problem),but now when I want to attach db , sqlsrv sent me this error. error:`failed retrieve data for this request.` ![alt text](https://i.stack.imgur.com/VSqre.jpg) Why do I have this problem and how can I solve it?
error:failed retrieve data for this request
CC BY-SA 3.0
null
2010-09-30T18:18:25.883
2012-02-24T11:13:52.610
2012-02-24T11:13:52.610
867,232
431,281
[ "sql-server-2008" ]
3,833,654
1
3,900,860
null
10
3,093
I guess you have all tried "Google Places" in Maps. This is a list of POI close to you. I really would like to do the same feature in my application with a list of GPS coordinates, but that seem really complicated. Making the listview with the distance and the little arrow is very easy, but I cannot understand how to...
Android: compass + distance in a listview
CC BY-SA 2.5
0
2010-09-30T18:27:31.027
2013-06-24T08:38:08.857
2010-10-16T15:52:50.270
327,402
327,402
[ "java", "android", "listview", "gps", "distance" ]
3,833,746
1
3,833,834
null
0
202
I made a custom styled list in WPF: ``` <DataTemplate x:Key="SelectedTemplate"> <StackPanel Background="#FF4E4E4E" HorizontalAlignment="Stretch"> <TextBlock Text="{Binding Path=Title}" Foreground="#FFD80000" /> </StackPanel> </DataTemplate...
HorizontalContentAlignment of SelectedItem not stretching perfectly
CC BY-SA 2.5
null
2010-09-30T18:40:30.173
2010-09-30T18:51:24.617
null
null
140,367
[ "wpf", "styles" ]
3,833,939
1
3,834,028
null
0
228
![alt text](https://i.stack.imgur.com/wCx4Q.png) Right-most textview is causing some alignment issues. I'm not sure how I can alleviate this?
How can I improve the alignment of my TextView?
CC BY-SA 2.5
null
2010-09-30T19:04:00.767
2010-09-30T19:33:15.900
null
null
19,875
[ "android", "layout", "alignment", "textview" ]
3,834,112
1
3,834,137
null
3
5,732
I'm trying to find a function that would help me draw a line between 2 given GPS coordinates, and . I've tried the traditional Cartesian formula y=mx+b where m=(y2-y1)/(x2-x1), but GPS coordinates don't seem to behave that way. What would be a formula/algorithm that could help me achieve my goal. PS: I'm using Go...
Function for line between 2 GPS coordinates
CC BY-SA 2.5
null
2010-09-30T19:28:49.637
2010-10-11T14:29:37.243
2010-09-30T19:59:13.080
96,855
96,855
[ "google-maps", "dictionary", "gps" ]
3,834,209
1
null
null
0
591
I'm trying to put an Annotation the lower left corner of currently visible map region, although the following code ``` CLLocationCoordinate2D origin = getOriginOfRegion(mapView.region); [[[SimpleAnnotation alloc] initWithCoords:origin] autorelease]; ... extern CLLocationCoordinate2D getOriginOfRegion(MKCoordinateRegion...
Coordinates of bottom-left corner of a mapView off by a few pixels
CC BY-SA 2.5
null
2010-09-30T19:41:17.367
2010-09-30T20:00:17.023
2020-06-20T09:12:55.060
-1
40,431
[ "iphone", "ios4", "mapkit" ]
3,834,227
1
null
null
6
3,783
I want to create a speech balloon type shape, where there is a rectangle or ellipse with a triangular shape jutting out of it. How I'm attempting to do this is to create a Path object that combines the triangle with the other shape (round rect). I'm doing it as follows: ``` Path path = new Path(); // Create triangul...
Android: how to combine the paths of two shapes and remove overlap?
CC BY-SA 2.5
0
2010-09-30T19:43:26.257
2016-09-08T09:19:14.617
null
null
155,392
[ "android", "graphics", "path" ]
3,834,485
1
null
null
2
5,206
I'm running an application server which uses quite a bit of memory (there are quite a few users). It's running on an 18 GB EC2 instance. I pass these GC parameters to the VM: ``` -server -XX:GCTimeRatio=19 -Xmx12g -XX:+PrintGCDetails -XX:+PrintGCTimeStamps ``` The server works fine for awhile (as well as you'd expe...
Java GC: PSYoungGen grows by 4 GB after Full GC
CC BY-SA 2.5
null
2010-09-30T20:15:33.157
2012-04-28T03:12:54.520
2010-10-06T17:10:48.897
104,181
104,181
[ "java", "garbage-collection", "jvm", "java-6" ]
3,834,519
1
null
null
1
296
I committed a project to VSTF and then pulled it down locally on another machine. It works fine on my dev box, but on the other machine, the WCF RIA Service link appears to be gone and there is no option to re-add it in the project properties. See image for clarification: ![http://imgur.com/XIwfB.png](https://i.stack...
WCF RIA Services link dropdownlist not present in project properties (Visual Studio 2010)
CC BY-SA 3.0
null
2010-09-30T20:20:51.780
2011-12-03T23:56:34.163
2011-12-03T23:56:34.163
84,042
262,046
[ "c#", ".net", "visual-studio", "silverlight", "wcf" ]
3,834,620
1
3,834,678
null
14
2,229
I'm interested in how the Microsoft Visual C++ compiler treat/optimize static variables. My code: ``` #include <cstdlib> void no_static_initialization() { static int value = 3; } void static_initialization(int new_value) { static int value = new_value; } int main() { no_static_initialization(); sta...
How does MSVC optimize static variable usage?
CC BY-SA 3.0
0
2010-09-30T20:34:24.247
2017-09-16T14:27:46.503
2017-09-16T14:27:46.503
2,176,813
346,332
[ "c++", "assembly", "visual-c++", "optimization", "static" ]
3,834,741
1
3,841,150
null
9
20,219
I made an Android Hello world app and I'm trying to load it onto my HTC Incredible. I believe it has 2.2 (how do I confirm that?) Anyway, Eclipse gives me this message and then brings up the window in the screenshot below. > Automatic Target Mode: Unable to detect device compatibility. Please select a target dev...
Android - How to load HelloWorld app onto my Phone?
CC BY-SA 2.5
0
2010-09-30T20:50:00.937
2013-09-16T01:47:05.873
2010-09-30T23:56:57.097
13,009
13,009
[ "android", "eclipse" ]
3,835,090
1
null
null
5
170
I was creating a new form and my IDE crashed, or it was having problems, and now every time I create a new form it has a black line across it. The black line is not something I was adding, it appears to be the black line from the top of the form getting painted in the wrong place. The interesting thing is that every ...
interesting error: new form has black line across it, how do I get rid of it
CC BY-SA 2.5
null
2010-09-30T21:49:29.023
2010-10-03T19:53:52.777
2010-09-30T22:54:57.010
33,225
109,614
[ "c#", "winforms", "visual-studio-2008" ]
3,836,224
1
3,836,236
null
2
565
As per an example URL shortened here: [http://goo.gl/info/kW1c#week](http://goo.gl/info/kW1c#week) What is the displayed 2D barcode for (copied here): ![alt text](https://i.stack.imgur.com/fFp1e.png)
What's the 2D barcode on Google's new goo.gl URL shortner?
CC BY-SA 2.5
null
2010-10-01T02:45:11.150
2010-10-12T15:20:31.540
2010-10-01T02:53:11.757
18,821
199,305
[ "barcode" ]
3,836,227
1
3,836,249
null
1
1,038
I've got an expandable css menu that is acting a bit weird in ie, but works fine in firefox. Anyone who can help me is appreciated. Heres the problem. When I click the li it expands to the sub li fine, however, if I keep the mouse directly over the li I just clicked on, the text in the sub li's don't show. See this...
css expandable menu working fine in firefox, but not ie...sub li's not showing up properly
CC BY-SA 2.5
null
2010-10-01T02:46:20.320
2010-10-01T02:54:59.807
null
null
249,034
[ "css", "html-lists" ]
3,836,302
1
3,837,505
null
1
1,244
I think that is what this is called: ![enter image description here](https://i.stack.imgur.com/Puqj4.png) I want to be able to add stuff like that to my program. Such as an open button and other buttons that would . This is in C#, by the way. I DID look into the Windows 7 API Code Pack, but it.. doesn't work the way...
Windows 7 Jump List
CC BY-SA 3.0
0
2010-10-01T03:11:01.927
2013-08-19T12:55:37.927
2013-08-19T12:26:07.757
203,458
385,853
[ "c#", ".net", "winforms", "windows-7", "jump-list" ]
3,836,556
1
null
null
5
3,558
here is the xml code i used but no use even if try increasing the minheight.... please help ![alt text](https://i.stack.imgur.com/iE4YI.png) ``` <?xml version="1.0" encoding="utf-8"?> <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:lay...
How do i increase the view size of my list view?
CC BY-SA 2.5
0
2010-10-01T04:33:12.113
2011-01-12T09:25:58.763
2011-01-12T09:25:58.763
438,864
438,864
[ "android", "listview" ]
3,836,579
1
3,836,603
null
2
248
Hi this question or problem i have its very hard i have search and ask in the university and i have no idea how to make this happen, or even if it is possible. Here we go... I am making a photo or image editor with the variation of letting the user to insert buttons in top of the edited image(this buttons when clicked...
How to Save Controls that are inside a form
CC BY-SA 2.5
0
2010-10-01T04:40:40.960
2010-10-11T18:26:05.040
2010-10-11T18:26:05.040
463,475
463,475
[ "c#", "custom-controls", "image-manipulation" ]
3,836,591
1
10,163,893
null
1
4,238
I want a function which when i upload a photo it should crop the image irrespective of the ration of the image from the centre making sure the crop is well inside the image. ![alt text](https://i.stack.imgur.com/YQl4T.jpg) the above image is 2592 * 1944 i want to crop an image of 159 * 129 ![alt text](https://i.sta...
PHP image Resize and Crop Function
CC BY-SA 2.5
null
2010-10-01T04:44:34.603
2013-07-04T11:49:32.640
2013-07-04T11:49:32.640
569,101
155,196
[ "php", "cakephp", "image-processing", "crop" ]
3,836,901
1
3,837,140
null
1
382
How do i define a following layout in my xml file: ![alt text](https://i.stack.imgur.com/SId8H.png) I hope you got it from image that i want to display TextView1 on 1st Row, and in 2nd Row, TextView2 on Left and TextView3 on Right side. How do i define this layout? i know the layout_gravity attribute but not gettin...
Android XML Layout
CC BY-SA 2.5
0
2010-10-01T06:07:40.037
2010-10-15T10:08:02.063
null
null
379,693
[ "android", "android-layout", "android-sdk-2.1" ]
3,836,990
1
3,837,013
null
0
4,492
I need to show a date in a certain format on screen, but I need to store the date as a string in another format. I think this means I have to convert it to a date and back to a string. How do i do this ? I have already figured out how to convert my string to a date, however build analyser gives me a warning. I want ...
iPhone, if I'm converting a date string from one format to another, to store it, do I have to convert it to a date, how?
CC BY-SA 2.5
0
2010-10-01T06:31:49.473
2010-10-01T06:42:29.043
null
null
450,456
[ "iphone", "xcode", "iphone-sdk-3.0" ]
3,836,997
1
null
null
1
1,116
I want to know how to display value(in percent) on the bar series![alt text](https://i.stack.imgur.com/MtYS0.png) Thanks..
Display value on the bar chart
CC BY-SA 2.5
0
2010-10-01T06:34:29.843
2010-10-01T07:44:34.223
null
null
448,173
[ "delphi" ]
3,837,037
1
null
null
49
107,563
I have a div with position:fixed that is my container div for some menus. I've set it to top:0px, bottom:0px to always fill the viewport. Inside that div I want to have 2 other divs, the lower one of which contains lots of lines and has overflow:auto. I would expect that it would be contained within the container div, ...
Div with scrollbar inside div with position:fixed
CC BY-SA 2.5
0
2010-10-01T06:46:33.577
2021-11-02T16:53:01.800
2010-10-01T07:07:19.900
35,716
35,716
[ "css", "css-position" ]
3,837,538
1
3,837,590
null
5
12,663
I've enclosed a screen dump to make things easier to follow. I've attached my outlets for datasource and delegate and I've created an outlet for my table view, but reloadData doesn't work? Ideally I'd like to only call reloadData after the view has been loaded once? ![alt text](https://i.stack.imgur.com/6qwct.jpg)
iPhone, why isn't UITableView reloadData working?
CC BY-SA 2.5
0
2010-10-01T08:22:38.177
2010-10-01T08:39:43.277
2010-10-01T08:32:21.703
173,191
450,456
[ "uitableview", "ios", "reloaddata" ]
3,837,584
1
3,844,323
null
0
977
I am trying to make a desktop application in netbeans. The GUI form that i have made, is longer than the size of the desktop screen, so the contents in the lower parts are not visible. Please help me to get ride of this problem.Here I'm pasting the picture. ![alt text](https://i.stack.imgur.com/3ENJ4.png)
netbeans desktop application
CC BY-SA 2.5
null
2010-10-01T08:30:44.320
2010-10-05T08:22:26.340
null
null
142,540
[ "java", "netbeans" ]
3,837,710
1
3,837,827
null
3
4,149
The layout I'm trying to achieve is shown in this image: ![alt text](https://i.stack.imgur.com/bH86P.png) The HTML below is one of many attempts which haven't worked. The project this is for is targeting HTML5 in the latest browsers only, so there is no need for it to work in anything except the latest Chrome, Safari...
Trying to get vertical text to bottom align
CC BY-SA 2.5
null
2010-10-01T08:51:33.710
2010-10-01T09:16:11.847
2010-10-01T09:16:11.847
313,758
149,533
[ "html", "webkit", "css" ]
3,837,714
1
3,839,108
null
0
1,367
I have a project where I am required to subtract an empty template image from an incoming user filled image. The document type is a normal Bank cheque. The aim is to extract the handwritten fields from it by subtracting one image from the empty template image. The issue what i am facing is in aligning these two imag...
Template matching - Image subtraction
CC BY-SA 2.5
0
2010-10-01T08:52:06.220
2010-10-01T13:50:09.477
2010-10-01T13:50:09.477
119,535
119,535
[ "algorithm", "image-processing", "opencv", "image-manipulation", "subtraction" ]
3,837,849
1
3,838,087
null
0
101
![alt text](https://i.stack.imgur.com/XU2wq.jpg) Here for part ‘CF061W’ finum is 25, I will select records whose fparinum value is 25 now I will get these parts FA061W, HRD20600 and SD1201. Now again I will select records whose fparinum value is finumber of above retrieved parts FA061W, HRD20600 and SD1201 and so on. ...
SQl query required for the below Scenario
CC BY-SA 2.5
null
2010-10-01T09:16:25.130
2010-10-01T09:55:49.810
null
null
366,947
[ "sql", "sql-server", "tsql" ]
3,837,884
1
3,844,538
null
0
414
I'm trying to use the google custom search in a wordpress website (but without any plugin). I've used the code google provided (the search box code and the search results page code) and the results page it's returning empty... However the auto-complete it's working: ![alt text](https://i.stack.imgur.com/aJ74G.png) ...
Google custom search results page don't show any results
CC BY-SA 2.5
null
2010-10-01T09:21:04.603
2010-10-02T05:44:05.490
2010-10-01T09:33:53.927
155,905
155,905
[ "wordpress" ]
3,838,117
1
3,838,134
null
0
1,387
I'm managed to make my UITableView rows / cells black when data is loaded, to a fashion, I get a white line in between rows, which makes it look awful. How can i make them fully black with and without data ? Heres the code I'm using at the moment ``` - (void)tableView:(UITableView *)tableView willDisplayCell: ...
iPhone, how can I make my UITableView cells black with and without data in them?
CC BY-SA 2.5
null
2010-10-01T09:54:16.857
2010-10-01T10:46:53.473
null
null
450,456
[ "iphone", "uitableview", "reloaddata" ]
3,838,329
1
3,838,357
null
151
210,130
How can I check if 2 segments intersect? I've the following data: ``` Segment1 [ {x1,y1}, {x2,y2} ] Segment2 [ {x1,y1}, {x2,y2} ] ``` I need to write a small algorithm in Python to detect if the 2 lines are intersecting. ![alt text](https://i.stack.imgur.com/AlB0e.png)
How can I check if two segments intersect?
CC BY-SA 4.0
0
2010-10-01T10:24:41.410
2022-11-01T22:21:29.560
2019-07-17T12:27:23.273
7,851,470
257,022
[ "python", "math", "geometry" ]
3,838,484
1
3,838,625
null
0
1,235
I have a widget which looks like this: ![alt text](https://i.stack.imgur.com/ZG9w1.png) Every cone is a "touchable element". Now I want to put a bitmap texture above each cone. However, bitmap images are all rectangular, so a bitmap texture above one cone would interfere with the bitmap texture above another cone. I...
Android: adding a bitmap texture to a non rectangular item
CC BY-SA 2.5
null
2010-10-01T10:52:59.933
2010-10-01T11:43:11.260
null
null
184,367
[ "android", "bitmap", "2d", "textures" ]
3,838,529
1
null
null
0
306
I've created MVC2 based solution in VS2010 using standard template. Site.Master is cleaned a bit, here is how HomeController looks like: ``` namespace MvcApplication1.Controllers { [HandleError] public class HomeController : Controller { public ActionResult Index() { return Redi...
C#/MVC and RedirectToAction behaviour
CC BY-SA 2.5
null
2010-10-01T11:00:00.700
2013-04-06T21:59:18.827
2013-04-06T21:59:18.827
727,208
159,367
[ "c#", "asp.net-mvc", "asp.net-mvc-2" ]
3,838,610
1
null
null
18
124,493
C# Every time I run my porgram I get this exception: ![alt text](https://i.stack.imgur.com/fauT3.jpg) But when I run in debug mode, there is no exception and the program works fine, what can I do? I do not use anywhere in the project Okay, here is the code found in the details: If someone know how to use protoBu...
How to solve: "exception was thrown by the target of invocation" C#
CC BY-SA 3.0
0
2010-10-01T11:11:03.750
2022-03-11T19:16:30.047
2011-06-16T12:17:17.523
7,862
389,222
[ "c#", ".net", "exception" ]
3,839,002
1
3,904,106
null
6
7,047
Our team trying to create a windows application(c#) to call a WCF service using internet proxy server Showing exception "The server committed a protocol violation. Section=ResponseStatusLine" while calling WCF service Please give suggestion to solve this problem/any other alternative solution ``` //Code for creating...
Windows WCF client with internet proxy server showing error The server committed a protocol violation. Section=ResponseStatusLine
CC BY-SA 2.5
0
2010-10-01T12:12:15.500
2018-07-02T15:07:47.487
2010-10-11T05:07:50.067
171,985
171,985
[ "c#", ".net", "windows", "wcf" ]
3,839,099
1
3,839,157
null
2
748
is there a way to create an image slideshow that is rotated by say 5° ? I'd prefer a non-flash solution. Thank you! ![Screenshot of what I want to achive](https://i.stack.imgur.com/4RL2u.jpg)
How to create an inclined (not levelled) slideshow?
CC BY-SA 2.5
0
2010-10-01T12:25:04.070
2010-10-01T12:40:46.380
2010-10-01T12:33:26.640
132,873
132,873
[ "javascript", "css", "html", "slideshow" ]
3,839,118
1
3,846,619
null
0
277
I have a UITextView that is supposed to have one line of text. The size font is controlled by a slider. As the user controls the slider, I calculate the new UITextView size using (this is the method called by the slider as it moves). ``` - (void) changeFontSize:(id)sender { UISlider *slider = (UISlider *)sender; ...
iphone - a question about UITextView and its size
CC BY-SA 2.5
null
2010-10-01T12:27:17.077
2010-10-02T16:40:10.297
2010-10-01T18:43:10.577
316,469
316,469
[ "iphone" ]
3,839,142
1
3,857,111
null
0
1,824
im using windows server 2008, while installing sql server 2008, in account provisioning, i added current user. but now after installation, i added new user in windows. now the problem is in not able to login into sql server 2008. so how do i add the new user in account provisioning in sql server 2008. check the scree...
Account provisioning after installing sql server 2008
CC BY-SA 2.5
null
2010-10-01T12:32:07.667
2010-10-04T16:20:24.177
null
null
336,009
[ "provisioning", "account" ]
3,839,138
1
3,839,154
null
1
3,233
I want to find position `in(` position within string, but I can not explicitly write: ``` int index = valueOf("in("); ``` because I get error of `non closed group ( java.util.regex.PatternSyntaxException Unclosed group).` If I escape parenthesis it will not find index of `in(`, but `in\(` ``` int index = value.indexOf...
How to find index of parenthesis indexOf - confusion, Eclipse bug or feature
CC BY-SA 2.5
null
2010-10-01T12:31:20.277
2010-10-01T18:47:40.637
2020-06-20T09:12:55.060
-1
410,737
[ "java", "regex", "eclipse" ]
3,839,289
1
3,839,366
null
0
51
i'm currently exceeding the maximum server queries per hour with my blog on my host, and when that happens they shut my account down, rendering it useless. I keep exceeding the maximum amount of queries which is 75,000 but I don't think I should be considering the amount of visitors I have at the moment, plus I'm usin...
Can I drop one of these indexes in Wordpress?
CC BY-SA 2.5
0
2010-10-01T12:51:50.963
2010-10-01T13:00:18.743
null
null
372,752
[ "sql", "database", "wordpress" ]
3,839,407
1
3,840,030
null
1
627
For example, Notepad++ has a toolbar that looks like this: ![Notepad++ toolbar](https://i.stack.imgur.com/UBH3z.png) 7-Zip has a toolbar that looks like this: (stack overflow won't let me post more links because I'm new) Whereas mine is boring and flat, like this: (stack overflow won't let me post more links becau...
What's the correct way to get a gradient in a toolbar in win32 API (no MFC)?
CC BY-SA 3.0
null
2010-10-01T13:05:00.603
2011-06-23T17:12:51.643
2011-06-23T17:12:51.643
192,077
463,876
[ "c++", "winapi", "toolbar" ]
3,839,579
1
null
null
0
233
I got a problem of selecting triangles in a model with a particular way. The problem is simple enough : User have a model (made from triangles) , on that model define some margine line (cutting line if you wish), and after based on array of the verticies of the margin line I would like to select one part of the model...
Splitting Selection algorithm
CC BY-SA 2.5
null
2010-10-01T13:26:02.130
2010-10-01T14:35:31.480
2010-10-01T13:28:12.030
103,385
156,695
[ "algorithm", "opengl", "selection" ]
3,839,725
1
4,175,624
null
0
102
What exactly I have to do is I have 2 images one is mask and another is Photo. Mask.png is just the layout of the person and Photo.png is the image of the person in the position as per the mask.png. Now the main problem is I want the Photo.png to be resized and moved in such a way that it can be adjusted in that Mask....
set the second image by dragging on first image and then save it
CC BY-SA 2.5
0
2010-10-01T13:42:05.867
2010-11-14T01:10:14.263
null
null
363,363
[ "iphone", "uiimageview" ]
3,840,657
1
3,841,529
null
23
18,543
I could not find what formatting available to write help for your own MATLAB function. Very little information is available [in official documentation](http://www.mathworks.com/help/techdoc/matlab_prog/f7-41453.html#f7-38710). Do you know about any other formatting that can be visible with Help Browser (not with help...
MATLAB m-file help formatting
CC BY-SA 3.0
0
2010-10-01T15:32:05.267
2018-01-16T07:56:37.743
2015-01-17T14:44:17.483
1,797,098
163,080
[ "matlab", "formatting" ]
3,840,827
1
null
null
1
1,173
Is there any way to access the internal images that the iPhone simulator uses? For example, if I want to get the original image used for one of the default app icons (e.g. Contacts). This way I could get the highest possible resolution, and examine it for purposes of creating similar icons for my app. Another example...
How to access iPhone Simulator's images
CC BY-SA 2.5
null
2010-10-01T15:49:40.367
2010-10-01T16:49:00.927
2010-10-01T16:49:00.927
35,690
35,690
[ "ios-simulator", "filesystems" ]
3,840,835
1
3,894,983
null
4
11,452
I'm trying to replicate the Gmail Notifier popup. It both fades in (Opacity) and raises from the start bar. I've managed to do the fade in\out using a timer and opacity but how do I: A) make the form appear to 'pop up'? (I think its height grows via a timer from 0 to it's max? B) Locate it's start point exactly abov...
Create pop up 'toaster' effect message
CC BY-SA 2.5
0
2010-10-01T15:51:33.067
2010-10-08T23:33:18.030
null
null
2,278,201
[ "vb.net" ]
3,840,992
1
3,841,006
null
0
1,813
I'm trying to make a Sudoku board online using an HTML Table and formatting it with CSS. Ideally the output would look like this image: ![enter image description here](https://i.stack.imgur.com/PEhPE.png) The problem is I'm having trouble setting the borders properly. Below is the code for a single 3 by 3 box, it un...
HTML+CSS Table, trouble setting borders
CC BY-SA 3.0
0
2010-10-01T16:10:21.800
2017-06-11T11:08:28.350
2017-06-11T11:08:28.350
4,370,109
309,616
[ "html", "css", "html-table", "border" ]
3,841,122
1
5,110,406
null
126
101,827
I am using a Preview to display what the camera see's on the screen. I can get everything working fine, surface created, surface set and the surface is displayed. However it always displays the picture at an incorrect 90 degree angle in portrait mode. Such as in the picture: ![alt text](https://i.stack.imgur.com/Pu...
Android - Camera preview is sideways
CC BY-SA 2.5
0
2010-10-01T16:24:18.473
2020-02-19T16:55:00.087
null
null
243,999
[ "android", "camera", "orientation", "preview", "portrait" ]
3,841,231
1
3,890,800
null
7
5,942
I am trying to do something similar to [this](https://stackoverflow.com/questions/3682021/uislider-with-certain-possible-values) but in Android. ![alt text](https://i.stack.imgur.com/QjLXY.png) In Android I can extend the `ProgressBar` but I am doubting of how to add the `TextViews` on top. In iphone it was easy beca...
Custom ProgressBar widget
CC BY-SA 2.5
0
2010-10-01T16:39:30.557
2010-10-08T14:00:16.077
2017-05-23T12:13:26.330
-1
119,895
[ "iphone", "android", "progress-bar" ]
3,841,486
1
3,868,008
null
3
3,482
### Background I'm using `SendKeys()` to send keyboard commands to the active window, but I'm not having any luck finding the child window when the application is running through RemoteApp. It all works as expected when I run the application locally. [Microsoft RemoteApp](http://technet.microsoft.com/en-us/librar...
Finding the Child Window inside a Microsoft RemoteApp Programmatically
CC BY-SA 2.5
null
2010-10-01T17:10:11.107
2015-05-12T11:59:11.570
2010-10-04T12:21:53.593
16,587
16,587
[ "c#", ".net", "winforms", "winapi", "remoteapp" ]
3,841,642
1
3,862,114
null
55
28,254
For an application I am building I have drawn 2 circles. One a bit bigger than the other. I want to curve text between those lines, for a circular menu I am building. I read most stuff about curving a text that you have to split up your text in characters and draw each character on it's own with the right angle in min...
Curve text on existing circle
CC BY-SA 2.5
0
2010-10-01T17:32:23.057
2017-04-11T20:44:12.257
2010-10-06T10:49:25.963
69,313
69,313
[ "iphone", "cocoa-touch", "math", "quartz-graphics", "quartz-2d" ]
3,842,525
1
3,847,064
null
0
875
I have a button that says "Sort" and when a user normal/short presses the button, I want a menu to appear with the various sort options. Looking around online there doesn't seem to be a straight forward answer to which route is considered best practice. I'm looking to have a menu that looks similar to this: ![Sampl...
What is the best practice for opening a context-menu-like menu from a short button click?
CC BY-SA 3.0
null
2010-10-01T19:45:01.130
2015-06-08T12:59:32.297
2017-02-08T14:30:30.470
-1
445,348
[ "android", "button", "spinner", "android-contextmenu" ]
3,843,103
1
null
null
1
148
![Layout](https://i.stack.imgur.com/gFWz4.png) In the image above, most of the html is semantic, using css to manage the look of it all. Despite my best efforts, though, I had to resort to using a table to get the segment on the right to stay where it is and allow its inner elements to wrap fluidly when it gets too bi...
How can I convert this table-based layout to use semantic html with css-based layout?
CC BY-SA 2.5
null
2010-10-01T21:18:06.090
2010-10-01T21:25:29.853
null
null
120,955
[ "css", "semantic-markup" ]
3,843,265
1
3,843,328
null
1
458
It's difficult to explain, but I'll try. ![query plan pic](https://i.stack.imgur.com/flpyH.png) As you see on query_plan picture attached (It is query plan for query described below), there are 3 almost the same "blocks" - my question is WHY? It seems to me that when I have "all in one" (see below) query the "Init" ...
CTE query plan for complex query - triple run of the same init query - why?
CC BY-SA 2.5
null
2010-10-01T21:50:55.303
2010-10-01T22:10:45.940
null
null
70,745
[ "sql-server-2005", "tsql", "sql-execution-plan" ]
3,843,367
1
3,843,407
null
2
523
I'm trying to render an image to the window. Super simple (or so I thought). No matter what I do, I always get this purple square. Some tidbits of my code: ``` // load image from file, called one time on load: glClearColor (0.0, 0.0, 0.0, 0.0); glShadeModel(GL_FLAT); glEnable(GL_DEPTH_TEST); RgbImage theTexMap( fi...
What am I doing wrong that I can't render an image/texture properly in OpenGL?
CC BY-SA 2.5
null
2010-10-01T22:12:12.210
2010-10-02T08:39:19.717
null
null
1,210,318
[ "c++", "opengl", "augmented-reality", "texture-mapping" ]
3,843,547
1
3,843,599
null
2
7,215
Make something like in html/css ![alt text](https://i.stack.imgur.com/fxl2u.png)
How can I render text under a textbox?
CC BY-SA 2.5
null
2010-10-01T23:01:32.707
2010-10-02T04:08:24.020
null
null
68,172
[ "html", "css" ]
3,843,555
1
null
null
6
4,316
Have a look at the following screenshot fragment from an iPad app I am working on: ![ipad toolbar button images](https://i.stack.imgur.com/uaiVH.png) The "chat bubble" icon on the left is from the famous [Glyphish icon set](http://glyphish.com/). Note how it has correct vertical positioning (in the middle), but is mu...
iPad toolbar icons: bar button images not centered?
CC BY-SA 2.5
0
2010-10-01T23:02:59.723
2010-10-02T01:03:52.033
2010-10-02T01:03:52.033
161,161
161,161
[ "image", "ipad", "button", "ios", "toolbar" ]
3,843,784
1
3,843,876
null
7
9,562
I have encountered something very strange, simple WPF application ``` <Window x:Class="ListBoxSelection.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="MainWindow" Height="350" Width="525"> <Grid> ...
ListBox is selecting many items even in SelectionMode="Single"
CC BY-SA 2.5
0
2010-10-02T00:06:29.070
2011-02-10T05:08:07.097
null
null
189,183
[ "wpf", ".net-4.0", "listbox", "binding" ]
3,843,814
1
4,915,160
null
1
1,533
when the orientation changes, the seekbar drawing is messed up. See voice call and alarm below: ![alt text](https://i.stack.imgur.com/2RcDf.png)
android seekbar drawing problem on orientation change
CC BY-SA 2.5
null
2010-10-02T00:19:05.977
2011-06-24T17:59:36.433
null
null
398,148
[ "android", "android-widget", "seekbar" ]
3,843,930
1
null
null
1
437
How to implement custom diagram Project for VS2010? Where can I find the exmaple? --- It is no diagram designer project (Class Diagram Project/Sequence diagram project) example in the Visual Studio Integration Samples. --- ![alt text](https://i.stack.imgur.com/vValz.png) I hope can implement custom diagram el...
How to implement custom diagram Project for VS2010?
CC BY-SA 2.5
null
2010-10-02T01:01:12.480
2010-10-02T08:11:07.583
2010-10-02T08:11:07.583
364,126
364,126
[ "c#", "visual-studio" ]
3,844,477
1
3,845,221
null
14
9,755
## Background I am developing a social web app for poets and writers, allowing them to share their poetry, gather feedback, and communicate with other poets. I have very little formal training in database design, but I have been reading books, SO, and online DB design resources in an attempt to ensure performance a...
Social web application database design: how can I improve this schema?
CC BY-SA 3.0
0
2010-10-02T05:11:40.463
2015-12-25T22:16:28.617
2015-12-25T22:16:28.617
2,171,044
461,276
[ "mysql", "database", "database-design", "schema", "social-networking" ]
3,844,695
1
3,845,506
null
2
195
I need some performance improvement guidance, my query takes several seconds to run and this is causing problems on the server. This query runs on the most common page on my site. I think a radical rethink may be required. ~ EDIT ~ This query produces a list of records whose keywords match those of the program (record...
MySQL, need some performance suggestions on my match query
CC BY-SA 2.5
null
2010-10-02T06:50:35.580
2010-10-04T09:08:46.633
2010-10-02T07:31:56.540
450,456
450,456
[ "sql", "database", "mysql" ]
3,844,784
1
3,844,975
null
2
1,319
after i have add 6 or more tabbar on the InterfaceBuilder it will automatically generate More Tab. how to customize look and feel of it ? eg Navigation bar color. ![alt text](https://i.stack.imgur.com/ltByh.png)
how to customize More Tabbar on iPhone?
CC BY-SA 2.5
0
2010-10-02T07:25:32.157
2015-06-17T16:15:56.103
null
null
203,372
[ "iphone", "uitabbarcontroller" ]
3,845,014
1
3,853,153
null
57
61,484
MySQL Workbench reports a value called "Key Efficiency" in association with server health. What does this mean and what are its implications? ![alt text](https://i.stack.imgur.com/LJAzz.png) From [MySQL.com](http://dev.mysql.com/doc/administrator/en/mysql-administrator-health-memory-health.html), "Key Efficiency" is:...
What is MySQL "Key Efficiency"
CC BY-SA 2.5
0
2010-10-02T08:50:32.637
2013-04-07T00:01:07.980
2010-10-02T10:48:29.507
86,060
86,060
[ "mysql", "reporting", "performance" ]
3,845,085
1
3,847,889
null
14
13,651
I would like to know to make an UIPopoverController without arrows In fact I would like to simulate something like this: ![Screenshot of the set-passcode screen from the iPad's System Preferences](https://i.stack.imgur.com/gGEH0.png) See that - There is no arrows- There is a title that is somehow inside of a expanded...
UIPopoverController without arrows?
CC BY-SA 2.5
0
2010-10-02T09:12:06.787
2014-07-04T06:46:06.217
2010-10-04T17:54:49.233
149,008
149,008
[ "iphone", "cocoa-touch", "uikit", "core-graphics", "uipopovercontroller" ]
3,845,265
1
3,846,342
null
0
1,503
I'm trying to display transparent `UINavigationBar` on top of Scrollview. This is actual result of code that I have written... ![alt text](https://i.stack.imgur.com/k1eH7.png) where as I'm expecting view to be displayed like below image, which happens after I slightly scroll the image. ![alt text](https://i.stack.i...
Transparent NavgationBar on iPhone
CC BY-SA 2.5
null
2010-10-02T10:24:56.607
2013-05-17T23:29:04.880
2010-10-08T03:51:36.677
240,633
85,606
[ "iphone", "objective-c", "uiscrollview", "ios4" ]
3,845,411
1
3,846,921
null
0
223
Given image is N*M (R,G,B) pixels like: ![alt text](https://i.stack.imgur.com/CGEBL.jpg) Algorithm should tall us how to find main image colors like: red and white here. Aeries with relatively same colors means we search for (R,G,B) (222, 12, 10) giving for example such step (40, 20, 10 ) so that (199, 32, 5) wil...
What is fastest algorithm for getting relative to image shapes formed by aeries with relatively same colors on the given image?
CC BY-SA 2.5
null
2010-10-02T11:17:17.383
2010-10-02T18:04:04.207
null
null
434,051
[ "java", "c++", "algorithm", "image", "search" ]
3,845,654
1
3,845,753
null
8
10,962
I want to create an effect like that of `fieldset` and `label`. ![alt text](https://i.stack.imgur.com/1TMor.png) When the headings change along the side, the width that the white background of the heading remains the same. If I can make the `heading` or `div` element to take the width enough to fit its content, it ...
how can we make a div take width according to its content automatically
CC BY-SA 2.5
0
2010-10-02T12:20:20.393
2016-03-01T07:37:10.960
2010-10-02T12:46:19.223
82,548
155,196
[ "html", "width", "fieldset" ]
3,845,701
1
3,845,932
null
10
58,488
I am trying to code the following layout. I have messed up the code and not sure what's the best way to do it. ![alt text](https://i.stack.imgur.com/7XcyZ.png) ``` <div class="search-wrapper"> <form action="search.php" method="get" name="search"> <div class="search-box"><img class="search-icon" src=...
coding a search bar with icon inside it
CC BY-SA 3.0
null
2010-10-02T12:30:02.273
2014-07-23T10:06:58.193
2014-02-24T06:09:55.353
249,762
155,196
[ "html", "css" ]
3,845,941
1
3,845,979
null
0
372
![alt text](https://i.stack.imgur.com/zGn7u.png) This is the representation of prototype chain when I created two instances of Book constructor. The screen-shot is taken from "High Performance Javascript - N.C.Jakas". My confusion is about the Book constructor given in the middle (the yellow box with the heading "Boo...
prototype confusion
CC BY-SA 2.5
0
2010-10-02T13:32:56.617
2011-08-20T20:46:20.943
null
null
341,144
[ "javascript" ]
3,846,182
1
3,846,245
null
1
2,950
![alt text](https://i.stack.imgur.com/2qIz2.jpg) I have above mysql table with available dates and prices. Second table includes room details. How can I join two tables to get available rooms between two dates and not get duplicate content.
Select available rooms between two dates
CC BY-SA 2.5
null
2010-10-02T14:39:13.177
2013-09-06T20:26:45.367
2013-09-06T20:26:45.367
null
412,225
[ "php", "mysql" ]
3,846,233
1
null
null
0
765
I have a GridBagLayout, but one label (maxSizeLbl) goes crazy and an other one (maxDateLbl) isnt visible, anyone knows what I've done wrong? Here is the Picture: ![alt text](https://i.stack.imgur.com/HJJXl.jpg) And here is the Code: ``` import java.awt.Component; import java.awt.Container; import java.awt.GridBagCo...
GridBagLayout goes crazy
CC BY-SA 2.5
null
2010-10-02T14:54:01.960
2010-10-02T20:26:44.763
2010-10-02T19:23:27.353
157,882
453,882
[ "java", "swing", "layout-manager", "gridbaglayout" ]
3,846,474
1
null
null
0
470
I've got a Flex application that loads without issue when offline, but once I embed it in a webpage it hangs on “Loading…”: ![alt text](https://i.stack.imgur.com/XcymR.png) I've tried fiddling with the `-use-network` compile flag to no avail. I've also watched the network traffic with Charles, and I see two request...
Flex: application hangs on "Loading..."
CC BY-SA 2.5
null
2010-10-02T15:55:46.220
2010-10-02T18:08:34.103
2010-10-02T17:54:23.727
71,522
71,522
[ "apache-flex", "preloader" ]
3,846,655
1
3,846,724
null
2
5,609
![alt text](https://i.stack.imgur.com/ukhWE.png) ![alt text](https://i.stack.imgur.com/DshK8.png) I wrote a php app using php+smarty. When I view the web source code in firebug, I find that tag and tag get under the tag. But it should be under the tag. And there are some space below tag. And there is on my top o...
the blank space below the <body> tag & script tag and link tag goes under body tag from head tag
CC BY-SA 4.0
0
2010-10-02T16:52:37.930
2020-12-17T11:29:22.850
2020-12-17T11:29:22.850
1,783,163
298,553
[ "php", "html", "utf-8", "smarty", "byte-order-mark" ]
3,846,845
1
3,847,519
null
0
187
I have never seen this issue before, its very strange. Just wondering if anyone else has come across this too. ![alt text](https://i.stack.imgur.com/89RW6.png) I have added a sprite to my game, its supposed to be the top left corner of a box to put text on to. I want to make it scalable without loosing anything so i ...
Cocos2D changes the colours in the last row of pixles in a sprite?
CC BY-SA 2.5
null
2010-10-02T17:43:27.337
2010-10-02T21:01:32.927
null
null
385,816
[ "iphone", "cocos2d-iphone", "sprite" ]
3,846,958
1
3,846,974
null
0
2,248
I did this before but I can't remember how to do it again. Image of what i'm trying to get: ![http://i.stack.imgur.com/SF3VO.jpg](https://i.stack.imgur.com/Ob9uQ.jpg) and what I have so far ![alt text](https://i.stack.imgur.com/rfYi8.png) In between each link,, theres two borders. yes I know how to make the effe...
Double border effect with navigation?
CC BY-SA 2.5
0
2010-10-02T18:14:22.220
2010-10-02T18:18:34.623
null
null
363,551
[ "css" ]
3,847,188
1
3,848,494
null
1
354
Does anyone know if there is a tool that will take an image (.png, .gif, etc) and output the gradient that the image contains? I really want to recreate this image ![alt text](https://i.stack.imgur.com/eZjaW.png) in css. Looks like a mix of linear and radial gradients and is beyond my css skills
WebKit gradient from an image
CC BY-SA 2.5
null
2010-10-02T19:25:29.900
2010-10-08T23:19:04.840
2010-10-03T02:56:37.430
69,634
413,606
[ "css", "webkit", "gradient" ]
3,847,336
1
3,847,558
null
2
2,445
I am hitting a brick wall with something I'm trying to do. I'm trying to perform a complex query and return the results to a vbscript (vbs) record set. In order to speed up the query I create temporary tables and then use those tables in the main query (creates a speed boost of around 1200% on just using sub queries)...
How to perform multiple SQL tasks when using SQL within code (in this case vbscript)
CC BY-SA 2.5
null
2010-10-02T20:07:01.227
2016-03-02T23:44:25.433
2010-10-03T18:57:41.467
21,880
21,880
[ "sql", "vbscript" ]
3,847,377
1
null
null
0
183
i have to develop one image gallery in flex, ![alt text](https://i.stack.imgur.com/BrHmF.png) this is how it looks, wht i have to do, is to make it run, like it keeps running, from left to right,(the items shown here should move from left to right) i am using repeater in an hbox, can u help me by telling, how to make...
auto movable gallery in flex
CC BY-SA 2.5
null
2010-10-02T20:18:24.547
2010-10-03T12:10:27.040
null
null
340,116
[ "apache-flex", "actionscript-3", "flex3", "flash-cs4" ]
3,847,899
1
3,847,912
null
0
221
Right now my navigation looks like this: ![alt text](https://i.stack.imgur.com/g3HJh.png) There is huge spaces at the ends of it, and I don't really know how to take it out. CSS: ``` nav { background: #282828 url(../images/nav-bg.png) repeat-x; border-radius: 6px; -webkit-border-radius: 6px; -moz-border-radius: 6px...
Space on Navigation right and left...how to remove it?
CC BY-SA 2.5
null
2010-10-02T23:20:31.463
2010-10-03T03:30:10.240
2010-10-03T03:28:25.283
361,608
363,551
[ "css" ]
3,847,972
1
3,848,049
null
1
73
I want to write an xslt to transform one xml file to another. The source XML file is like the following ``` <orgs> <organization revenue="10000"> <name>foo</name> </organization> <organization parent="foo"> <name>foo2</name> </organization> <organization parent="foo2"> <name>foo3</name> </organization> </orgs> ```...
XSLT Transformation doubt
CC BY-SA 2.5
null
2010-10-02T23:50:16.277
2010-10-03T01:01:09.620
2010-10-02T23:57:18.987
42,346
379,524
[ "xslt" ]
3,847,983
1
3,848,667
null
0
239
Is there a way to get Eclipse to do something like this: ![alt text](https://i.stack.imgur.com/NdDi0.jpg) It would be SOOOO helpful.
Eclipse: showing an interactive map of your project
CC BY-SA 2.5
0
2010-10-02T23:56:21.827
2010-10-03T07:42:42.800
2010-10-03T07:42:42.800
6,309
356,849
[ "eclipse", "diagrams" ]
3,848,108
1
3,848,201
null
23
2,539
Based on this original idea, that many of you have probably seen before: [http://rogeralsing.com/2008/12/07/genetic-programming-evolution-of-mona-lisa/](http://rogeralsing.com/2008/12/07/genetic-programming-evolution-of-mona-lisa/) I wanted to try taking a different approach: You have a target image. Let's say you c...
Reproducing images with primitive shapes. (Graphics optimization problem)
CC BY-SA 2.5
0
2010-10-03T00:51:26.527
2010-10-05T03:10:39.970
2010-10-05T03:10:39.970
90,308
90,308
[ "algorithm", "language-agnostic", "optimization", "graphics", "simulated-annealing" ]
3,848,259
1
null
null
2
611
How I detect what language the current system? ![Taskbar](https://i.stack.imgur.com/cA1M9.jpg)
How I detect what language the current system
CC BY-SA 2.5
null
2010-10-03T02:05:49.473
2010-10-03T02:32:12.713
null
null
461,057
[ "c#" ]
3,848,274
1
3,848,283
null
0
20
please help me with the website heading here. Please look at my picture below: ![alt text](https://i.stack.imgur.com/bkapP.jpg) I have no idea why it is like that. I just use simple css and it became like that and similar as the buttom. The same thing happens as the bottom part of the page. Please help!Not sure why it...
the page heading isn't connected
CC BY-SA 2.5
null
2010-10-03T02:09:52.137
2010-10-03T02:13:24.537
null
null
324,753
[ "css" ]
3,848,455
1
3,848,474
null
2
206
I am writing C / C++ code to run a shell command and capture the output: ``` static const int BUFFER_SIZE=512; // (...) FILE* pipe; char buffer[BUFFER_SIZE]; // (...) if (!(pipe = popen(cmd.c_str(), "r"))) { out("\nProblem executing command: " + cmd + "\n"); return 1; } while (!feof(pipe)) { int read = frea...
Properly getting output from a pipe in C / C++
CC BY-SA 2.5
0
2010-10-03T03:31:52.277
2010-10-03T03:36:46.070
2017-02-08T14:30:30.810
-1
14,540
[ "c++", "c", "pipe" ]
3,848,550
1
3,848,635
null
4
7,760
I designed a button How do I inherit the rest of this button? ![button](https://i.stack.imgur.com/9EBlR.jpg) --- Does this method of inheritance is true? mycode : ``` public class MyButton : Button { public MyButton() : base() { // set whatever styling properties needed here th...
Inheritance of button
CC BY-SA 3.0
null
2010-10-03T04:07:36.480
2019-03-10T17:36:19.473
2011-09-12T15:21:19.660
1,288
461,057
[ "c#", "winforms", "inheritance" ]
3,848,558
1
null
null
10
2,436
I am trying to figure out how to use DWM to render a copy of a Window into my own desired location. The only thing I can find to tell DWM to render somewhere is with the thumbnail APIs. But MSDN's [DWM Thumbnail Overview](http://msdn.microsoft.com/en-us/library/aa969541(v=VS.85).aspx) they specifically warn me off: > ...
What is the API to "create applications like Flip3D"
CC BY-SA 4.0
0
2010-10-03T04:11:33.557
2021-05-16T20:56:27.037
2021-05-16T20:56:27.037
12,597
12,597
[ "aero", "flip", "dwm" ]
3,848,559
1
3,850,796
null
2
361
I'm getting a SQL query from NH, and it's generating a column that does not exist (thus producing an ADOException from NH). ``` SELECT roles0_.CreatedBy_id as CreatedBy4_1_, roles0_.Id as Id1_, roles0_.Id as Id18_0_, roles0_.RoleDescription as RoleDesc2_18_0_, roles0_.User_id as User3_1...
Fluent NHibernate + AutoMappings: Mystery Column in Generated SQL
CC BY-SA 2.5
0
2010-10-03T04:11:40.773
2010-10-03T17:31:43.373
2010-10-03T16:24:38.110
5,834
5,834
[ "fluent-nhibernate", "automapping" ]
3,848,867
1
null
null
3
1,080
Given this markup: ``` <ul class="grafiek"> <li class="first-child">item</li> <li>item</li> <li>item</li> <li>item</li> <li>item</li> <li class="last-child">item</li> </ul> ``` How do I make it appear, cross-browser, like so: ![alt text](https://i.stack.imgur.com/3riya.gif) In other words: ...
IE6, IE7: stretch last li to cumulative width of previous li's
CC BY-SA 2.5
0
2010-10-03T06:41:52.037
2014-01-14T07:32:02.663
2014-01-14T07:32:02.663
881,229
165,154
[ "css", "list", "layout", "internet-explorer-7", "internet-explorer-6" ]
3,849,025
1
3,849,144
null
1
5,302
i've developed a simple application (`.dll`) in `LABVIEW` and i implorted that dll to a C# windows application(`Winforms`) . Like ``` [DllImport(@".\sample.dll")] public static extern void MyFunc(char[] a, StringBuilder b ,Int32 c); ``` so when i call the function `MyFunc` a window will be popped up( the `Lab Vi...
How to get the name of an External window in C# Application?
CC BY-SA 2.5
0
2010-10-03T07:54:48.417
2010-10-05T19:29:33.780
2010-10-03T08:25:35.440
336,940
336,940
[ "c#", "labview" ]
3,849,307
1
3,909,338
null
4
8,200
I want to do automatic installation by AutoIt. I cant activate and choose elements menu on the "select features" step. I can choose any element in the "tree". For it I use the function ``` ControlTreeView($windowId, "", $h_tree, "Select", "#2") ``` How to activate and choose the elements menu in ControlTreeView? !...
AutoIt: Activate and choose elements context menu in ControlTreeView
CC BY-SA 4.0
0
2010-10-03T09:59:29.677
2018-11-18T10:15:11.800
2018-11-18T10:15:11.800
1,033,581
428,861
[ "autoit" ]
3,849,484
1
null
null
0
178
The web site was built on asp.net platform. Ajax enabled. It works very well on ie or chrome, but it does not work on mozilla...? You see arrows work great but the numbers does not appear? how can i fix.. [http://dexiab-2.hosting.parking.ru//Default.aspx#world](http://dexiab-2.hosting.parking.ru//Default.aspx#world) t...
ajax or html error on mozilla?
CC BY-SA 2.5
null
2010-10-03T11:02:01.703
2011-03-10T17:12:01.020
2011-03-10T17:12:01.020
352,765
173,718
[ "c#", "asp.net", "ajax", "firefox", "mozilla" ]
3,849,530
1
3,855,767
null
4
2,841
I have a custom DefaultMutableTreeNode class that is designed to support robust connections between many types of data attributes (for me those attributes could be strings, user-defined tags, or timestamps). As I aggregate data, I'd like to give the user a live preview of the stored data we've seen so far. For efficie...
Sharing children among parents in a JTree
CC BY-SA 2.5
0
2010-10-03T11:21:30.530
2012-05-10T08:37:35.403
2010-10-03T13:44:42.447
359,172
359,172
[ "java", "swing", "jtree" ]