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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
400,130 | 1 | 400,179 | null | 27 | 26,244 | Let's say I have a class that implements the interface. Something like this:

uses some unmanaged resources, hence the method from releases those resources. should be used like this:
```
using ( ... | How to dispose asynchronously? | CC BY-SA 2.5 | 0 | 2008-12-30T12:14:26.133 | 2021-08-11T12:41:24.117 | 2017-05-23T12:01:33.300 | -1 | 1,679 | [
"c#",
"asynchronous",
"dispose"
] |
401,024 | 1 | 401,031 | null | 1 | 2,552 | Short of inserting a try/catch block in each worker thread method, is there a way to deal with unhandled, non-ui thread, exceptions in Windows Forms?
`Thread.GetDomain().UnhandledException` works great for catching the error, but by then it's too late to do anything about it (besides log it). After control passes out ... | Unhandled, non-ui thread, exceptions in Windows Forms | CC BY-SA 3.0 | null | 2008-12-30T18:18:19.723 | 2013-07-19T15:04:34.763 | 2013-07-19T15:04:34.763 | 2,556,654 | 20,700 | [
"c#",
".net",
"winforms",
"multithreading"
] |
409,259 | 1 | null | null | 180 | 163,836 | I'm trying to do that for a couple of days now, and after reading tons of messages of people trying to do that too, I'm still unable to have a fully working `UITextField` in some of my `UITableViewCells`, just like in this example:

Either I have the form working but... | Having a UITextField in a UITableViewCell | CC BY-SA 3.0 | 0 | 2009-01-03T16:01:16.600 | 2019-05-09T17:40:46.157 | 2016-04-04T15:07:49.280 | 5,580,988 | 50,090 | [
"ios",
"objective-c",
"uitableview",
"cocoa-touch",
"uitextfield"
] |
410,593 | 1 | null | null | 43 | 106,549 | I would like to clarify the differences between by value and by reference.
I drew a picture:

So, for passing by value, a copy of an identical object is created with a different reference, and the local variable is assigned the new reference, so to poi... | Pass by reference and value in C++ | CC BY-SA 4.0 | 0 | 2009-01-04T07:08:36.037 | 2022-08-16T13:54:40.280 | 2022-08-16T13:54:40.280 | 63,550 | 36,064 | [
"c++",
"pass-by-reference",
"pass-by-value"
] |
412,427 | 1 | null | null | 196 | 805,691 | We always write code like this formal:
```
void main(){
if(){
if()
}
```

But when I use [Notepad++](http://en.wikipedia.org/wiki/Notepad%2B%2B), the display is:
```
void main(){
if(){
if()
}
```

How do I ... | Auto-indent in Notepad++ | CC BY-SA 3.0 | 0 | 2009-01-05T06:36:28.643 | 2021-12-20T08:43:14.690 | 2017-05-23T12:34:27.447 | -1 | 51,539 | [
"notepad++",
"indentation",
"code-formatting"
] |
413,876 | 1 | 422,873 | null | 0 | 322 |
### Boring introduction:
In my workplace, we have a very old WinForms product (in market since 1994, and still running on VB3). It has three very different versions, each of them goes to one client. The clients pass it on to their users, some of which are shared. The versions can live side-by-side.
Five years ago,... | Licensing error message with BeCubed 6 | CC BY-SA 2.5 | null | 2009-01-05T17:32:12.923 | 2018-09-19T14:01:22.050 | 2017-02-08T14:09:38.650 | -1 | 9,536 | [
"c#",
"licensing",
"versioning"
] |
414,137 | 1 | null | null | 0 | 3,402 | I'm a bit confused with this one.
I have a Dataset with a BackupDate and a BackupTime as well as a BackupType. The BackupDate is comprised of 12 characters from the left of a datetime string within a table. The BackupTime is comprised of 8 characters from the right of that same datetime string. So for example: Bac... | XY-Scatter Chart In SSRS Won't Display Points | CC BY-SA 2.5 | null | 2009-01-05T19:05:26.150 | 2010-07-04T16:00:05.743 | 2017-02-08T14:09:38.990 | -1 | null | [
"reporting-services",
"charts",
"reporting",
"graphing"
] |
414,470 | 1 | 414,567 | null | 2 | 448 | I have a submit button that is a block of HTML code because of styling and images to make it look better. (I stole most of it from Wufoo).
This is one every form in the application and I was wondering if there is a cleaner way to do this. Something like a partial or helper?
The name of the button "Submit" or "Add Conta... | Rails: Creating an HTML Snippet with a Variable? | CC BY-SA 2.5 | null | 2009-01-05T20:49:58.110 | 2009-01-05T21:18:36.693 | 2020-06-20T09:12:55.060 | -1 | 10,258 | [
"ruby-on-rails"
] |
414,553 | 1 | null | null | 15 | 8,549 | From the outset, collision detection feels like it is an O(n^2) problem.
You have a bunch of objects and you need to check if each object is colliding with any of the other objects. However, I know that it is wildly ineffecient to check each object against all the other objects. Why do a relatively expensive colli... | What technique should be used to prune 2d collision checks? | CC BY-SA 3.0 | 0 | 2009-01-05T21:14:12.567 | 2019-04-18T13:56:49.623 | 2015-06-19T20:18:07.187 | 1,159,643 | 2,635 | [
"data-structures",
"collision-detection",
"spatial",
"broad-phase"
] |
419,964 | 1 | 420,084 | null | 1 | 1,664 | In interface builder i've created a UITextfield within a subclass of a UITableViewCell.
The default font is just too small. If I make it bigger in interface builder it looks a bit ugly. Not as crisply rendered. I'd like a font similar to that used in the addressBook application when you edit a contact. The text their ... | Larger alternative to default UITextfield font that looks GOOD | CC BY-SA 2.5 | null | 2009-01-07T11:29:07.210 | 2009-01-07T12:14:12.003 | 2017-02-08T14:09:41.033 | -1 | 51,420 | [
"iphone",
"cocoa-touch",
"interface-builder"
] |
421,968 | 1 | 422,561 | null | 16 | 13,831 | I need to create a transparent blurred background. Lets suppose I have a border with a white blurry transparent background. Everything that is behind the border is blurred.
I'm trying to avoid dependencies; I'm currently using .NET 3.0, and want it to run with XP too.
Mockup image:
, which is a kind of a combination between M-V-C and M-V-VM. I had posted [this answer](https://stackoverflow.com/questions/322612/what-are-the-most-common-mistakes-made-in-wpf-development#322679) regardi... | M-V-VM - Any Examples of using commands in the ViewModel? | CC BY-SA 2.5 | 0 | 2009-01-08T16:30:11.580 | 2009-01-16T13:53:36.387 | 2017-05-23T12:33:39.607 | -1 | 17,744 | [
"wpf",
"mvvm"
] |
425,803 | 1 | 426,135 | null | 2 | 1,833 | I am trying to use Windows Workflow and have a model that looks similar to the image in the link below:

After each of the Send Activities (`GetSomthing`, `GetSomthingElse`, `GetSomeMoreStuff`) the same custom activity is being called (`LogSomthingBadHappened... | Windows Workflow - IfElse branch | CC BY-SA 3.0 | null | 2009-01-08T20:37:37.507 | 2011-11-20T05:00:11.813 | 2011-11-20T05:00:11.813 | 331,508 | 47,608 | [
"workflow",
"workflow-foundation"
] |
427,848 | 1 | 427,881 | null | 3 | 4,324 | I have to code a simple control in .Net that draws geometry that looks like following image and the geometry doesn't get any more complex than shown in this image, i.e. it will be a few filled polygons and some dashed lines. This is not a static image however, that is drawn once and forgotten. The dimensions of the geo... | WPF v/s System.Drawing | CC BY-SA 3.0 | 0 | 2009-01-09T12:08:47.357 | 2015-06-19T20:21:40.310 | 2015-06-19T20:21:40.310 | 1,159,643 | 25,125 | [
".net",
"wpf",
"system.drawing"
] |
429,718 | 1 | null | null | 6 | 1,248 | How hard would it be to take an image of an object (in this case of a predefined object), and develop an algorithm to cut just that object out of a photo with a background of varying complexity.
Further to this, a photo's object (say a house, car, dog - but always of one type) would need to be transformed into a 3d re... | Image recognition and 3d rendering | CC BY-SA 3.0 | 0 | 2009-01-09T21:00:06.627 | 2013-09-01T03:39:58.977 | 2013-09-01T03:39:58.977 | 1,288 | 32,484 | [
"algorithm",
"image-recognition",
"3d-rendering"
] |
432,349 | 1 | 432,924 | null | 24 | 18,341 | I'm using [LaTeX](http://www.latex-project.org/)'s "[listings](http://en.wikibooks.org/wiki/LaTeX/Packages/Listings)" package to format source code. Unfortunately I get curly quotes instead of straight quotes. Since the curly quotes don't always point in the right direction, it looks bad. How can I get straight quotes ... | How do you display straight quotes instead of curly quotes when using LaTeX's 'listings' package? | CC BY-SA 2.5 | 0 | 2009-01-11T04:25:29.350 | 2018-09-12T09:47:40.893 | 2017-02-08T14:09:43.067 | -1 | 49,404 | [
"latex",
"miktex"
] |
435,925 | 1 | 436,052 | null | 28 | 15,413 | Each item in a WPF ListBox control seems to have a bit of left padding. How can I restyle to remove all padding?

