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,747,591
1
3,749,489
null
0
734
So now I want to make Estonian wordlist ~about 20m unique words in lowercase. To get input for wordlist, [corpus of Estonian](http://www.keeletehnoloogia.ee/projektid/koondkorpus/koondkorpus?set_language=et) can be used. Corpus files are in Text Encoding Initiative (TEI) format. I tried using regex to find the words. ...
How to build a wordlist
CC BY-SA 2.5
null
2010-09-19T21:43:56.533
2012-04-30T14:28:29.120
2012-04-30T14:28:29.120
79,298
97,754
[ "c#", "large-data-volumes" ]
3,747,730
1
3,747,765
null
15
3,608
Which one is the best practice and ? ## a) Type Table, Surrogate/Artificial Key Foreign key is from `user.type` to `type.id`: ![alt text](https://i.stack.imgur.com/eI7Bd.png) ## b) Type Table, Natural Key Foreign key is from `user.type` to `type.typeName`: ![alt text](https://i.stack.imgur.com/O9Tk4.png)
Relational database design question - Surrogate-key or Natural-key?
CC BY-SA 2.5
0
2010-09-19T22:27:07.943
2016-08-16T01:02:07.017
2010-09-19T23:25:34.567
242,769
242,769
[ "sql", "database-design", "data-modeling", "surrogate-key", "natural-key" ]
3,747,825
1
3,747,921
null
0
1,455
In Flash CS5 it seems like there's an option to import .swc files into the library, but as an RSL (runtime shared library). ![alt text](https://i.stack.imgur.com/cy3hi.png) What's the difference between this option (swc) and using a runtime shared library .swf file? Also, if you select a .swc file, and choose the "i...
How to share graphics between multiple .swf files? (Flash CS5)
CC BY-SA 2.5
null
2010-09-19T22:58:08.677
2010-09-20T15:13:31.283
2010-09-20T15:13:31.283
147,915
147,915
[ "actionscript-3", "rsl" ]
3,747,907
1
3,747,923
null
0
129
I am trying to learn asp.net 4 web app but playing around the web page template shipped in VS 2010. I clicked New Project --> (Web) ASP.Net Web Application I click ok. So now I am trying to manipulate the color of the blue header and the font color or the header text. But I am cant do it thru the css. Any ideas w...
Learning my way thru ASP.Net 4 basic web app
CC BY-SA 2.5
null
2010-09-19T23:32:37.890
2010-09-22T16:27:10.827
2010-09-22T12:43:09.980
279,521
279,521
[ "c#", "asp.net", "visual-studio-2010" ]
3,747,910
1
null
null
2
3,369
I am trying to put social buttons facebook and tweetmeme in our site. I liked the way it's done in yahoo sites. Please look [Yahoo Link](http://finance.yahoo.com/news/General-Motors-to-test-apf-122107979.html?x=0) I looked at yahoo code, but the implementation style is very difficult to understand. It would be great ...
Align social buttons correctly
CC BY-SA 2.5
null
2010-09-19T23:32:54.777
2014-11-17T19:04:54.530
2010-09-20T02:53:26.170
374,760
374,760
[ "html", "css" ]
3,747,942
1
3,748,045
null
0
275
I was looking at ER diagrams today. If we consider two entities, Item and Member in the context of a rental shop, the member can either checkout an item or renew the item. So for this, I came up with the following: ![alt text](https://i.stack.imgur.com/EAWuI.jpg) The idea was that a member can check out any number of...
Do I need to model a dependency explicitly in an ER diagram?
CC BY-SA 2.5
null
2010-09-19T23:48:25.617
2010-09-20T00:30:05.343
null
null
184,046
[ "sql", "database", "database-design", "entity-relationship" ]
3,748,037
1
3,820,976
null
8
5,708
I'm on the [FIRST](http://www.usfirst.org/) robotics team at my high school, and we are working on developing a kiwi drive robot, where there are three [omni wheels](http://en.wikipedia.org/wiki/Omni_wheel) mounted in a equilateral triangle configuration, like this: ![three numbered omni wheels in an equilateral trian...
How to control a kiwi drive robot?
CC BY-SA 2.5
0
2010-09-20T00:26:25.493
2011-04-20T04:30:24.257
null
null
137,746
[ "language-agnostic", "math", "vector", "robotics" ]
3,748,082
1
3,748,093
null
0
1,027
I have a table that keeps the user ratings for items. I want to allow each user to rate an item only once, is there any way to force the database not to allow duplicate for itemId and userId? ![alt text](https://i.stack.imgur.com/1fw0n.png) I don't want each individual field to be a primary key. I want the primary ke...
Relational Database Design - double primary key in one table?
CC BY-SA 2.5
null
2010-09-20T00:48:55.307
2010-09-20T04:59:03.310
2010-09-20T04:59:03.310
13,302
242,769
[ "mysql", "database-design", "primary-key" ]
3,748,252
1
3,748,629
null
9
10,676
I'm running this code: ``` $db = new Mongo("mongodb://user:pw@flame.mongohq.com:27081/dbname"); $collection = $db->foobar; $collection->insert($content); ``` I'm trying to test mongohq by just creating a random collection. I'm getting this error: ``` Fatal error: Call to undefined method MongoDB::insert(...
php mongodb : Call to undefined method MongoDB::insert() in db.php
CC BY-SA 2.5
null
2010-09-20T01:45:38.687
2010-09-20T04:00:22.737
2010-09-20T03:34:05.397
378,226
378,226
[ "php", "mongodb", "mongodb-php" ]
3,748,461
1
null
null
0
204
I have a database table with records and I show them on a view page, as below. ![alt text](https://i.stack.imgur.com/NImGz.png) --- my question is: If I click "Destroy" Button the corresponding "quote" should not be deleted from Database but it should be removed from view page for my browser only (using cookies?) ...
Remove String from View as save as Cookie
CC BY-SA 2.5
null
2010-09-20T03:03:05.383
2010-09-20T20:37:40.267
null
null
349,710
[ "ruby-on-rails", "ruby-on-rails-3" ]
3,748,729
1
3,748,969
null
3
831
I'm trying to do like what you can see on the image below: ![alt text](https://i.stack.imgur.com/yyaiZ.png) I'm using Microsoft Visual Studio 2008. In my Form I added a `TabControl` and set its `Alignment` properties to `Bottom`. But as you can see in the image below, It seems there's something wrong in the display....
Setting TabControl Alignment Properties. C# Winforms
CC BY-SA 2.5
null
2010-09-20T04:36:48.293
2010-09-20T05:55:02.367
null
null
396,335
[ "c#", "winforms" ]
3,748,978
1
3,749,132
null
1
1,493
I want to use a [SlidingDrawer](http://developer.android.com/reference/android/widget/SlidingDrawer.html) in an activity, and I would love to just use the built-in tray handle, rather than try to find or create my own. I [found it online](http://github.com/commonsguy/cw-android/blob/master/Fancy/DrawerDemo/res/drawable...
Where is the drawable for the handle of a SlidingDrawer defined?
CC BY-SA 2.5
0
2010-09-20T05:57:51.920
2010-09-20T07:50:17.860
null
null
65,977
[ "android", "resources", "drawable" ]
3,749,265
1
3,749,285
null
0
958
I have a static web method which returns an object and this object has some values. I am calling this function from an ajax call. ``` $.ajax({ url: "EuclidAktarim.aspx/f_EuclideGonder_", type: "POST", data: "{_sTCKimlikNo:'" + tc + "', _iKlinik_id:" + iKlinikId + ", _iYil:" + iYil + ...
Reading json return value
CC BY-SA 2.5
null
2010-09-20T07:04:11.513
2010-09-20T07:07:01.963
null
null
117,899
[ "jquery", "json", "asp.net-ajax" ]
3,749,304
1
null
null
1
971
When you insert a flash object into the CKeditor the editor window will show this symbol: ![alt text](https://i.stack.imgur.com/xmavH.png) I was wondering. Is it possible to do something similar when users inserts this tag into the editor (using regex {formbuilder=(\d+)}/ ): {formbuilder=2} If so, could someone ple...
CKeditor - Custom tags and symbols inside the editorwindow
CC BY-SA 2.5
0
2010-09-20T07:09:30.743
2011-01-26T22:35:45.057
2010-09-21T17:57:47.700
286,295
286,295
[ "regex", "tags", "ckeditor", "placeholder" ]
3,749,329
1
3,749,410
null
1
27,917
I am having trouble displaying results from a SQL query. I am trying to display all images and prices from a products table. I am able to display the echo statement "Query works" in the browser. But, the results are not displaying in the browser. ``` if ($count > 0) { echo "Query works"; } else {...
Display SQL query results
CC BY-SA 2.5
0
2010-09-20T07:13:10.967
2013-02-23T20:02:48.997
2010-09-20T08:38:51.547
422,157
422,157
[ "php", "sql" ]
3,749,413
1
null
null
0
301
i have a properties folder and inside of ti contains my jdbc.properties file. the problem is that i am unable to load it succesfuly as it always complains that it cannot locate the file. i have the file currently sitting in the roo directopry fo WEB-INF. when i build and compile my spring mvc it does throw any except...
Best place to put my .poperties files for use with springs PropertyPlaceholderConfigurer?
CC BY-SA 2.5
null
2010-09-20T07:31:19.467
2011-06-23T21:56:38.250
null
null
444,668
[ "spring-mvc" ]
3,749,438
1
3,802,185
null
0
285
I have a concern about the separate line under navigation bar. Please take a look at below screenshot ![alt text](https://i.stack.imgur.com/KIJsh.png) At the "Overview Settings" screen, I implement UITableViewController, and I see the separate line appear natively. But at "Overview" screen, I implement UIViewControlle...
Why there is no separate line under Navigation bar?
CC BY-SA 2.5
null
2010-09-20T07:35:37.763
2010-09-27T08:33:18.530
null
null
374,885
[ "iphone", "uinavigationbar" ]
3,749,650
1
3,749,922
null
3
5,833
I'm trying to create a menu, in which the last menu item (with different class) will stick automatically to the right corner of the menu. I'm attaching a screenshot for this. There are a few menu items on the left and the last item should somehow count the rest of the available space on the right in the menu div, add t...
How to stick the last menu item automatically to the right corner?
CC BY-SA 2.5
0
2010-09-20T08:14:40.483
2010-09-20T11:12:19.533
2010-09-20T08:43:24.523
342,855
342,855
[ "css" ]
3,750,274
1
null
null
3
28,718
Is there any way to prevent the "The application's digital signature cannot be verified" warning message from appearing when you run a Java application from the command line? I'm looking for a that would allow to start an application like this on a continuous integration server, so I need a solution that would not re...
Can I prevent digital signature warning when I start a java application from command line?
CC BY-SA 2.5
0
2010-09-20T09:49:42.523
2012-02-15T13:27:40.030
2010-09-20T16:34:42.247
99,834
99,834
[ "java", "windows", "keystore", "keytool", "security-warning" ]
3,751,428
1
null
null
3
21,468
i have a problem in jw player. i set my player height = 225 width = 400. It is exact 16:9 ratio. If i play any 400x225 resolution video or exact 16:9 ratio video. i get vertical bars at both sides of the player about 5mm each. For ref image is given below. how to overcome this problem. Thanks in advance. ![alt text](h...
jw player size is not appropriate to video resolution
CC BY-SA 2.5
0
2010-09-20T12:22:14.663
2013-12-30T12:54:24.593
null
null
445,518
[ "jwplayer" ]
3,751,858
1
3,752,291
null
1
1,377
I'm getting this error when I deploy a VB.NET application and for the life of me I cannot figure out why. I do not get this error when I run the app from the IDE and the test machine I am deploying it to has a similar configuration to the dev machine...Windows 7 & .NET 3.51 SP1 and 4.0. The app bombs out when the mai...
"Collection was modified; enumeration operation may not execute" error on deployment
CC BY-SA 2.5
null
2010-09-20T13:22:30.127
2010-09-20T14:14:13.180
null
null
74,238
[ "vb.net" ]
3,751,990
1
3,752,517
null
40
77,295
I've seen the following thread which is related to my question: [WPF ComboBox: background color when disabled](https://stackoverflow.com/questions/2388833/wpf-combobox-background-color-when-disabled) The above deals with changing the Content Template for a `ComboBox`. I am working with WPF, am somewhat new to Style...
How to change disabled background color of TextBox in WPF
CC BY-SA 3.0
0
2010-09-20T13:38:02.697
2016-05-24T06:29:43.460
2017-05-23T11:47:00.513
-1
452,763
[ "wpf", "templates", "textbox", "background", "controls" ]
3,752,015
1
3,752,039
null
1
1,037
Is it possible to customize a tree widget so that the full row will be selected and also move the items a little to the left so that there will not be that much white space? I would like it to get it looking like this: ![alt text](https://i.stack.imgur.com/1gdjh.png) Instead of the default look that is this: ![alt ...
Customize a Qt Tree Widget
CC BY-SA 2.5
null
2010-09-20T13:41:00.583
2010-09-20T13:44:18.560
null
null
9,789
[ "qt4" ]
3,752,476
1
3,753,428
null
43
63,507
I have already taken a look at this question: [SO question](https://stackoverflow.com/questions/1616767/pil-best-way-to-replace-color) and seem to have implemented a very similar technique for replacing a single color including the alpha values: ``` c = Image.open(f) c = c.convert("RGBA") w, h = c.size cnt = 0 for px ...
Python: PIL replace a single RGBA color
CC BY-SA 4.0
0
2010-09-20T14:37:19.750
2019-03-17T16:04:43.187
2019-03-17T16:04:43.187
1,371,141
141,555
[ "python", "colors", "python-imaging-library" ]
3,752,575
1
null
null
-2
143
![alt text](https://i.stack.imgur.com/lGvxY.jpg) ![alt text](https://i.stack.imgur.com/FBVRn.jpg) ![alt text](https://i.stack.imgur.com/NNF31.jpg) From the above graphs I know there are `9` sections,but why in the 1st graph it shows `0900`? How to read numbers in PE format?
Understanding numbers in PE
CC BY-SA 2.5
null
2010-09-20T14:49:05.847
2011-02-27T02:28:22.267
2020-06-20T09:12:55.060
-1
444,905
[ "portable-executable" ]
3,752,758
1
null
null
0
957
In Eclipse Ganymede (3.4), you could navigate to: > Window > Preferences > Validation ... and enable/disable various Validators. This feature seems to have disappeared in 3.5. I can't find any documentation pointing me to a new location. This is what I'm expecting: ![Eclipse Validator Preferences](https://i.stack....
Configure Code Validation in Eclipse Galileo (3.5)?
CC BY-SA 2.5
null
2010-09-20T15:09:06.133
2010-09-21T18:17:12.777
2010-09-20T18:33:31.633
176,741
176,741
[ "java", "eclipse", "syntax-checking" ]
3,753,055
1
3,753,121
null
7
26,262
![alt text](https://i.stack.imgur.com/BvgT0.gif) How to display 192 character symbol in perl ?
How can I display Extended ASCII Codes characters in Perl?
CC BY-SA 2.5
0
2010-09-20T15:40:17.197
2021-11-28T21:53:15.020
2010-09-20T16:47:57.133
2,766,176
352,860
[ "perl", "ascii", "extended-ascii" ]
3,753,098
1
3,777,002
null
2
358
I have a desktop application written in Ruby that is using GTK2. It's just a small test application to play with GTK2, but I'm having problems achieving what I want to do. Is there any way using GTK2 to get at the titlebar (apart from setting the title), specifically to either add a button to it (beside the min/max/etc...
Is there a way to make changes to the titlebar with GTK2?
CC BY-SA 2.5
null
2010-09-20T15:44:45.993
2014-03-13T06:51:39.160
null
null
352,636
[ "ruby", "titlebar", "gtk2" ]
3,753,206
1
3,758,488
null
0
503
What I am trying is the following: 1. I got an MVC app. running DIRECTLY in "Default Web Site"... 2. I got another app. ( ProductionService ) which is another standalone app.. Looks like this in IIS-Manager: ![alt text](https://i.stack.imgur.com/Ct94r.png) My problem is, that a requets to "ProductionService" is ...
Multiple ASP.net MVC2 applications on IIS7 ( hosting an MVC app. in another MVC app. )
CC BY-SA 3.0
null
2010-09-20T15:57:35.150
2014-05-23T09:04:16.063
2014-05-23T09:04:16.063
759,866
109,321
[ "asp.net-mvc", "iis", "asp.net-mvc-2", "iis-7", "asp.net-mvc-routing" ]
3,753,308
1
4,081,258
null
1
692
My dropdownlist width is smaller than the longest text in the SelectList. When I click the dropdown, it resizes to fit properly. If I remove the .accordion from the div, the dropdowns all size correctly when the page loads. How can I get it to size properly? This is how I set the accordion. ``` $("#acc").accordion...
DropDownList not autosized properly within Jquery UI Accordion
CC BY-SA 2.5
null
2010-09-20T16:08:40.207
2010-11-02T19:11:15.347
2010-09-21T15:03:16.623
239,793
239,793
[ "jquery", "drop-down-menu", "accordion", "jquery-ui-accordion", "html.dropdownlistfor" ]
3,753,511
1
3,754,188
null
1
2,093
![alt text](https://i.stack.imgur.com/pKWR9.png) CSS: ``` select { float:left; background:url(../images/bg_search_sml.png) top left repeat-x; border:none; width:200px; font:15px Arial, Helvetica, sans-serif; letter-spacing:-1px; padding:7px 0 10px; } option { height:auto; outline:none; border:none; } ``` Why only ...
CSS opera problem with <select> tag
CC BY-SA 2.5
null
2010-09-20T16:38:46.073
2010-09-20T18:13:08.600
null
null
267,679
[ "html", "css" ]
3,753,696
1
3,754,155
null
0
1,133
I am trying to combine bold and regular text in a textfield but how do I embed an font family and not just a single style of a font? See example of how I embedded a font, you can only choose one style: "regular", "bold", "italic" or "bold italic" at once: ![alt text](https://i.stack.imgur.com/oekAf.png) However, whe...
Flash CS5: combining bold and regular text in a textfield?
CC BY-SA 2.5
null
2010-09-20T17:04:20.137
2010-09-21T12:27:09.160
null
null
147,915
[ "flash", "actionscript-3", "fonts", "flash-cs5" ]
3,753,743
1
3,753,868
null
0
577
I have created a web application and site collection on a sharepoint server 2010 which is installed on remote server (Windows Server 2008). Everything is working, except that, when I try to create workflow for this site at Visual Studio 2010, it throws the following exception: ![alt text](https://i.stack.imgur.com/EA4...
sharepoint connection error
CC BY-SA 2.5
null
2010-09-20T17:11:36.897
2010-09-20T17:29:10.247
2010-09-20T17:16:47.480
199,122
388,444
[ "visual-studio-2010", "sharepoint-2010" ]
3,753,843
1
3,754,781
null
0
2,171
![alt text](https://i.stack.imgur.com/0d072.png)After struggling all weekend, I finally have a sphere reflecting its environment in OpenGL. It almost looks good. Problem is, certain features don't line up. I can't find much information on the topic of OpenGL sphere mapping, outside of a two page section in the Red Book...
OpenGL CubeMap Texture Dimensions
CC BY-SA 2.5
null
2010-09-20T17:25:09.487
2010-09-21T15:12:22.723
2010-09-20T18:35:57.947
364,015
364,015
[ "opengl", "rendering", "textures" ]
3,754,057
1
3,754,761
null
5
3,643
I am having an issue where the background color is behaving unexpectedly when the viewport is shrunk to a size smaller than that specified for some of my elements. While the scroll bars appear correctly the background is not what I would expect. When the viewport is as large or larger the backgrounds behave as intended...
Viewport width causing background to not show as expected
CC BY-SA 2.5
0
2010-09-20T17:55:27.077
2011-05-31T15:49:20.693
null
null
61,654
[ "css", "html", "viewport" ]
3,754,469
1
3,755,460
null
8
14,606
How to fix `display:inline-block;` on IE6 ? My html Page [http://www.faressoft.org/tutorialTools/slideShow/](http://www.faressoft.org/tutorialTools/slideShow/) ![alt text](https://i.stack.imgur.com/KxNxB.gif)
How to fix display:inline-block on IE6?
CC BY-SA 2.5
0
2010-09-20T18:46:44.650
2010-09-20T21:08:35.730
2010-09-20T18:54:09.767
423,903
423,903
[ "html", "css", "internet-explorer", "internet-explorer-6" ]
3,754,813
1
3,755,106
null
2
475
Im using firebug to debug jquery and in the dom tab i can see all the vars and arrays in there. How do I access the different arrays and vars in the dom? Cheers Ke![alt text](https://i.stack.imgur.com/mzDlB.jpg) I cannot access these object items, even though firefox lists them, i have sitems in the top level of the...
jquery - how do i access those arrays and variables in the dom?
CC BY-SA 2.5
null
2010-09-20T19:28:24.487
2010-09-21T21:49:59.610
2010-09-21T19:37:03.477
264,975
264,975
[ "javascript", "jquery", "firebug" ]
3,754,824
1
3,757,135
null
0
161
I'm trying to add Aptana to my Eclipse installation. I'm trying to do so on Win7 x64. I've tried both x86 and x64 versions of Eclipse. Most of the time Eclipse would install just fine, run okay, but as soon as I try to pluin Aptana it has problems. It will start up, then encounter an error immediately and close. Right ...
Trouble plugging Aptana into Eclipse
CC BY-SA 3.0
0
2010-09-20T19:30:08.923
2015-04-17T00:09:28.367
2015-04-17T00:09:28.367
122,012
376,386
[ "eclipse", "eclipse-plugin", "aptana" ]
3,754,964
1
3,755,114
null
5
12,026
While converting a desktop application to a web app, I've run across my ignorance when attempting to implement a multi-column data entry form using CSS. I'm resolved to avoid using tables for this type of thing, and while I found a good [reference](http://articles.sitepoint.com/article/fancy-form-design-css) to layin...
How to create multi-column data entry form using CSS in Asp.Net?
CC BY-SA 3.0
0
2010-09-20T19:50:59.807
2013-05-03T20:09:41.237
2013-05-03T20:09:41.237
23,199
357,859
[ "asp.net", "css", "forms", "data-entry" ]
3,755,200
1
3,790,298
null
1
4,551
I have a XSD in local , and I need to import the same into a WSDL. I have couple of other xsds too which are already on the production namespace. Now I have little clue as how to make this XSD that is only in my local to be made available in my WSDL file to test the webservice using soapUI. So questions, what will b...
How to specify schemalocation for an xsd in local folder, while importing it into a wsdl file
CC BY-SA 2.5
0
2010-09-20T20:26:42.960
2010-09-24T19:25:38.020
2010-09-21T06:12:06.617
236,998
236,998
[ "namespaces", "xsd", "wsdl" ]
3,755,398
1
3,755,967
null
1
977
``` private static void writeData( byte[] file, HttpServletResponse response ) throws IOException { .... // Send the data response.setContentLength(file.length); response.getOutputStream().write(file); } ``` Recently, I've found in IE8 that some connections close while requesting files to download...
Possible effects of writing large byte arrays to an output stream?
CC BY-SA 2.5
null
2010-09-20T20:52:15.740
2010-09-21T19:38:29.187
2010-09-21T18:17:00.557
78,182
78,182
[ "java", "internet-explorer-8", "streaming", "weblogic" ]
3,755,909
1
null
null
1
325
In the screen shot you see a list of items on the left (not floated) and a display box on the right (floated). How can I prevent the left item's li element from cutting into the display box. The li content follows the flow and breaks to a new line before running into the display box, but the li element, as in the conta...
Left content cuts into right floated content
CC BY-SA 2.5
null
2010-09-20T22:12:06.690
2012-07-23T20:37:00.207
2012-07-23T18:47:55.433
44,390
441,784
[ "html", "css", "css-float", "overlap" ]
3,755,987
1
3,800,545
null
7
526
``` <script src="/c/Currency.js" type="text/javascript" ></script> <form id="form1" runat="server"> <asp:ScriptManager ID="ScriptManager1" runat="server" EnablePageMethods="true" > </asp:ScriptManager> <div id="Content"> <div class="nobg"> <div id="Top"> <div class="left"> <a href="index.html"><img src="...
Covered from html to aspx page, but the menus disappeared, why?
CC BY-SA 3.0
null
2010-09-20T22:30:50.193
2014-04-08T17:49:16.087
2014-04-08T17:49:16.087
3,447,910
173,718
[ "c#", ".net", "html", "interface", "asp.net" ]
3,756,061
1
3,934,841
null
0
560
After upgrading to IE9, InfoPath forms consistently fail on radio button selection. This occurrs even when using compatibility mode. ![IE 9 InfoPath Error Screenshot](https://i.stack.imgur.com/T5OJN.png)
IE9: radio button selection fails with Infopath forms
CC BY-SA 2.5
null
2010-09-20T22:44:07.773
2010-10-14T15:28:29.373
null
null
1,551
[ "javascript", "sharepoint", "selection", "infopath", "internet-explorer-9" ]
3,756,063
1
null
null
5
5,910
I'm trying to build a treeview like file list in a richtext box. It should look like an explorer treeview. My code is able to get an resize the icon, but the transparency is missing (light gray background instead of transparency). What do I need to change here? Is the Image format wrong? Is there a better way to add a...
Icon to Image - transparency issue
CC BY-SA 2.5
0
2010-09-20T22:44:45.810
2010-10-07T22:03:17.530
2010-10-07T22:03:17.530
216,294
216,294
[ "c#", ".net", "image", "icons", "transparency" ]
3,756,069
1
3,764,110
null
0
850
Hey! I was looking at a cool layout example in particular the V3FluidLayout.xaml found inside this set of examples : [http://gallery.expression.microsoft.com/en-us/DynamicLayoutTrans](http://gallery.expression.microsoft.com/en-us/DynamicLayoutTrans) Anyhow - this appears to be a silverlight app - it runs within a brow...
Expression blend convert example from Silverlight into WPF
CC BY-SA 2.5
null
2010-09-20T22:45:36.043
2010-09-22T16:16:28.147
null
null
265,683
[ "c#", "wpf", "xaml", "expression-blend" ]
3,756,367
1
null
null
0
235
I made a tab bar application with several tab bar buttons. Each button is linked to a separate xib file. This works for a xib with a UIViewController and a xib with a UITableViewController. However, it does not work for a xib with a UINavigationController. On the left you can see what it looks like in Interface Builde...
Navigation-based app + tab bar
CC BY-SA 2.5
null
2010-09-20T23:49:14.290
2011-06-28T08:13:48.427
2010-09-21T01:23:54.547
404,020
404,020
[ "objective-c", "cocoa-touch", "xcode", "uinavigationcontroller", "uitabbar" ]
3,756,385
1
null
null
0
377
I try to send parameter from menu page to My home page which include both the menu page and the page which comes through a parameter from one href form menu page . MainPage inside folder in my web app, and all other jsps and the menue inside AdminPages folder inside the web-inf folder , so when i call AnyPage.jsp from...
Are the parameters sent from one jsp to another jsp page are saved?
CC BY-SA 2.5
null
2010-09-20T23:54:07.273
2010-09-21T02:27:24.067
null
null
2,067,571
[ "jsp", "parameters" ]
3,756,395
1
3,778,236
null
19
19,203
I am trying to add a custom control as the titleView in a UINavigationBar. When I do so, despite setting the frame and the properties that would normally assume full width, I get this: ![alt text](https://i.stack.imgur.com/NNgHb.png) The bright blue can be ignored as it is where I am hiding my custom control. The iss...
How can I get a full-sized UINavigationBar titleView
CC BY-SA 2.5
0
2010-09-20T23:55:50.523
2017-10-15T12:42:03.803
2017-05-23T12:17:32.580
-1
69,634
[ "iphone", "uiview", "uinavigationbar", "uinavigationitem" ]
3,756,629
1
3,757,221
null
0
140
When I open SVN working folder with Dreamweaver, it creates additional folder and files. ![alt text](https://i.stack.imgur.com/0UAWe.jpg) Do I have to commit it to the SVN or don't?
Open with DW adds folder/files to .svn folder
CC BY-SA 2.5
null
2010-09-21T01:10:30.173
2010-09-21T05:16:15.393
2010-09-21T04:46:08.337
351,564
351,564
[ "svn", "dreamweaver" ]
3,756,920
1
3,758,286
null
0
2,588
I know this is probably a simple question, but I can't seem to figure it out. First of all, I want to specify that I did look over Google and SO for half an hour or so without finding the answer to my question(yes, I am serious). Basically, I want to rotate a Vector2 around a point(which, in my case, is always the (0...
What's wrong with this XNA RotateVector2 function?
CC BY-SA 2.5
null
2010-09-21T02:34:06.203
2010-09-21T09:58:03.013
null
null
395,386
[ "c#", "vector", "xna", "rotation" ]
3,756,985
1
3,757,043
null
3
6,468
I'm not sure how to describe this without an image, so attached is a quick snip from what I want to do in a batch file (Windows 7 Enterprise 32 bit) ![LAN Proxy](https://i.stack.imgur.com/RFUQf.png) In Internet Options, under the Connections tab, there's a LAN settings button (marked in red), that opens the displayed...
Altering LAN Settings from a batch file and/or C#?
CC BY-SA 2.5
0
2010-09-21T02:53:46.897
2018-03-05T15:00:40.150
2010-09-23T16:36:07.457
160,527
160,527
[ "c#", "proxy", "batch-file" ]
3,757,017
1
null
null
2
585
Apple responded to my bug report with "We believe this issue has been addressed in iOS 4.2 b1 (8C5091e). Please let us know whether or not you continue to experience this issue with the newly released software by updating this bug report." I guess this acknowledges that the issue is in their code, not mine. I'll updat...
Truly bizarre data reported by Leaks using CoreData on iPad
CC BY-SA 2.5
0
2010-09-21T03:04:26.367
2010-10-04T15:35:12.713
2010-09-26T20:08:16.450
115,262
115,262
[ "objective-c", "cocoa-touch", "ipad", "core-data", "ios" ]
3,757,232
1
3,757,267
null
1
598
![alt text](https://i.stack.imgur.com/pOIbo.png) You guys get what I mean. I have no idea how to do this. There are no tutorials anywhere and so far I've spent about 4 hours on this to no avail. Can anyone point me to anything useful or give me a quick run down on how I would achieve this? Cheers.
How Do I Create A Page Scroller Like In Apple's iBooks?
CC BY-SA 2.5
0
2010-09-21T04:06:30.523
2010-09-21T08:59:29.753
null
null
321,090
[ "iphone", "objective-c", "ibooks" ]
3,757,418
1
null
null
0
128
![alt text](https://i.stack.imgur.com/PqmVu.jpg) A container that contains a box centered horizontally and a line centered vertically beside the left or the right side of the box. The width of the container may change dynamically so the line should also change its width (automatically). I hope the image explains that ...
An HTML challenge
CC BY-SA 2.5
null
2010-09-21T04:56:21.293
2017-06-11T08:11:45.567
2017-06-11T08:11:45.567
4,370,109
453,478
[ "html" ]
3,757,565
1
3,758,524
null
1
1,108
how we can lessen the length of Dividing bar between two components. like in this example i want the length only of two pixel. ![alt text](https://i.stack.imgur.com/VCzNl.png)
How to decrease the width of HDividedBox divider bar length in Flex?
CC BY-SA 2.5
null
2010-09-21T05:35:53.017
2010-09-21T08:30:45.110
null
null
225,402
[ "apache-flex", "actionscript-3" ]
3,757,606
1
null
null
1
279
![alt text](https://i.stack.imgur.com/8XC53.png) what will be minimum no of table will be mapped from this entity relationship model. here M1 IS PRIMARY KEY. P1 IS PRIMARY KEY, N1 IS DESCRIMINATOR OF WEAK ENTITY SET E3. AND R1 IS A RELATION SHIP (MANY TO ONE)(FROM E1 TO E2) R2 IS A RELATION SHIP (MANY TO ONE )(FROM...
Minimum no of table generation from E-R mapping
CC BY-SA 2.5
null
2010-09-21T05:45:24.860
2013-09-02T19:12:14.853
null
null
430,803
[ "database" ]
3,758,023
1
3,758,063
null
29
27,210
How can I use this square cursor (image below) in the text `<input>` tags? ![C:\WIKIPEDIA](https://i.stack.imgur.com/lbgjU.jpg)
How to use square cursor in a HTML input field?
CC BY-SA 4.0
0
2010-09-21T07:09:32.340
2021-12-23T04:02:40.363
2021-12-23T04:02:40.363
4,294,399
244,413
[ "javascript", "html", "css", "text-cursor" ]
3,758,175
1
3,758,275
null
5
3,231
My application support to display some screen in landscape mode, and in landscape mode, I set to hide the status bar to get mode space to display data. The problem is while hiding the status bar and rotate screen, it leave a white pace at status bar position until the screen is rotated completely as below screenshot. ...
hide status bar in landscape mode leave a blank space when rotating
CC BY-SA 2.5
null
2010-09-21T07:33:24.637
2010-09-21T07:49:54.690
null
null
374,885
[ "iphone", "hide", "statusbar" ]
3,758,354
1
3,758,413
null
1
396
I'm not the best in Maths, but for what I am doing now I need to calculate the angle of the vector which is shown as arrow in the picture below: ![alt text](https://i.stack.imgur.com/9k67M.png) I have a point A and a point B in a 2D plane. I need to calculate the following: -
Angle of a vector pointing from A to B
CC BY-SA 2.5
null
2010-09-21T08:02:59.927
2010-09-21T19:41:13.323
2010-09-21T19:41:13.323
49,246
251,848
[ "math", "vector", "atan2" ]
3,758,366
1
3,758,417
null
1
154
I don't have much experience in SQL so I think this is not a dumb question. I have 2 tables like this. ![alt text](https://i.stack.imgur.com/zn1jM.jpg) A .. G are the members of a hierarchy. Now my requirement is as follows. > I need to filter out the members which has status = 0 from Members table.But, If the selected...
SQL querying over multiple tables
CC BY-SA 2.5
0
2010-09-21T08:05:12.610
2010-09-21T14:43:20.867
2020-06-20T09:12:55.060
-1
76,465
[ "sql", "sql-server", "algorithm" ]
3,758,731
1
null
null
5
12,827
Can I change back/fore color of tabs in Visual Studio 2008? ![enter image description here](https://i.stack.imgur.com/K9U7Y.png)
Visual Studio Tab change color?
CC BY-SA 3.0
0
2010-09-21T09:01:04.073
2017-10-11T07:41:12.357
2012-08-29T23:29:30.833
419
238,089
[ "visual-studio-2008", "colors", "tabs" ]
3,758,766
1
4,955,881
null
2
2,855
I am working on Weblogic 10.3.2, JSF 1.2, Richfaces 3.3.2 and Facelets 1.1.14. I have a serious performance problem, particularly showing my home page, which contains a very complex rich:datatable. When deploying the application on my local server, a request can take over 5 seconds to complete. The home page is a u...
JSF - RichFaces performance problems showing complex page
CC BY-SA 2.5
0
2010-09-21T09:06:18.333
2012-04-02T14:50:00.700
2010-09-21T14:57:11.790
125,713
125,713
[ "java", "performance", "jsf", "richfaces" ]
3,758,830
1
3,759,051
null
4
3,894
I'm looking for an affordable diagramming component for a C#/.NET (WinForms) application that will let users create diagrams like this one: ![alt text](https://i.stack.imgur.com/7HB6t.png) What would you recommend to me?
.NET Block Diagram Component
CC BY-SA 2.5
null
2010-09-21T09:14:49.253
2014-05-28T10:27:11.680
2010-09-21T09:22:01.030
204,723
63,730
[ "c#", ".net", "winforms", "diagramming" ]
3,758,987
1
3,759,583
null
6
1,623
I am started working on resume retrieval(document) component based on lucene.net engine. It works great, and it fetches the document and score it based on the > the idea behind the VSM is the more times a query term appears in a document relative to the number of times the term appears in all the documents in ...
Calculate the score only based on the documents have more occurance of term in lucene
CC BY-SA 2.5
0
2010-09-21T09:34:41.210
2012-08-29T20:55:18.027
2010-09-21T09:41:52.277
97,572
97,572
[ "c#", "java", "search", "lucene", "lucene.net" ]
3,759,013
1
3,759,029
null
4
715
What is the best way to make something like a mask with rounded corners for an image using CSS/JS/HTML? So, I need to add rounded corners to a rectangle image. I thought about adding 4 graphic elements like this one ![alt text](https://i.stack.imgur.com/hM3YJ.png) above the image at its corners to hide some little part...
Add rounded corners to a rectangle raster image
CC BY-SA 2.5
0
2010-09-21T09:38:15.533
2011-02-28T11:32:55.013
null
null
135,829
[ "javascript", "html", "css", "image", "transparency" ]
3,759,487
1
3,759,655
null
0
1,771
I'm writing a custom control and I want to add a "MessageText" property of type String: ``` <Browsable(True), DefaultValue(""), Category("CustomControls"), Description("Blah."), DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)> Public Property MessageText As String ``` The MessageTe...
.NET 2010 custom control, multiline String property to be edited in the designer
CC BY-SA 2.5
null
2010-09-21T10:40:58.120
2010-09-21T11:06:00.237
null
null
403,335
[ "vb.net", "custom-controls" ]
3,759,785
1
3,759,814
null
1
116
I have the following code that automates a slideshow between the different slides as shown in the picture. This is now producing a fadeIn whenever I click on the numbers shown on the pic, but I'd like to automate the transition betweeh 1 to 5 and when on 5 return to 1 again on a timed maner. The screenshot is: ![al...
How could I automate this fadeIn to become a slideshow?
CC BY-SA 2.5
null
2010-09-21T11:24:24.303
2010-09-21T11:36:40.217
null
null
455,178
[ "javascript", "jquery", "fadein" ]
3,759,815
1
3,798,743
null
2
3,391
Where can I find following viewer within Visual Studio? ![alt text](https://i.stack.imgur.com/UdNDi.png)
Where is the Xap file content viewer in Visual Studio?
CC BY-SA 2.5
null
2010-09-21T11:29:25.677
2010-09-26T16:33:43.937
null
null
4,035
[ "silverlight", "user-interface", "visual-studio-2010" ]
3,760,030
1
null
null
1
1,070
I need a corner like in the Maps app. ![alt text](https://i.stack.imgur.com/44Hq2.png) I tried this code but nothing happens: ``` - (IBAction) performCurl { // Curl the image up or down CATransition *animation = [CATransition animation]; [animation setDelegate:self]; [animation setDuration:1.0f]; [animation setTimi...
corner like in maps App
CC BY-SA 2.5
null
2010-09-21T11:55:39.170
2011-02-28T09:51:39.607
null
null
347,741
[ "iphone", "objective-c" ]
3,761,021
1
null
null
0
38
![alt text](https://i.stack.imgur.com/AxN3P.png) I can not use the toolbar lib even with sdk 6.0 I am using 6.0 Can anyone help me .. i m stuck here
Toolbar package missing in sdk 6.0
CC BY-SA 2.5
null
2010-09-21T13:55:38.947
2010-09-21T15:34:28.760
null
null
410,693
[ "java", "blackberry" ]
3,761,080
1
3,763,107
null
1
318
i have create a gallery with jquery. [http://www.rialto-design.de/endkunden/galerie/galerie-armaturen/?album=3&gallery=2](http://www.rialto-design.de/endkunden/galerie/galerie-armaturen/?album=3&gallery=2) so my question is, how can i make the thumbs scroll left or right. when the cursor is on the right or left side ...
Scroll if on the right side (jQuery)
CC BY-SA 2.5
null
2010-09-21T14:02:57.980
2010-09-22T22:44:25.000
null
null
290,326
[ "javascript", "jquery" ]
3,761,111
1
3,761,998
null
3
2,379
I'm building a small workflow application to test out the abilties of WF. What i got so far: ![Workflow example](https://i.stack.imgur.com/dRTgz.jpg) I can run the workflow and add the parameter that is used in the StartProcess operation. So the flow goes through the first decision and comes to either Invoice payment ...
How to handle user input in a workflow
CC BY-SA 2.5
null
2010-09-21T14:06:37.113
2010-09-21T15:45:34.687
null
null
448,195
[ "workflow-foundation", "workflow-foundation-4" ]
3,761,757
1
3,762,526
null
3
12,964
A search key ``` --------------------------- | | A | B | C | D | --------------------------- | 1 | 01 | 2 | 4 | TextA | --------------------------- ``` An Excel sheet ``` ------------------------------ | | A | B | C | D | E | ------------------------------ | 1 | 03 | 5 | C | TextZ | | ----------...
How to find a matching row in Excel?
CC BY-SA 2.5
0
2010-09-21T15:19:08.830
2010-09-22T09:33:29.157
2010-09-22T09:33:29.157
33,311
33,311
[ "vba", "excel" ]
3,762,306
1
3,893,341
null
6
4,151
I try to implement a hover effect (effect when button is pressed) through putting a semi transparent PNG file on top of the button background and the button icon. Unfortunatly the button background file is a 9-PATCH-PNG which causes some trouble here: It "swallows" everything on top of its layer and doesnt allow to cov...
How to cover a 9-PATCH-PNG entirely?
CC BY-SA 2.5
0
2010-09-21T16:18:18.790
2011-02-18T18:47:39.867
2017-05-23T09:57:58.643
-1
433,718
[ "android", "android-layout", "layer", "nine-patch" ]
3,762,443
1
3,763,862
null
2
8,357
I have a client that has a simple yet complicated request for an excel sheet setup, and I can't for the world thing of where to start. I'm drawing a blank. We have a data range. Example: ``` Quarter Data 2010Q1 1 2010Q2 3 2010Q3 4 2010Q4 1 ``` I have a chart built on top of that. Change ...
Excel chart dynamic range-selection
CC BY-SA 2.5
0
2010-09-21T16:34:32.877
2017-01-09T19:46:45.077
2010-09-22T15:10:20.353
409,025
409,025
[ "excel", "charts", "excel-2007", "offset", "worksheet-function" ]
3,762,471
1
3,762,681
null
0
1,474
``` struct letter { char ch; struct letter *ptr_next; } *ptr_first,*ptr_this; //ptr this contains the address of the first node and ptr this contains the address of last node added. ``` ![alt text](https://i.stack.imgur.com/LUMUL.gif)A word chair has to be inserted in the linked list such that C goes into the first n...
linked list memory diagram
CC BY-SA 2.5
null
2010-09-21T16:38:39.310
2010-09-21T17:35:55.897
2010-09-21T16:53:42.270
null
null
[ "c", "linked-list" ]
3,762,542
1
3,763,033
null
12
5,075
I have a deadlock when I invoke the UI thread from a worker thread. Indeed, the worker thread is blocked on the invoke line: ``` return (ucAvancementTrtFamille)mInterfaceTraitement.Invoke(d, new object[] { psFamille }); ``` The weird thing is that the UI Thread (which, correct me if I'm wrong, is the main thread) is...
Deadlock when invoking the UI thread from a worker thread
CC BY-SA 3.0
0
2010-09-21T16:48:18.407
2013-09-15T18:24:23.177
2013-09-15T18:24:23.177
41,071
194,711
[ "c#", ".net", "multithreading", "deadlock", "invoke" ]
3,762,617
1
3,763,979
null
0
420
I have a chart with some lines in a WPF application. When the line is (mouse) selected by the user I need to change its look. à la : ![alt text](https://i.stack.imgur.com/KpQti.gif) In WPF the two lines code could be as follows: ``` <Line X1= "10" Y1="20" X2="150" Y2="20" Stroke="Black" St...
Change selection "style" in WPF
CC BY-SA 2.5
null
2010-09-21T16:58:27.763
2010-09-22T13:22:18.867
2010-09-22T13:22:18.867
185,593
185,593
[ ".net", "wpf" ]
3,762,740
1
3,873,665
null
6
1,017
I'm using gdiplus to "stroke" a textout. In certain circumstances, we see a "spike" appearing on the top or bottom of the graphic, and I'm not really sure why. We can minimize this by adjusting stroke width and font size, but thats not a good solution. I'm hoping someone can explain the problem to me. ![Spikey Bug]...
FileModeWinding and DrawPath cause odd spikes to appear
CC BY-SA 2.5
null
2010-09-21T17:17:42.713
2011-06-24T14:35:58.550
2011-06-24T14:35:58.550
9,453
357,499
[ "gdi+" ]
3,762,782
1
3,765,242
null
1
1,777
I trying to port System.Drawing: public LinearGradientBrush( Rectangle rect, Color color1, Color color2, float angle ) to System.Windows.Media . I can get the angle to be correct but I can't get the start and end to be at the corners. I have tried scaling the brush's transform but that ends up messing ...
How to convert a System.Drawing.Drawing2D.LinearGradientBrush to a System.Windows.Media.LinearGradientBrush?
CC BY-SA 2.5
null
2010-09-21T17:22:58.703
2014-05-30T18:51:59.837
null
null
45,890
[ "wpf", "winforms", "gdi+", "system.drawing" ]
3,762,979
1
4,001,900
null
0
1,335
When Android 2.1 focuses on a text field in a WebView while in Landscape, it does this below. It takes the entire field input area and fills the tiny strip of available screen. The problem here is that when you hit that "Next" button, you have enough idea what field you are in. Is there a way to improve this with so...
Android 2.1 WebView and keyboard input
CC BY-SA 2.5
null
2010-09-21T17:46:04.010
2010-12-14T22:09:12.567
2010-09-21T18:11:26.673
62,076
62,076
[ "html", "android", "webview" ]
3,763,635
1
3,763,760
null
3
2,002
In IB, on the .xib where the file's owner is a subclass of UITableViewController, the structure of a cell that I wish to load from the xib is: (UITableViewCell)cell->(UIView)View->(UIButton)but1,but2,but3. I am trying to have the buttons appear on the table without the frame/background of the cell. I've made the ce...
How to make background of UITableViewCell with buttons transparent
CC BY-SA 2.5
0
2010-09-21T19:14:58.587
2010-09-21T19:30:40.280
null
null
127,819
[ "iphone", "sdk", "uitableview", "background" ]
3,763,640
1
null
null
69
18,669
> [How do you implement a “Did you mean”?](https://stackoverflow.com/questions/41424/how-do-you-implement-a-did-you-mean) I am writing an application where I require functionality similar to Google's "did you mean?" feature used by their search engine: ![alt text](https://i.stack.imgur.com/cZCpI.jpg) Is there...
Where can I learn more about the Google search "did you mean" algorithm?
CC BY-SA 2.5
0
2010-09-21T19:15:19.783
2010-09-23T16:39:26.203
2017-05-23T12:19:44.807
-1
439,782
[ "algorithm", "nlp", "spell-checking" ]
3,763,664
1
null
null
1
277
I want to add two table or more consecutively and they must be seemed like one table. ``` <html> <head> <style type="text/css"> .cls { border:1px solid #000000; } .cls td { border:1px solid #000000; } </style> </head> <body> <table class="cls"> <tr> <td>aaa</td><td>bbb</td><td>ccc</td> </tr> ...
Removing table line
CC BY-SA 2.5
null
2010-09-21T19:19:19.643
2010-09-21T19:28:31.733
null
null
134,263
[ "html", "css" ]
3,763,811
1
null
null
9
1,323
In my project I'm using EntityFramework 4 for working with data. I found horrible performance problems with a simple query. When I looked at the profiler on a sql query, generated by EF4, I was shocked. I have some tables in my entity data model: ![Data Model](https://i.stack.imgur.com/xW1Bx.png) It looks pretty sim...
Linq queries in Entity Framework 4. Horrible performance
CC BY-SA 3.0
null
2010-09-21T19:38:55.910
2017-04-15T16:29:02.090
2017-04-15T16:29:02.090
1,033,581
454,362
[ "c#", ".net", "entity-framework", "orm", "performance" ]
3,763,948
1
null
null
0
1,712
Using a dropdown menu, I'm to figure out The code I have so far uses a button to do the queries. (For now only viewing the "View All" --or view specific product type works. The "order by price" high to low, low to high, will be posted as a different question on this site.) ``` <!--category and price form ---------...
Activate SQL query without using a form button using PHP and not JavaScript
CC BY-SA 2.5
null
2010-09-21T19:56:07.247
2010-09-21T20:26:21.067
2010-09-21T20:26:21.067
147,463
422,157
[ "php", "javascript", "forms" ]
3,764,124
1
3,765,337
null
6
2,542
I have a VB6 project that references COMSVCSLib and one of the methods makes calls to COMSVCSLib's SharedPropertyGroupManager.CreatePropertyGroup passing and as parameters. ``` Dim groupName As String Dim spmMgr As COMSVCSLib.SharedPropertyGroupManager Dim spmGroup As COMSVCSLib.SharedPropert...
Why aren't TypeLib enums exposed as enums in Visual Basic 6.0?
CC BY-SA 2.5
0
2010-09-21T20:17:51.780
2010-09-24T22:56:45.640
null
null
151,249
[ "vb6", "enums", "constants", "typelib" ]
3,764,221
1
null
null
1
9,672
I'm in the process of learning how to create an e-commerce site. I'm trying to figure out how to order product results by price. Code below is a menu list to either filter a specific product category or the option to view all products--the code for that works. I'm not sure how to add code to "sort by price" (low to hi...
Filter results by Product Type and Sort List by Price (PHP/SQL)
CC BY-SA 2.5
null
2010-09-21T20:30:26.390
2010-09-21T21:14:28.377
2010-09-21T21:14:28.377
422,157
422,157
[ "php", "sql" ]
3,764,410
1
3,764,488
null
3
2,192
I have a Python application and I decided to do a .exe to execute it. This is the code that I use to do the .exe: ``` # -*- coding: cp1252 -*- from distutils.core import setup import py2exe, sys, os sys.argv.append('py2exe') setup( options = {'py2exe': {'bundle_files': 1}}, windows = [{'script': "SoundLog....
How to make a .exe for Python with good graphics?
CC BY-SA 2.5
0
2010-09-21T20:55:43.240
2013-04-19T22:29:25.150
null
null
187,730
[ "python", "graphics", "wxpython", "py2exe" ]
3,764,486
1
null
null
5
2,665
I am having trouble deciphering a WCF trace file, and I hope someone can help me determine where in the pipeline I am incurring latency. The trace for "Processing Message XX" is shown below, where there appears to be 997ms delay between the Activity Boundary and the transfer to "Process Action" where my service code is...
WCF Trace Log analysis - help
CC BY-SA 2.5
null
2010-09-21T21:08:31.977
2012-10-05T13:21:53.257
null
null
67,538
[ "wcf", "performance", "trace" ]
3,764,651
1
3,844,849
null
3
1,927
Here are my requirements: - - - - `mouseout`- `mouseover`- Here's an example of what I'd like to do: ![alt text](https://i.stack.imgur.com/nPIPq.png)
Tooltip as toolbar: jQuery, CSS, or...?
CC BY-SA 2.5
0
2010-09-21T21:29:22.413
2013-01-30T09:43:47.687
null
null
373,496
[ "jquery", "css", "jquery-plugins", "tooltip" ]
3,764,699
1
3,765,008
null
5
24,761
I have the weirdest bug ever... I'm experimenting with display: table, and my proof of concept works on the very first try after opening a new process, but any subsequent reloading of the page breaks the design. Here is the simple HTML page: ``` <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://ww...
Internet Explorer 8 bug with display: table
CC BY-SA 3.0
0
2010-09-21T21:37:39.803
2013-05-10T16:26:23.733
2013-05-10T16:26:23.733
303,468
303,468
[ "css", "internet-explorer", "internet-explorer-8" ]
3,765,495
1
3,765,563
null
3
4,390
on the backend on symfony 1.4 / Doctrine, you have a tool which allows you to filter data according to date, location, age (and many more according to your model) ![enter image description here](https://i.stack.imgur.com/dnWI3.png) I'm searching a way to do the same (with some customisation such as removing some fiel...
Symfony : How to filter data on the frontend like in the backend
CC BY-SA 3.0
0
2010-09-22T00:36:49.220
2012-08-05T08:58:03.057
2012-08-05T08:58:03.057
569,101
318,071
[ "php", "symfony1", "filtering", "frontend" ]
3,765,952
1
3,765,965
null
1
843
Is it possible to have the keyboard show inside a UIPopOver instead of filling the screen width? something like the image... ![alt text](https://i.stack.imgur.com/QOt97.png)
ipad - keyboard inside popover?
CC BY-SA 3.0
null
2010-09-22T02:39:54.120
2014-10-09T10:54:29.587
2014-10-09T10:54:29.587
759,866
316,469
[ "ipad" ]
3,766,115
1
null
null
-1
70
Am simply executing query , The record count just 2980 , but it allocate around 2MB , I dont How its 2mb, just rendering records without css , how to track , For what reason it showing as 2MB , ![alt text](https://i.stack.imgur.com/rKsW7.gif)
Firefox showing records size as 2MB ,
CC BY-SA 2.5
null
2010-09-22T03:29:28.090
2010-09-22T03:42:01.507
null
null
246,963
[ "php", "mysql", "performance" ]
3,766,612
1
null
null
1
419
Looking at below UML diagram (decorator pattern), what is the name of relationship between Decorator and component? Is it Association? ![Decorator pattern](https://i.stack.imgur.com/yDiiU.gif)
UML notation: What is this relationship?
CC BY-SA 3.0
null
2010-09-22T05:42:00.913
2015-04-29T20:02:22.077
2015-04-29T20:02:22.077
208,997
61,156
[ "uml" ]
3,767,066
1
3,767,305
null
0
1,056
Following [this tutorial](http://blog.jayway.com/2009/03/22/uitoolbars-in-iphone-os-2x/) and [this question](https://stackoverflow.com/questions/3722450/navigation-controller-that-doesnt-use-the-whole-screen), I attempted to create a custom `UIViewController` containing a `UINavigationController`. This mostly worked, e...
Layered UIViewControllers overlaps status bar
CC BY-SA 2.5
null
2010-09-22T07:16:12.943
2010-09-23T00:35:36.050
2017-05-23T10:30:24.960
-1
165,495
[ "iphone", "cocoa-touch", "uiviewcontroller" ]
3,767,606
1
3,767,656
null
7
2,161
My problem is similar to [this](https://stackoverflow.com/questions/2605133/how-do-i-get-co-ordinates-of-selected-text-in-an-html-using-javascript-document-g), but I need a way to get the coordinates of the right side of the selection with Javascript in Firefox. I made a small example to show what I mean: ![alt text](...
How to get the coordinates of the end of selected text with javascript?
CC BY-SA 2.5
0
2010-09-22T08:42:37.340
2013-07-06T16:01:30.293
2017-05-23T10:30:24.960
-1
423,350
[ "javascript", "firefox", "getselection" ]
3,767,696
1
3,809,710
null
1
9,796
I have implemented an autocomplete in my app for zip codes. I am debugging in Firebug and I see in my console that the action is performing and I get a list of zip codes in the list of results, but the actual list is not displaying when I debug. Here's the action in my Customers controller: ``` //the autocomplete re...
ASP.Net MVC Jquery UI Autocomplete - list not showing up when I debug
CC BY-SA 2.5
0
2010-09-22T08:57:25.880
2010-09-28T04:34:07.940
2017-02-08T14:30:22.787
-1
209,081
[ "c#", "asp.net-mvc", "jquery-autocomplete" ]