| Remove all left padding from WPF ListBox | CC BY-SA 2.5 | 0 | 2009-01-12T16:15:13.283 | 2011-09-27T15:14:46.210 | 2017-02-08T14:09:43.400 | -1 | 38,309 | [
"c#",
"wpf"
] |
441,038 | 1 | 441,050 | null | 2 | 14,682 | I get this error when debugging my ASP.NET web application after I trigger an UpdatePanel:

htmlfile: Unknown runtime error
and "updatePanelElement.innerHTML=rendering" is highlighted in a ScriptReso... | ASP.NET UpdatePanel Error htmlfile: Unknown runtime error, updatePanelElement.innerHTML=rendering | CC BY-SA 3.0 | null | 2009-01-13T22:11:58.570 | 2015-01-11T16:18:36.213 | 2015-01-11T16:18:36.213 | 964,243 | 83 | [
"asp.net",
"ajax",
"updatepanel"
] |
441,910 | 1 | 441,917 | null | 4 | 1,677 | This is an exact duplicate of: [IE6 issues with transparent PNGs](https://stackoverflow.com/questions/130161/ie6-issues-with-transparent-pngs)
---
Firefox:
IE 6: to their ... | What is the best way to embed HTML in an RSS feed? | CC BY-SA 2.5 | 0 | 2009-01-14T18:58:42.813 | 2012-05-01T08:51:27.760 | 2009-01-16T20:22:20.550 | 28,804 | 28,804 | [
"html",
"django",
"rss"
] |
446,000 | 1 | 449,733 | null | 2 | 1,429 | I have a custom explorer bar (a band object) that hosts a webbrowser control. I can initialize the WebBrowser control properly and have it display web pages.
However, I've noticed that when I resize the explorer bar, to the size of the bar:
## Before Resize:

Do you have to emulate the processor of those machines by interpreting its particular assembly instructions? What else goes into it? How are they typically ... | How do emulators work and how are they written? | CC BY-SA 3.0 | 0 | 2009-01-15T22:10:15.827 | 2013-06-11T16:00:35.517 | 2013-06-11T16:00:35.517 | 13,531 | 2,635 | [
"emulation",
"c64"
] |
452,449 | 1 | 452,534 | null | 0 | 3,451 | When I try to create a new Maintenance Plan in SQL Server, I get the following warning:
> The action you attempted to perform on
a remote instance of SQL Server has
failed because the action requires a
SQL Server component that is not
installed on the remote computer. To
proceed, install SQL Server 2005
Ma... | SQL Complains that Management Tools are not installed, but they are | CC BY-SA 2.5 | null | 2009-01-16T23:45:20.717 | 2009-01-17T00:23:33.900 | 2017-02-08T14:09:46.787 | -1 | 26,624 | [
"sql-server",
"sql-server-2005",
"installation"
] |
452,678 | 1 | 452,682 | null | 1 | 2,959 | I would like to see errors in my terminal colorfully like:

| How can I have a terminal's error messages colored? | CC BY-SA 3.0 | null | 2009-01-17T02:13:32.150 | 2022-04-29T18:27:56.877 | 2015-05-23T07:20:42.140 | 54,964 | 54,964 | [
"macos",
"bash",
"terminal"
] |
453,069 | 1 | 484,899 | null | 20 | 8,694 |
# Update
see [Using Blur Behind on Windows](http://labs.trolltech.com/blogs/2009/09/15/using-blur-behind-on-windows/) for an example of using Qt and [DWM](http://msdn.microsoft.com/en-us/library/aa969540(VS.85).aspx).[alt text http://labs.trolltech.com/blogs/wp-content/uploads/2009/09/blurbehind2.png](http://labs.t... | Qt: Erase background (Windows Aero Glass) | CC BY-SA 2.5 | 0 | 2009-01-17T09:36:53.767 | 2015-04-20T08:41:53.333 | 2017-02-08T14:09:47.800 | -1 | 13,543 | [
"pyqt",
"windows-vista",
"dwm",
"aero-glass"
] |
454,600 | 1 | null | null | 2 | 1,319 | I've written explorer bars (band object) before and . However, I was amazed when I saw this explorer bar by HP that is docked on the right hand side instead:

I've searched up google for a bit and I can't ... | How to write a Vertical Right-Side IE Explorer Bar | CC BY-SA 2.5 | 0 | 2009-01-18T03:40:43.423 | 2011-06-29T04:15:59.053 | 2017-02-08T14:09:48.140 | -1 | 53,735 | [
"c++",
"windows",
"internet-explorer",
"winapi",
"browser"
] |
458,384 | 1 | 458,426 | null | 3 | 2,807 | Is there a way with CSS to wrap text on sides of an element (an image for example). I am trying to have an image positioned in the middle of a paragraph and would like text to flow over it. Please see the image for an example.

Positioning an ... | Text wrapping around an image (or any element) | CC BY-SA 3.0 | null | 2009-01-19T17:15:59.280 | 2015-08-19T15:33:21.773 | 2015-08-19T15:33:21.773 | 3,204,551 | 56,747 | [
"html",
"css",
"word-wrap"
] |
461,748 | 1 | 481,231 | null | 5 | 2,298 | My TabItems before attempting to apply a left margin of 10 look like:

After attempting to apply the left margin of 10 to the blue tab, the blue tab gets cut off like:

| How to get sitelinks to appear on Google Search? | CC BY-SA 3.0 | 0 | 2009-01-24T09:20:59.390 | 2018-08-13T21:43:50.787 | 2016-12-03T10:42:48.557 | 502,381 | null | [
"google-search"
] |
482,904 | 1 | 513,946 | null | 1 | 874 | Is it possible to personalize the My Profile page in it can be done on the My Home page?

I want to remove the default Web Parts and add other ones.
I don't want to use SharePoint Designer or edit any files manually.
| Is it possible to add Web Parts to the My Profile page of My Site? | CC BY-SA 3.0 | 0 | 2009-01-27T10:32:56.037 | 2012-01-10T20:53:10.233 | 2012-01-10T20:53:10.233 | 95 | 95 | [
"sharepoint",
"moss",
"wss"
] |
484,614 | 1 | 484,803 | null | 1 | 17,155 | This is the code I have that HTML Validator is giving me an error on:
```
<input type="text" id="search" name="keywords" />
<input type="submit" value="Search" name="Submit" />
```
([full size](https://i.stack.imgur.com/1B67V.png)):

T... | HTML Validator giving me error on form input type, element not allowed in context | CC BY-SA 3.0 | 0 | 2009-01-27T18:29:08.227 | 2012-09-30T12:41:31.447 | 2012-09-30T12:41:31.447 | 497,828 | 26,130 | [
"html",
"w3c-validation"
] |
486,039 | 1 | 486,066 | null | 22 | 57,793 | I have the following text from an academic course I took a while ago about inorder traversal (they also call it pancaking) of a (not BST):
> Draw a line around the outside of the
tree. Start to the left of the root,
and go around the outside of the tree,
to end up to the right of the root.
Stay as close to ... | Inorder tree traversal: Which definition is correct? | CC BY-SA 4.0 | 0 | 2009-01-28T00:56:27.260 | 2019-04-03T23:57:55.410 | 2019-04-03T23:57:55.410 | 1,893,164 | 21,574 | [
"data-structures",
"binary-tree",
"tree-traversal"
] |
491,770 | 1 | null | null | 2 | 3,996 | I've used the [VLC ActiveX](http://wiki.videolan.org/ActiveX) (available in the [VLC 0.9.4 installation](http://www.videolan.org/vlc/download-windows.html)) in my VB.NET App.
I've noticed that:
- - -
So my questions are:
1. Is the "Toolbar" property a useless thing or is there a special way to get it to TRUE?
2. ... | Toolbar with VLC ActiveX in VB.NET | CC BY-SA 2.5 | null | 2009-01-29T14:22:59.687 | 2011-09-14T09:31:20.710 | 2017-02-08T14:09:54.690 | -1 | 41,021 | [
"vb.net",
"api",
"activex",
"toolbar",
"vlc"
] |
493,296 | 1 | 493,329 | null | 418 | 930,820 | I want to show an image from an URL with a certain width and height even if it has a different size ratio.
So I want to resize (maintaining the ratio) and then cut the image to the size I want.
I can resize with html `img` property and I can cut with `background-image`.
How can I do both?
Example:
This image:
![e... | CSS Display an Image Resized and Cropped | CC BY-SA 4.0 | 0 | 2009-01-29T20:35:19.777 | 2021-04-26T10:33:12.507 | 2020-06-07T15:03:14.340 | 9,150,652 | 41,385 | [
"html",
"css",
"background-image",
"image"
] |
496,195 | 1 | 497,463 | null | 8 | 6,678 | I'm using Linq-to-SQL with a SQL Server backend (of course) as an ORM for a project. I need to get the result set from a stored procedure that returns from a dynamically-created table. Here's what the proc looks like:
```
CREATE procedure [RetailAdmin].[TitleSearch] (
@isbn varchar(50), @author varchar(50),
@title va... | How do I get Linq to SQL to recognize the result set of a dynamic Stored Procedure? | CC BY-SA 2.5 | 0 | 2009-01-30T16:38:51.673 | 2010-08-23T09:07:49.133 | 2017-05-23T11:45:25.150 | -1 | 1,249 | [
"c#",
"sql",
"sql-server",
"linq-to-sql",
"stored-procedures"
] |
497,269 | 1 | 661,645 | null | 0 | 1,131 | In Word 2007, a user may update the applied styles by selecting the "Reset to Quick Styles from XYZ Template" in the Change Styles menu option.

Does anyone know of a way to automate this? I tried adding a macro ... | How to Automatically "Reset to Quick Styles from XYZ Template" in Word 2007? | CC BY-SA 2.5 | null | 2009-01-30T21:13:14.567 | 2009-03-19T10:11:44.547 | 2017-02-08T14:09:56.887 | -1 | null | [
"automation",
"ms-office",
"office-2007",
"word-2007"
] |
499,987 | 1 | 500,440 | null | 0 | 905 | I added a simple dialog window to the install's UI with textboxes.
How do I find out what the user entered?
@Mitch Wheat:
Thank you. I managed to solve the problem with your help.
I needed to use the CustomActionData property of the Custom Action.
 | CC BY-SA 4.0 | null | 2009-02-01T01:36:39.760 | 2020-02-11T08:38:05.367 | 2020-02-11T08:38:05.367 | 55,267 | 55,267 | [
".net",
"visual-studio",
"installation",
"windows-installer",
"project"
] |
500,130 | 1 | 500,151 | null | 3 | 2,755 | I want two tables to have the same height. If the left table contain longer text than the right table I want it to be as long as the left table.
This is how it looks now:

I can't set the height because that would limit how much text you can write..... | How to create two tables of same height? | CC BY-SA 4.0 | null | 2009-02-01T03:36:37.117 | 2019-01-04T00:39:08.187 | 2019-01-04T00:39:08.187 | 10,757,987 | null | [
"html",
"html-table"
] |
500,540 | 1 | 500,547 | null | 1 | 2,302 | After the previous question "What are the important rules in Object Model Design", now I want to ask this:
Suppose that we have this schematic object model:

So, each object could have lots of properties due to the set of implemented Interfaces, and then become ... | Dynamic Properties for object instances? | CC BY-SA 3.0 | null | 2009-02-01T10:15:03.787 | 2011-06-01T08:29:48.433 | 2011-06-01T08:29:48.433 | 83,528 | 57,897 | [
"object",
"dynamic",
"model",
"properties"
] |
501,274 | 1 | 635,631 | null | 2 | 2,307 | my main language is vb/c#.net and I'd like to make a console program but with a menu system.
If any of you have worked with "dos" like programs or iSeries from IBM then thats the style I am going for.
 so, was wondering if anyone knows o... | creating iSeries like programs | CC BY-SA 2.5 | 0 | 2009-02-01T18:07:25.410 | 2009-03-11T17:52:41.833 | 2017-02-08T14:09:59.697 | -1 | 50,312 | [
"c#",
"ibm-midrange"
] |
503,026 | 1 | 504,280 | null | 2 | 15,074 | I know this seams a trivial question, but how can I disable the annoying JavaScript error messages?
I am inserting data into an unfinished web application and I keep getting about 30 errors for every form I submit. It's driving me crazy.
I'm using IE7.
Please note that I already tried "Internet options - Advanced - ... | How to disable JavaScript error messages? | CC BY-SA 3.0 | null | 2009-02-02T12:21:19.303 | 2015-06-19T20:20:28.163 | 2015-06-19T20:20:28.163 | 1,159,643 | 32,037 | [
"javascript",
"internet-explorer",
"error-handling"
] |
508,356 | 1 | 508,401 | null | 2 | 1,884 | Can anyone suggest a suitable way of figuring out a pieces allowable moves on a grid similar to the one in the image below.

Assuming piece1 is at position a1 and piece2 is at position c3, how can I figure out which grid squares are allowab... | Determining allowable moves on a grid | CC BY-SA 2.5 | null | 2009-02-03T18:38:42.367 | 2013-10-16T17:38:19.407 | 2017-02-08T14:10:03.680 | -1 | 60,598 | [
"javascript",
"grid"
] |
510,277 | 1 | 510,347 | null | 26 | 12,344 | Is there an established algorithm for finding redundant edges in a graph?
For example, I'd like to find that a->d and a->e are redundant, and then get rid of them, like this:
 =>  across all tabs of an Excel document into an array (Reviewers).
I wrote the following code, but the data is not being stored into the array, can someone please tell me what I'm doing wrong?
This is the code:
 is good enough until we get support for MathML in webbrowsers.
I suddenly realized that it might be possible to create a [Google Char... | LaTeX equivalent to Google Chart API | CC BY-SA 2.5 | 0 | 2009-02-05T15:36:05.570 | 2022-04-11T08:27:29.330 | 2017-02-08T14:10:06.073 | -1 | 24,946 | [
"math",
"latex",
"png",
"formula"
] |
518,447 | 1 | 518,469 | null | 5 | 12,244 | I'm showing a popup menu to select some values in a QTableWidget. The lowest item is a "Modify list" entry, when I select it a new window should automatically appear and the QComboBox should vanish and the cell return to a Qt::DisplayRole state.
Now Qt has all those nice API-calls like `QTableWidget.edit()` and `QTabl... | How can I tell a QTableWidget to end editing a cell? | CC BY-SA 3.0 | 0 | 2009-02-05T23:20:56.410 | 2021-01-18T17:04:14.070 | 2014-01-08T15:04:26.263 | 24,587 | 24,587 | [
"qt",
"pyqt"
] |
521,881 | 1 | 521,944 | null | 2 | 939 | You know the one I mean:

Is there a way to disable this?
I'm writing an application to automatically test a large number of Excel spreadsheets which are used in a critical environment. Many of these sheets do crazy thin... | Can you get rid of the "Microsoft Office Excel has encountered a problem" dialog? | CC BY-SA 2.5 | null | 2009-02-06T19:46:16.063 | 2009-04-02T14:29:36.677 | 2017-02-08T14:10:08.113 | -1 | 46,411 | [
"windows",
"excel",
"crash",
"ms-office"
] |
522,352 | 1 | 522,403 | null | 21 | 22,486 | What is the best pattern for having a select all or deselect all checkboxes. Can someone come up with a better way to have it in this form:

| Most usable select all/deselect all checkbox format | CC BY-SA 3.0 | 0 | 2009-02-06T21:55:50.997 | 2016-07-05T20:09:32.273 | 2015-08-18T08:46:26.120 | 4,374,739 | 5,653 | [
"usability"
] |
526,898 | 1 | 529,894 | null | 7 | 3,801 | HI all.
I am working on some code to send/receive SMS messages through Zeep Mobile ([http://zeepmobile.com/developers/](http://zeepmobile.com/developers/)).
I have looked at their google groups and even contacted their support but they've not been very good at communicating back and I am really flying blind now.
I ... | .NET code for SMS | CC BY-SA 2.5 | 0 | 2009-02-09T01:40:43.373 | 2009-02-09T20:53:24.570 | 2017-02-08T14:10:11.560 | -1 | 64,015 | [
"c#",
"sms"
] |
527,198 | 1 | 527,241 | null | 6 | 743 | Can anybody please explain how this could possibly happen?
I am completely aware of programming with thread safety in mind and as you can see I am catering for UI updates via a form InvokeRequired check here, everything has been working fine and no changes to break this that I am aware, and now suddenly just as I'm pr... | Impossible (how I hate to use this word) cross threading error? | CC BY-SA 2.5 | 0 | 2009-02-09T05:43:51.450 | 2009-04-28T17:34:11.057 | 2017-02-08T14:10:11.903 | -1 | 41,211 | [
".net",
"multithreading"
] |
527,209 | 1 | null | null | 3 | 5,118 | In Sharepoint document library, when we create a new document library, the default view is 'All Document'. This one:

We can make a custom view from (at the upper right corner of document library view). I created a ... | Global Customized View for Document Libraries in Sharepoint | CC BY-SA 2.5 | null | 2009-02-09T05:53:00.367 | 2012-05-31T13:50:56.690 | 2017-02-08T14:10:12.567 | -1 | 61,773 | [
"sharepoint"
] |
528,883 | 1 | 529,063 | null | 4 | 5,626 | How can I re-direct the user to the standard SharePoint "access denied" page, similar to the image below?
Currently, I am throwing an UnauthorizedAccessException, but this error message is not as elegant as SP message.
```
throw new UnauthorizedAccessException("User does not have permission to access this list");
```... | How to display a standard SharePoint "Access Denied" message | CC BY-SA 2.5 | 0 | 2009-02-09T16:35:14.207 | 2009-06-16T08:50:24.160 | 2017-02-08T14:10:12.907 | -1 | 55,503 | [
"c#",
"sharepoint",
"exception"
] |
529,498 | 1 | null | null | 11 | 45,207 | I looking for a GUI Builder for python
i know it exist, can see it in this image background

| GUI Builder for Python | CC BY-SA 3.0 | 0 | 2009-02-09T19:25:11.053 | 2013-02-18T09:52:51.520 | 2013-02-18T09:52:51.520 | 1,931,274 | null | [
"python"
] |
533,462 | 1 | 534,660 | null | 2 | 1,967 | 
I am using the autocomplete YUI feature. However, as you can see I am having trouble aligning the suggestion drop down with the text input when I put a label in front of the text input. I am following [the example here](http://developer.y... | YUI autocomplete misalignment problem | CC BY-SA 2.5 | null | 2009-02-10T18:01:14.250 | 2009-11-24T13:37:09.527 | 2017-02-08T14:10:13.923 | -1 | 32,174 | [
"javascript",
"html",
"css",
"yui"
] |
533,650 | 1 | 533,805 | null | 1 | 704 | I have a sign-up form in my application with several UITextFields. In order to speed up the process I would like to add a next and previous button to a toolbar pinned above the keyboard and allow the user to "tab" between the fields using these buttons.
I know I can navigate through the subviews collection on my view... | Next and Previous to navigate text fields | CC BY-SA 2.5 | null | 2009-02-10T18:54:40.533 | 2009-02-10T19:30:13.507 | null | null | 8,918 | [
"iphone"
] |
536,676 | 1 | 543,965 | null | 53 | 45,005 | I'm using the excellent JQuery UI to do a "mapping" so the user can "map"
persons from one program to persons from other program.
using this simple JQuery:
```
$(document).ready(function() {
$("div .draggable").draggable({
revert: 'valid',
snap: false
});
$("div .droppable").droppable({
... | How to draw a line between draggable and droppable? | CC BY-SA 3.0 | 0 | 2009-02-11T13:08:37.720 | 2015-05-11T04:57:50.297 | 2015-05-11T04:56:47.270 | 28,004 | 28,004 | [
"jquery",
"html",
"jquery-ui",
"drawing",
"svg"
] |
538,244 | 1 | 538,334 | null | 12 | 10,234 | I have HTML markup to deal with that consists of multiple tables nested inside another table. I would like the "inner tables" to all be the same width. I would also like all of the "inner tables" to be no wider than the width of the widest "inner table" in its natural state.
I do want to simply set the width of all ... | How to get multiple separate HTML tables to all be the same width as the widest table | CC BY-SA 3.0 | 0 | 2009-02-11T18:58:12.170 | 2017-09-19T19:27:54.130 | 2017-09-19T19:27:54.130 | 42,223 | 42,223 | [
"html",
"css",
"user-interface",
"html-table"
] |
541,320 | 1 | 541,349 | null | 0 | 266 | I'm probably thinking about this all wrong but I have the following db tables:

When I run the EF Wizard in VS2008 I get the following model:
, you can call the `Reduce()` function to have the shapes reduced in number of vertices. Works very nicely. However, when sevral of the polygons are adjacent (they share parts of their borders), the reduced polygons do not necessarily do so.
## Example
... | How would I generalize multiple adjacent polygons? | CC BY-SA 3.0 | 0 | 2009-02-12T14:40:20.190 | 2014-06-01T21:46:00.650 | 2017-02-08T14:10:19.563 | -1 | 64,963 | [
"sql-server",
"sql-server-2008",
"geolocation",
"geometry",
"geospatial"
] |
541,839 | 1 | 543,298 | null | 0 | 2,238 | I've inserted an image below showing were I currently stand (css version) and where I want to be (tabled based version).
I originally created this layout with tables and I would like to move to a css based version. I have a long way to go.
I'm using Blueprint CSS.
Current issues:
- -
![https://lh3.ggpht.com/_wyo... | How do I format tabs in Blueprint CSS? | CC BY-SA 2.5 | 0 | 2009-02-12T15:36:43.157 | 2012-04-09T18:03:00.850 | 2017-02-08T14:10:19.920 | -1 | 38,613 | [
"css",
"blueprint-css"
] |
546,010 | 1 | 546,140 | null | 1 | 1,665 | I'm trying to make a little gallery of some school works I've done in my animation class. I want to put 3 images on each line and they are all in divs because I did onion skin wrapping for a dropshadow on them. Unfortunately this makes them all just stick together in two lines across the page. But I want them specifica... | Firefox doesn't align images correctly | CC BY-SA 4.0 | null | 2009-02-13T13:54:27.250 | 2019-03-01T20:02:53.963 | 2019-03-01T20:02:53.963 | 4,751,173 | 2,128 | [
"css",
"firefox",
"html"
] |
547,438 | 1 | 555,522 | null | 3 | 397 | We are using a UITextView with a dark background. As such we have made the text white color in order to be easier to read. The problem is the magnify window that pops up when you hold down your finger to move the insertion point uses white for the text color as well. This makes it impossible to see exactly where the... | How can I control the color of the text used in a magnify window? | CC BY-SA 2.5 | null | 2009-02-13T19:57:35.737 | 2009-02-17T04:20:29.300 | 2009-02-16T23:54:20.937 | 714 | 8,918 | [
"cocoa-touch"
] |
549,451 | 1 | 37,389,179 | null | 100 | 49,224 | I'm trying to create an activity that presents some data to the user. The data is such that it can be divided into 'words', each being a widget, and sequence of 'words' would form the data ('sentence'?), the ViewGroup widget containing the words. As space required for all 'words' in a 'sentence' would exceed the availa... | Line-breaking widget layout for Android | CC BY-SA 4.0 | 0 | 2009-02-14T17:56:13.057 | 2022-05-24T18:41:42.713 | 2018-12-25T06:35:50.787 | 1,318,946 | 2,010 | [
"java",
"android",
"user-interface",
"layout"
] |
550,845 | 1 | null | null | 0 | 831 | I've been looking through the iPhone's UI catalog and cant seem to find what I'm looking for.
Essentially I want a customizable version of the 'in call' menu as found on the iPhone so I can use my own icons and call my own functions.
Example of 'in call' menu:

U... | Recreating the call menu on the iPhone | CC BY-SA 3.0 | 0 | 2009-02-15T13:10:55.670 | 2013-07-20T03:40:13.677 | 2013-07-20T03:40:13.677 | 707,111 | null | [
"cocoa-touch"
] |
553,248 | 1 | 554,109 | null | 3 | 3,058 | I'm trying to think an interface for a time-keeping system that will let users see "at a glance" how much time still needs to be completed.
This is complicated by the fact that there are no fixed hours - employees must work at least 6 hours on any given week day, and at the end of each month should have worked 7.5 hou... | UI design for time tracking | CC BY-SA 3.0 | 0 | 2009-02-16T13:08:55.683 | 2014-07-03T19:46:37.467 | 2014-07-03T19:46:37.467 | 1,043,380 | 12,744 | [
"user-interface",
"ui-design"
] |
554,561 | 1 | 12,028,699 | null | 2 | 231 | I'm stuck right now with defining the dimension of each line. The list I want to scrape has various colors in it, and what disturbs me the most a selection:

As you can see the picture I try to analyze got a white background with green text. The selection background is g... | OCR: How to find the right ColorMatrix to define new colors? | CC BY-SA 3.0 | 0 | 2009-02-16T21:09:04.187 | 2015-06-19T21:01:56.500 | 2015-06-19T21:01:56.500 | 1,159,643 | 66,674 | [
"colors",
"matrix",
"ocr"
] |
556,747 | 1 | null | null | 4 | 1,546 | I have a UIViewController that allows me to view and edit information of a class.
It is only allocated once but it's number of rows,sections and data is passed to it depending on the value the user selected.
For example. Here it is editing a name & type property (Header view of table is too big.. I did this so you w... | UITableView weirdness! with pictures | CC BY-SA 2.5 | null | 2009-02-17T13:20:18.410 | 2012-03-09T14:10:52.510 | 2017-02-08T14:10:22.680 | -1 | 51,420 | [
"iphone",
"objective-c",
"cocoa-touch",
"uitableview"
] |
560,016 | 1 | 568,183 | null | 1 | 2,983 | Here is my setup: one navigation controller, two views
The first view, the rootview, displays the statusbar and navigation bar (portrait view).
When the rootviewController senses rotation, it hides the nav bar and status bar and then it pushes view 2 onto the navigation controller (in landscape now).
This part works ... | Rotation affecting Navigation Bar unpredictably | CC BY-SA 2.5 | 0 | 2009-02-18T06:09:40.493 | 2009-02-20T03:33:26.360 | 2017-02-08T14:10:23.397 | -1 | 48,311 | [
"iphone",
"cocoa-touch"
] |
561,300 | 1 | 561,440 | null | 1 | 1,342 |
# The Scenario
I am building a custom CMS for a communications application. The users can upload images to the server and then later reference them in posts they write using markdown. Images are stored in a database and referenced with a url of the form `images/{id}`. A custom image handler retrieves these and s... | Custom Image Handler: Caching Strategy | CC BY-SA 2.5 | 0 | 2009-02-18T14:37:58.137 | 2009-02-26T10:25:36.710 | 2009-02-18T15:04:03.267 | 208 | 208 | [
"html",
"http",
"caching",
"httphandler"
] |
561,506 | 1 | 1,193,914 | null | 6 | 6,500 | I really enjoyed using the [Developer Toolbar](http://www.microsoft.com/en-us/download/details.aspx?id=18359) with IE7, and recently upgraded to IE8 to take advantage of (what appeared to be) more full-featured [developer tools](http://blogs.msdn.com/ie/archive/2008/03/07/improved-productivity-through-internet-explorer... | Inspect in IFrame in IE8 Developer Tools? | CC BY-SA 3.0 | 0 | 2009-02-18T15:28:27.623 | 2015-06-19T20:50:27.870 | 2015-06-19T20:50:27.870 | 1,159,643 | 17,917 | [
"iframe",
"internet-explorer-8"
] |
561,931 | 1 | 1,083,133 | null | 81 | 57,134 | How to create trapezoid tabs in WPF tab control? I'd like to create non rectangular tabs that look like tabs in Google Chrome or like tabs in code editor of VS 2008.
Can it be done with WPF styles or it must be drawn in code?
Is there any example of code available on internet?
There is lots of examples that show h... | How to create trapezoid tabs in WPF tab control | CC BY-SA 2.5 | 0 | 2009-02-18T16:55:49.770 | 2022-03-16T08:30:54.723 | 2017-02-08T14:10:25.083 | -1 | 25,732 | [
"wpf",
"xaml",
"tabcontrol"
] |
562,872 | 1 | 562,885 | null | 3 | 2,449 | Ok I understand that this error mostly comes from sending a method call or trying to access a variable that has already been deallocated.
Here is the problem:
```
.h
@interface TimeEntry : NSObject <NSCopying, NSCoding> {
NSDate *from;
NSDate *to;
NSString *information;
}
@property (nonatomic, retain) NSDate *fr... | Getting a segfault (EXC_BAD_ACCESS) when deallocating variables | CC BY-SA 2.5 | 0 | 2009-02-18T21:16:28.583 | 2009-06-11T22:47:23.810 | 2017-02-08T14:10:25.417 | -1 | 51,420 | [
"iphone",
"objective-c",
"cocoa-touch",
"memory-management"
] |
564,754 | 1 | null | null | 0 | 2,384 | Every night my IIS hangs with 3 w3wp.exe processen in the task manager list. It is not possible to kill the w3wp task using the most memory. Not even iisreset helps. I have to reboot the machince to get rid of the w3wp prosess.
Any suggestions?

The inheritance for ImageParagraphs works perfect, but I am not able to make a Table Per Type inheritance with LinkListParagraph because of the different prim... | Entity Framework - Table Per Type Inheritance - Existing Database | CC BY-SA 3.0 | null | 2009-02-19T11:59:13.280 | 2015-06-19T20:21:05.753 | 2015-06-19T20:21:05.753 | 1,159,643 | 65,451 | [
".net",
"entity-framework",
"inheritance",
"orm"
] |
573,086 | 1 | 573,150 | null | 84 | 82,339 | This question applies to Windows Vista!
I have an application which normally works without administrative privileges. There is one activity which does need administrative privilege but I don't want to start the application itself with higher privileges when I know most of time user wont even be using that feature.
I ... | How to elevate privileges only when required? | CC BY-SA 3.0 | 0 | 2009-02-21T14:13:34.147 | 2020-11-03T19:02:04.060 | 2017-12-20T07:47:46.543 | 1,401,510 | 23,671 | [
"c#",
".net",
"windows-vista",
"uac",
"privileges"
] |
573,346 | 1 | 573,355 | null | 0 | 550 | I use this code to copy and instance of my class
```
//Create the copy and pass it onto edit controller
PoolFacility *poolCopy = [self.thePoolFacility copy];
self.childController.thePoolFacilityCopy = poolCopy;
[poolCopy release];
```
Now when I view the variables in the debugger, how come some of the class' fields ... | Memory management. Copy method | CC BY-SA 2.5 | null | 2009-02-21T16:43:03.677 | 2009-02-21T17:01:52.323 | 2017-02-08T14:10:27.807 | -1 | 51,420 | [
"iphone",
"objective-c",
"cocoa-touch"
] |
575,371 | 1 | null | null | 0 | 305 | Ok so I've got a really annoying bug in my app. It's driving me crazy and I'm sure it's beyond my skill level as I am learning as I go.
Here is the initial rundown of the bug: [A shot in the dark - Application bug](https://stackoverflow.com/questions/573837/a-shot-in-the-dark-application-bug)
However I have found a w... | iPhone Bug App bug Question and challenge | CC BY-SA 2.5 | null | 2009-02-22T18:17:21.197 | 2009-02-24T17:10:51.810 | 2017-05-23T12:33:39.247 | -1 | 51,420 | [
"iphone",
"objective-c",
"cocoa-touch"
] |
575,794 | 1 | null | null | 4 | 5,602 | I have a tabbed application with each tab having a navigation controller. I use helper code to push a view/controller pair onto the navigation stack yet when I call this same code from two different places I get (suprizingly) different results. In one case the view renders lower than in the other case, seemingly lower ... | iPhone NavigationController - same view pushed, different layouts received | CC BY-SA 2.5 | null | 2009-02-22T21:06:15.020 | 2010-01-01T09:39:06.710 | 2017-02-08T14:10:31.573 | -1 | 29,017 | [
"iphone"
] |
580,863 | 1 | null | null | 1 | 680 | i am doing an editor kind of project application in wpf in which i am allowing user to drag their controls (i have defined my own controls that allows user to customize their screens) to the Canvas window i.e I have toolbar and canvas area.i have placed controls in the toolbar and those controls can be dragged and drop... | Snap to Object/Control feature | CC BY-SA 2.5 | 0 | 2009-02-24T08:01:09.087 | 2009-02-24T10:19:19.957 | 2017-02-08T14:10:33.623 | -1 | null | [
"c#",
"wpf"
] |
582,380 | 1 | 582,581 | null | 2 | 1,692 | Can someone give me a bit more information on this error please?
Console only logs
Program exited with status value:101.
If you imagine I have a nsmutablearray:

It holds TimeEntry objects:
```
#import <Foundation/Foundation.h>
#import ... | "Program has exited with status 101" | CC BY-SA 2.5 | null | 2009-02-24T16:11:19.987 | 2009-03-28T06:11:27.757 | 2017-02-08T14:10:30.180 | -1 | 51,420 | [
"iphone",
"objective-c",
"cocoa-touch",
"xcode"
] |
583,597 | 1 | null | null | 33 | 28,741 | I've got a WPF TextBox into which my users type XHTML.
XAML...
```
<TextBox Name="TextBoxContentBody"
TextWrapping="Wrap"
AcceptsReturn="True"
VerticalScrollBarVisibility="Visible"
FontFamily="Consolas"
... />
```
It looks like this:
.aspx). When it connects, Windows automatically starts installing the Bluetooth HID device driver, as expected:



[](https://i.stack.imgur.com/ZCjXX.png)
[humanized.com](http://www.humanized.com/weblog/images/caps_lock_indication.png)
I'm currently making an interface mockup ... | "Speech bubble" notifications | CC BY-SA 4.0 | 0 | 2009-02-27T02:55:30.373 | 2019-03-04T02:00:14.157 | 2019-03-04T02:00:14.157 | 4,751,173 | 14,902 | [
"c#",
".net",
"c++",
"mfc",
"notifications"
] |
593,637 | 1 | 594,942 | null | 0 | 3,298 | I'm working on an iPhone game, and trying to use a UIScrollView to display some icons, which I then want to enable the user to drag off the bar being scrolled, onto another view (basically, dragging them from their hand into play on the game board). The problem is that the UIScrollView clips everything outside it's ow... | iPhone SDK: disabling cllipping for UIScrollView | CC BY-SA 2.5 | null | 2009-02-27T05:48:53.640 | 2009-02-27T14:20:44.000 | 2017-02-08T14:10:37.370 | -1 | 58,516 | [
"iphone",
"objective-c"
] |
594,450 | 1 | 595,441 | null | 12 | 1,880 | Looking for online resources to implement a virtual drive functionality similar to ones implemented in products listed 
The solution should be cross OS (win, pc, linux) preferably using a well behaving framework... | Cross OS virtual drive functionality | CC BY-SA 2.5 | 0 | 2009-02-27T11:52:23.437 | 2011-01-22T11:52:18.913 | 2017-05-23T10:29:31.003 | -1 | 23,164 | [
"language-agnostic",
"cross-platform",
"virtual-drive"
] |
595,253 | 1 | 595,727 | null | 2 | 5,044 | Given the following HTML page a horizontal line appears at the top of the table where the 1st row would have a 2nd and 3rd cell (if they were defined).
```
<html>
<head>
<Title>Test Page</Title>
<style type="text/css">
table {
margin:10px 0 10px 0;
padding:0;
margin: 0 0 0 0;
border-collapse: collaps... | Hide border on table where no cell exists in Firefox and border-collapse: collapse; | CC BY-SA 3.0 | 0 | 2009-02-27T15:37:41.600 | 2015-06-19T20:21:37.747 | 2015-06-19T20:21:37.747 | 1,159,643 | 5,993 | [
"html",
"css",
"firefox"
] |
596,970 | 1 | 597,004 | null | 5 | 6,273 | I have a DIV container of 100% width holding x divs. The last child DIV floats right, the rest float left. All child DIV's remain in a line so long as they fit in the bar (all oriented left, except for the last div which sits by itself on the right). If the window is resized smaller and the children don't have enough r... | CSS: Simulating flexible width (without min-width)- | CC BY-SA 3.0 | null | 2009-02-27T22:44:19.860 | 2013-07-20T02:17:07.543 | 2013-07-20T02:17:07.543 | 2,556,654 | 72,065 | [
"css"
] |
597,369 | 1 | 597,401 | null | 15 | 23,836 | As I see it, there are two ways to handle mouse events to draw a picture.
The first is to detect when the mouse moves and draw a line to where the mouse is, shown [here](http://www.cs.iupui.edu/~aharris/pygame/ch05/paint.py). However, the problem with this is that with a large brush size, many gaps appear between ea... | How to create MS Paint clone with Python and pygame | CC BY-SA 3.0 | 0 | 2009-02-28T02:13:08.673 | 2021-02-27T23:47:41.137 | 2011-12-07T23:44:30.623 | 84,042 | 68,185 | [
"python",
"mouse",
"pygame",
"draw",
"paint"
] |
599,348 | 1 | 599,370 | null | 0 | 2,589 | Never asked a question here before, I'll try to lay this out as succinctly as possible.
I've got a Recipe class, that contains lists of three different types of Ingredient Uses. These classes all inherit from the base, IngredientUse. So the mapping looks like this:
```
<class name="IngredientUse" table="Ingredien... | NHibernate One-To-Many with Joined Subclass | CC BY-SA 2.5 | null | 2009-03-01T06:07:15.480 | 2010-01-20T04:43:06.483 | 2017-02-08T14:10:40.153 | -1 | 794 | [
".net",
"nhibernate"
] |
600,274 | 1 | 600,282 | null | 61 | 21,942 | I'm a very frequent user of the GNU [Autotools](http://en.wikipedia.org/wiki/GNU_build_system) (mostly [Autoconf](http://en.wikipedia.org/wiki/Autoconf), occasionally [Libtool](http://en.wikipedia.org/wiki/GNU_Libtool)). I'm working on a project where portability is going to be a sticking point.. Yet, the rest of the t... | Alternatives to Autoconf and Autotools? | CC BY-SA 3.0 | 0 | 2009-03-01T18:52:10.620 | 2014-07-21T15:50:32.353 | 2017-02-08T14:07:51.283 | -1 | 50,049 | [
"c",
"autotools",
"autoconf"
] |
603,528 | 1 | 664,455 | null | 2 | 5,131 | I've got a `QComboBox` with a custom list object.

The custom list object has a custom `mousePressEvent` so that when the user click on one of the circles with a +/- (a twisty), the list is expanded/collapsed.
When I use the list with the combo box, when the user ... | Using PyQT, how do you filter mousePressEvent for a QComboBox with custom list | CC BY-SA 3.0 | 0 | 2009-03-02T18:55:19.090 | 2014-08-20T18:22:53.020 | 2014-08-20T18:22:53.020 | 3,489,230 | 72,911 | [
"python",
"qt",
"qt4",
"pyqt",
"qcombobox"
] |
609,168 | 1 | 609,304 | null | 4 | 4,781 | I have a button that I want to change the background of to show that it is disabled when a user clicks on it. It works fine in IE/FF but in chrome it seems that it can't find the background image and makes the background nothing.

I am just doing a si... | JQuery in Google Chrome can't find background image | CC BY-SA 2.5 | null | 2009-03-04T03:57:29.277 | 2009-04-26T03:44:08.430 | 2009-04-26T03:44:08.430 | 38,971 | 42,707 | [
"jquery",
"google-chrome",
"css"
] |
611,298 | 1 | 611,309 | null | 104 | 146,010 | If you set `ResizeMode="CanResizeWithGrip"` on a WPF `Window` then a resize grip is shown in the lower right corner, as below:

If you set `WindowStyle="None"` as well the title bar disappears but the grey bevelled edge remains until you set `ResizeMode="NoResize"`. Unfortunat... | How to create a WPF Window without a border that can be resized via a grip only? | CC BY-SA 3.0 | 0 | 2009-03-04T16:17:53.320 | 2020-03-09T15:42:25.897 | 2017-07-20T12:17:31.657 | 6,083,675 | 24,874 | [
".net",
"wpf",
"window",
"controltemplate",
"resizegrip"
] |
611,472 | 1 | 3,956,937 | null | 29 | 4,256 | : It is not possible to use other trusted certificate authorities now. Question and answer is not obsolete:
WinQual still rejects the signature:

when we've already established that it is a valid digital signature:
![enter image description here](h... | WinQual: Why would WER not accept code-signing certificates? | CC BY-SA 4.0 | 0 | 2009-03-04T16:54:30.453 | 2019-03-04T23:01:01.543 | 2019-03-04T23:01:01.543 | 4,751,173 | 12,597 | [
"windows",
"error-reporting",
"winqual",
"bumptop"
] |
611,878 | 1 | 612,033 | null | 34 | 9,527 | I need to make a chart with an optimized axis maximum value.
The current method I have of making charts simply uses the maximum value of all the graphs, then divides it by ten, and uses that as grid lines. I didn't write it.
These graphs have been changed. As soon as I fixed the code, my dynamic graphs started wor... | Reasonable optimized chart scaling | CC BY-SA 4.0 | 0 | 2009-03-04T18:37:21.690 | 2019-03-11T19:06:30.967 | 2019-03-11T19:06:30.967 | 30 | 30 | [
"algorithm",
"math",
"charts"
] |
613,464 | 1 | 613,504 | null | 1 | 4,165 | In a listbox, when I select an item I still get some kind of border or space around my listboxitem creating the line you see in the image. I want to remove that line I put a circle around.
It already has `HorizontalContentAlignment = "Stretch"` by the way.
What am I doing wrong?
### The problem:
![alt text](https://... | WPF ListBoxItem Not Filling | CC BY-SA 2.5 | 0 | 2009-03-05T03:15:04.270 | 2012-02-09T16:46:22.933 | 2020-06-20T09:12:55.060 | -1 | 1,013 | [
"wpf",
"listbox"
] |
613,759 | 1 | null | null | 1 | 1,196 | Now I drag a file to the app icon in the dock, this app is based on document . I found that no little image on the left of window title after the app is run and the mainwindow is open . but when I drag a file to the dock icon before the app run and use this method to run the app , a little image on the left of window t... | How to show a title of document window without icon? | CC BY-SA 3.0 | null | 2009-03-05T06:18:33.737 | 2014-08-19T17:36:08.543 | 2011-11-17T15:22:14.927 | 54,680 | 51,958 | [
"cocoa"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.