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
618,894
1
null
null
4
1,203
We are facing a weird problem in IE6. The page works fine in Firefox and IE7. We have a page which has a div and a iframe within that div Example: ``` <html> <body> ... <div> <iframe src="page.aspx" /> </div> </body> </html> ``` Now assume page.aspx has this code: ``` <html> <body> .. <a href="#" onclick="aler...
IE6 anchor click moves the iframe
CC BY-SA 4.0
null
2009-03-06T13:42:05.580
2019-03-05T11:00:26.473
2019-03-05T11:00:26.473
4,751,173
46,279
[ "internet-explorer", "internet-explorer-6" ]
619,618
1
619,919
null
7
4,325
I am creating images using PIL that contain numerous exactly placed text strings. My first attempt was to convert pixel fonts into the pil-compatible format as described [here](http://llbb.wordpress.com/2006/11/24/making-pil-font-for-python-image-library/). For example, I download the Silkscreen font and convert it: ...
Using pixel fonts in PIL
CC BY-SA 4.0
0
2009-03-06T17:05:11.160
2020-03-30T08:09:24.600
2020-03-30T08:09:24.600
349,333
1,515,117
[ "python", "imaging" ]
620,138
1
620,235
null
4
2,692
My question is about the [Visual Studio Image Library](http://msdn.microsoft.com/en-us/library/ms247035.aspx) that comes with VS2008. In the _Common Elements\Annotations folder, there are PNGs with multiple sizes and I was wondering what the intended use of these is. Is there an standard way to implement these images...
Using Visual Studio Image Library PNGs in a Windows Form app
CC BY-SA 2.5
null
2009-03-06T19:39:25.317
2009-03-06T20:07:23.953
2017-02-08T14:10:46.440
-1
16,454
[ "winforms", "visual-studio-2008", "image", "png" ]
622,167
1
null
null
0
249
On NTFS, any file can have extended file information based on an Alternate Data Stream. Explorer displays this as a tab in the file properties dialog. I am quite sure there is a COM-Interface for reading/modifying this information, but I seem to be unable to come up with the right terms for my search. Can anyone give ...
COM-Interface for accessing file information (title, subject, author)?
CC BY-SA 2.5
null
2009-03-07T17:18:38.390
2009-03-07T17:29:47.943
2017-02-08T14:10:47.130
-1
19,246
[ "winapi", "file", "shell", "properties" ]
622,471
1
622,500
null
8
14,771
So I'm building the pacman game in Java to teach myself game programming. I have the basic game window with the pacman sprite and the ghost sprites drawn, the pacman moves with the arrow keys, doesn't move beyond the walls of the window, etc. Now I'm trying to build the maze, as in this picture: ![Pacman maze](https:...
Pacman maze in Java
CC BY-SA 2.5
0
2009-03-07T20:45:08.987
2009-03-17T22:12:54.393
2017-02-08T14:10:47.803
-1
49,153
[ "java", "algorithm", "2d", "maze" ]
624,041
1
624,052
null
1
300
I am working on an ASP.NET MVC RC2 app using Entity Framework. This is my Entity diagram. ![](https://i.stack.imgur.com/NFAc4.png) In my repository I get the entity like this: ``` public Product GetProduct(int id) { return (from c in _entities.ProductSet.Include("User") where c.Id == id se...
How to keep related entities on object when returned from ASP.NET MVC view
CC BY-SA 3.0
null
2009-03-08T18:22:55.747
2018-04-24T05:34:40.863
2018-04-24T05:34:40.863
6,083,675
33,349
[ "asp.net-mvc", "entity-framework" ]
626,149
1
626,171
null
0
2,308
My automatic test-framework tests a bunch of Excel sheets required by our customers with the excel plugins that my team provides. In order to test the sheet I need to call some macros, this in turn requires macro security to be set to lowest on the testing servers. (In production macro security will be on). In particul...
Help me find the reg-key which is preventing me from chaning excel macro security-level?
CC BY-SA 2.5
0
2009-03-09T13:07:00.100
2020-02-28T13:23:42.197
2017-02-08T14:10:49.253
-1
46,411
[ "windows", "excel", "com" ]
626,541
1
9,174,392
null
8
25,822
I have a SIP application that needs to send UDP packets to set up the SIP calls. SIP has a timeout mechanism to cope with delivery failures. An additional thing I would like to be able to do is detect whether a UDP socket is closed in order having to wait the 32s retransmit interval SIP uses. The cases I am referring ...
Listen for ICMP packets in C#
CC BY-SA 3.0
0
2009-03-09T14:51:46.637
2015-06-19T20:42:20.657
2015-06-19T20:42:20.657
1,159,643
75,658
[ "c#", "icmp" ]
628,500
1
631,114
null
186
114,210
Lets say I have a text box that I want to fill a whole line. I would give it a style like this: ``` input.wide {display:block; width: 100%} ``` This causes problems because the width is based on the content of the text box. Text boxes have margin, borders, & padding by default, which makes a 100% width text box larg...
Can I stop 100% Width Text Boxes from extending beyond their containers?
CC BY-SA 3.0
0
2009-03-10T00:05:43.980
2018-02-06T20:47:09.257
2013-01-11T18:21:48.120
1,779,823
392
[ "html", "css" ]
630,779
1
630,807
null
2
4,889
I have a fixed toolbar at the bottom of my page where users are going to be able to change their online status and load a listing of their favorites among other things. In the toolbar, I have parent div elements that when clicked, pop up child div elements that need to be positioned directly above the parent element. ...
Dynamically positioning pop-up "windows" (div elements)
CC BY-SA 3.0
null
2009-03-10T15:26:39.697
2011-12-23T05:48:35.903
2011-12-23T05:48:35.903
937,870
74,238
[ "javascript", "jquery", "html", "css" ]
632,622
1
641,836
null
3
9,863
I've offered a bounty, since I doubt I'll be getting any answers otherwise. Lately I've been working with listviews and I've decided to add an for each item indicating whether it's input or output. The icons add fine, but they're not transparent: ![Example of icon not being transparent](https://i.stack.imgur.com/o9...
ImageList Transparency on Listviews?
CC BY-SA 3.0
0
2009-03-10T23:00:14.380
2022-03-26T11:55:00.003
2015-06-19T20:47:36.240
1,159,643
31,150
[ "windows", "winapi", "transparency" ]
633,251
1
633,382
null
2
2,505
This is a snippet of my code. ``` Declare Function ReadProcessMemory Lib "kernel32" _ (ByVal hProcess As Long, _ ByVal lpBaseAddress As Long, _ lpBuffer As Any, _ ByVal nSize As Long, _ ...
How to get string from the output of ReadProcessMemory
CC BY-SA 2.5
0
2009-03-11T03:41:02.690
2009-03-11T05:00:35.353
2017-02-08T14:10:51.003
-1
405,472
[ "vb6", "readprocessmemory" ]
633,350
1
635,141
null
1
577
Is there a way that you can change the colour of the country borders in a map provided by Google Chart API? As you can see, the borders stand out a bit too much for my liking. ![](https://chart.apis.google.com/chart?cht=t&chs=440x220&chtm=world&chco=404F64,DDFFDD,006600&chf=bg,s,344152&chld=AEAUBECAFRILITJPMXMYNLNZSE...
How do I change the colour of map borders in Google Chart API?
CC BY-SA 2.5
null
2009-03-11T04:39:57.853
2009-03-11T15:49:24.610
2017-02-08T14:10:51.347
-1
9,021
[ "google-visualization" ]
634,964
1
635,149
null
21
27,675
I am looking for a library to generate svg diagrams in python (I fetch data from a sql database). I have found [python-gd](http://newcenturycomputers.net/projects/gdmodule.html), but it has not much documentation and last update was in 2005 so I wonder if there are any other libraries that are good for this purpose. I...
svg diagrams using python
CC BY-SA 2.5
0
2009-03-11T15:07:39.093
2020-09-13T00:00:53.193
2017-02-08T14:10:52.367
-1
11,722
[ "python", "svg", "diagram" ]
638,299
1
null
null
38
39,573
I would like to have scroll view with an image content view. The image is actually map which is much bigger than the screen. The map should be initially in the center of the scroll view, like photos in Photos app when you turn iPhone to landscape orientation. ![alt text](https://lh4.ggpht.com/_bowYsy0VxgU/Sbj0Vjz5twI/...
UIScrollView with centered UIImageView, like Photos app
CC BY-SA 2.5
0
2009-03-12T11:56:06.017
2016-05-05T09:56:02.867
2017-02-08T14:10:53.047
-1
77,143
[ "ios", "objective-c", "iphone", "cocoa-touch", "uiscrollview" ]
640,633
1
640,649
null
21
33,082
For a brand new application, is it better to use WPF over Windows Forms? I used Windows Forms before but not much WPF. As far as I know, WPF is the successor to Windows Forms, right? The application is going to host DirectX Windows (not WPF 3D, but [Managed DirectX](http://en.wikipedia.org/wiki/Managed_DirectX) and [S...
Is it better to use WPF over Windows Forms?
CC BY-SA 3.0
0
2009-03-12T21:49:05.037
2020-10-20T17:32:45.520
2011-09-20T18:52:00.003
63,550
51,816
[ "c#", ".net", "wpf", "winforms", "user-interface" ]
640,641
1
null
null
1
989
Our web services are accessed through a router which uses port forwarding to connect to the actual web server. When we are trying to establish a web reference in Visual Studio it seems the .NET framework returns the full URL with a port to Visual Studio for the reference during discovery. Visual Studio then tries to ...
How can I use .NET web services from non-standard ports?
CC BY-SA 2.5
null
2009-03-12T21:52:05.293
2013-11-24T07:58:05.683
2017-02-08T14:10:53.740
-1
19,421
[ ".net", "visual-studio-2008", "web-services" ]
644,378
1
649,303
null
11
22,374
I realize this might be more of a math problem. To draw the lines for my rectangles I need to solve for their corners. I have a rectangle center at (x,y) With a defined Width and Height. ![](https://i31.photobucket.com/albums/c399/Bolt986/Rectangle-Drawing.jpg) To find the blue points on a non rotated rectangle on ...
Drawing a Rotated Rectangle
CC BY-SA 2.5
0
2009-03-13T20:02:02.740
2015-11-16T13:07:28.023
2017-02-08T14:10:55.090
-1
64,460
[ "math", "graphics" ]
645,354
1
null
null
22
11,161
I would like to implement a nodal-interface, basically a [DAG](http://en.wikipedia.org/wiki/Directed_acyclic_graph) where each node performs an operation on it's input connections, and outputs something (which you can connect to another node) Some example applications: - [Apples "Shake"](http://www.apple.com/shake/)[...
Implementing a node-based graphical interface?
CC BY-SA 3.0
0
2009-03-14T04:16:37.217
2018-04-30T00:07:04.357
2018-04-30T00:07:04.357
3,938,208
745
[ "python", "user-interface", "directed-graph" ]
645,471
1
645,515
null
-2
2,625
I'm an ICT student, I've gotten classes on several subjects: coding(C#, Java), webdevelopment(XHTML, CSS, JavaScript, PHP), databases(MySQL), Computertech(ASM coding, pc-architecture), Datacom(Cisco networking). But I still wonder, how do you go about setting up a real big webproject, which requires dedicated servers. ...
Learning to work with dedicated servers
CC BY-SA 2.5
null
2009-03-14T05:49:06.933
2013-11-27T14:51:34.150
2020-06-20T09:12:55.060
-1
11,795
[ "language-agnostic" ]
646,997
1
647,026
null
4
3,212
I'm trying to produce a timeline for my real-time embedded code. I need to show all the interrupts, what triggers them, when they are serviced, how long they execute, etc. I have done the profiling and have the raw data, now I need a way to show the timeline graphically, to scale. I've been searching for a good tool...
What is a good tool for graphing sub-millisecond timelines?
CC BY-SA 2.5
0
2009-03-15T00:16:23.833
2009-05-27T04:58:50.723
2017-02-08T14:10:56.097
-1
10,396
[ "embedded", "visualization", "real-time", "timeline", "graphing" ]
647,978
1
null
null
2
1,094
I really love the 9-slice feature in Flash/Flex. It is a great quick way to make liquid vector layouts. Take a look at: ![image](https://i.stack.imgur.com/oOIwc.png) I am using the selected object in AI file to setup a 9-slice grid (I am not using 9s to scale corners!). I only want that right part to stay static and ...
Replicating 9-slice functionality in WPF
CC BY-SA 4.0
0
2009-03-15T15:24:22.730
2019-12-15T21:27:26.683
2019-12-15T21:27:26.683
1,350,209
78,291
[ "wpf", "xaml" ]
649,454
1
649,545
null
49
30,475
If I have two colors defined by their RGB values, can I average the Red, Green and Blue values and then combine to define a third color that looks like a visual average of the two? ie NewColor = (R1+R2)/2,(G1+G2)/2,(B1+B2)/2 EDIT1: Thanks for all the responses. For my current needs, I am only dealing with color pair...
What is the best way to average two colors that define a linear gradient?
CC BY-SA 3.0
0
2009-03-16T06:35:08.907
2023-02-07T19:58:18.667
2015-07-27T14:42:56.903
411,022
2,680,373
[ "colors", "rgb" ]
651,317
1
651,440
null
351
285,409
How can I achieve the following structure without using tables or JavaScript? The white borders represent edges of divs and aren't relevant to the question. ![Structure 1](https://i.stack.imgur.com/zH7rf.png) The size of the area in the middle is going to vary, but it will have exact pixel values and the whole struct...
Div width 100% minus fixed amount of pixels
CC BY-SA 2.5
0
2009-03-16T17:14:24.720
2021-08-14T10:17:44.563
2011-03-02T10:35:42.120
73,605
73,605
[ "html", "css", "height", "width" ]
651,462
1
651,467
null
5
6,373
Duplicate question to : > [Should I always/ever/never initialize object fields to default values?](https://stackoverflow.com/questions/636102/should-i-always-ever-never-initialize-object-fields-to-default-values) Environment: Visual Studio 2008 w/ Resharper 4.1 w/ 32bit .NET Framework 3.5 Resharper reports that ...
Is it a bad practice to explicitly declare a default field value?
CC BY-SA 2.5
null
2009-03-16T17:50:34.180
2020-03-26T21:05:29.980
2017-05-23T12:03:04.477
-1
4,035
[ "c#", "resharper" ]
652,078
1
652,097
null
0
1,462
I was wondering if anyone knew of a scrollable gridview control that works similar to the yahoo email gridview. ![alt text](https://ruturajv.files.wordpress.com/2006/10/yahoo-mail-ajax.gif)
Scrollable Grid (Yahoo email like)
CC BY-SA 2.5
null
2009-03-16T20:40:00.217
2009-03-17T07:32:06.687
2017-02-08T14:10:57.810
-1
56,509
[ "grid", "scrollbar" ]
652,857
1
7,085,049
null
8
17,025
I'm looking for a iPhone-like "picker" control that I'm able to use on the web. Accessibility is not a concern. JavaScript will be available on all clients and the web app will be run on an environment provided to the user. If the solution could gracefully degrade to a select box though, that would be great. Flash & ...
iPhone-like (slot machine) 'picker' select box for the web?
CC BY-SA 2.5
0
2009-03-17T02:36:22.497
2012-01-24T08:51:27.343
2017-02-08T14:10:58.273
-1
55,321
[ "javascript", "user-interface", "picker" ]
655,954
1
655,971
null
3
3,185
I'm using the ASP.NET MVC in my web application. It uses AJAX (MicrosoftAjax.js, MicrosoftMvcAjax.js, jquery-1.3.1.min.js) to make the call from the view to the Delete action with this code: ``` <%= Ajax.ActionLink("Delete", "Delete", new { id=item.id }, new AjaxOptions { Confirm = "Are you sure you want to delete the...
"'Sys' is undefined" error running ASP.NET MVC application in IIS7
CC BY-SA 2.5
0
2009-03-17T20:44:21.517
2009-04-21T21:40:23.483
2017-02-08T14:10:59.310
-1
24,506
[ "asp.net-mvc", "iis", "iis-7" ]
658,428
1
658,613
null
3
2,139
# SOLUTION: Thanks to [Patrick](https://stackoverflow.com/questions/658428/custom-watermarked-textbox-behaving-strangely/658613#658613) below, I have refactored the C# CodeProject version into a VB.NET version that works for me. Hopefully it can help you guys as well: ``` Partial Public Class WatermarkedTextBox ...
Custom Watermarked Textbox behaving strangely
CC BY-SA 3.0
0
2009-03-18T14:17:16.807
2015-01-16T12:43:35.957
2020-06-20T09:12:55.060
-1
25,515
[ "vb.net", "visual-studio-2008", "custom-controls" ]
659,303
1
659,394
null
3
3,591
I'm trying to build a Editable GridView like control (Order column) with this code in the view: ``` <table> <tr> <th> Name </th> <th> Order </th> <th> <img alt="Save order" src="<%= Url.Content("~/Content/minisave.png") %>" /> </th...
Editable "GridView" like control in ASP.NET MVC
CC BY-SA 2.5
null
2009-03-18T17:26:09.177
2012-06-18T13:48:21.780
2017-02-08T14:11:02.247
-1
24,506
[ "asp.net-mvc", "gridview" ]
663,620
1
null
null
19
5,552
In a multi-touch environment, how does gesture recognition work? What mathematical methods or algorithms are utilized to recognize or reject data for possible gestures? I've created some retro-reflective gloves and an IR LED array, coupled with a Wii remote. The Wii remote does internal blob detection and tracks 4 p...
What methods/algorithms are used for gesture recognition in a multi-touch environment?
CC BY-SA 4.0
0
2009-03-19T19:13:54.657
2019-03-07T16:44:24.413
2019-03-07T16:44:24.413
4,751,173
2,635
[ "gesture-recognition", "wiimote" ]
667,539
1
667,565
null
9
953
When presented with a simple table view (or even a list view I suppose) what is your preferred method of entering new data. With add/delete buttons like this: ![with buttons](https://i575.photobucket.com/albums/ss192/darkadept/withAddDelete.jpg) Or with a blank line indicating a new record like this: ![alt text](http...
What's best when inserting into a table view, and add button or a blank line?
CC BY-SA 2.5
null
2009-03-20T19:11:03.207
2009-03-21T13:11:22.017
2017-02-08T14:11:05.800
-1
76,885
[ "user-interface" ]
670,764
1
672,755
null
13
3,891
If I have run a long line in IPython, and try and recall it (using the up-arrow) or backspace beyond the start of the current line, it displays incorrectly (all smushed into one line) For example, in the following session I wrote a long line `[1]`, entered a somewhat-blank line `[2]`, then up-arrowed twice to get the ...
Line-wrapping problems with IPython shell
CC BY-SA 3.0
0
2009-03-22T09:40:21.657
2017-08-15T11:43:10.020
2012-10-23T12:38:08.647
745
745
[ "python", "terminal", "ipython" ]
676,159
1
676,208
null
10
15,553
I'd like to create a graphic image on the fly based on user input, and then present that image as a PNG file (or jpg or gif if necessary, but PNG is preferred). This is actually for an astrology application; what I'd like to do is generate the chart in PNG for display. Python or Ruby is fine; in fact, the library avail...
Create static graphics files (png, gif, jpg) using Ruby or Python
CC BY-SA 2.5
0
2009-03-24T04:25:21.617
2020-01-12T00:36:26.103
2020-06-20T09:12:55.060
-1
35,092
[ "python", "ruby", "graphics", "png" ]
683,863
1
683,943
null
193
184,223
I'm trying to get images to display in a WPF ListView styled like a WrapPanel as described in this old ATC Avalon Team article: [How to Create a Custom View](http://blogs.msdn.com/atc_avalon_team/archive/2006/04/28/585844.aspx). ![](https://i.stack.imgur.com/IFIg5.png) When I try to populate the ListView with a LINQ-...
"Items collection must be empty before using ItemsSource."
CC BY-SA 4.0
0
2009-03-25T23:02:11.533
2022-10-03T13:21:49.667
2020-02-11T19:25:25.407
285,795
83
[ ".net", "wpf", "vb.net", "entity-framework", "binding" ]
684,438
1
723,349
null
1
7,882
I am working on a shared addin for MS Word 2007. I would like to add a button which pops up when selected text is right clicked. The attached snapshot should make this clear. Currently, the user has to select the text and then click a button on a custom control. It would be a lot easier if after selecting the text, s/h...
MS Word Plugin, Adding a button which pops up on right click on selected text
CC BY-SA 3.0
0
2009-03-26T03:43:12.310
2015-06-19T20:34:40.027
2020-06-20T09:12:55.060
-1
66,455
[ "c#", "word-2007", "shared-addin" ]
685,828
1
686,020
null
5
15,953
: SQL Server 2005 w/ SP3 and 2008 Is there a built-in SQL Server stored procedures that will retrieve following information? Or a DMV (Dynamic Management View) would be great as well. I am interested mainly on how to find out data of a table specifically. But it'd be better if there was a sproc that will return all ...
How to get a table storage information
CC BY-SA 2.5
0
2009-03-26T13:38:09.977
2018-02-15T06:34:13.477
2017-02-08T14:11:14.733
-1
4,035
[ "sql-server", "sql-server-2005", "sql-server-2008" ]
688,359
1
688,710
null
1
7,499
I am trying to get zIndexing working on a custom UserControl but, it clips the bottom of the control when it pops up inside a TabControl as shown: ![Demo of Control](https://i.stack.imgur.com/Ucnjz.jpg) This is my XAML ``` <StackPanel Panel.ZIndex="1"> <TabControl Name="TabCtrlMain" Panel.ZIndex="2"> <Ta...
WPF zIndex in TabControl
CC BY-SA 3.0
0
2009-03-27T02:50:57.403
2013-07-20T04:53:28.193
2013-07-20T04:53:28.193
2,556,654
42,707
[ ".net", "wpf", "popup", "z-index" ]
689,341
1
689,481
null
6
21,653
### Duplicate > [How do I improve my Typing Skills?](https://stackoverflow.com/questions/410880/how-do-i-improve-my-typing-skills).** I tried the test on [http://speedtest.10-fast-fingers.com/](http://speedtest.10-fast-fingers.com/). I reach only: > `You type 337 characters per minute You` `have 58 correct words and...
What is the best way to learn Touch Typing?
CC BY-SA 3.0
0
2009-03-27T11:10:28.000
2014-12-10T18:18:24.930
2020-06-20T09:12:55.060
-1
77,212
[ "keyboard", "performance", "dvorak" ]
689,343
1
689,393
null
1
1,953
I'm using , and trying to enable access to the calendar on my website. The problem is that I get `This feed is read-only` error every time I try to add an event to the calendar. Here's where I post to: [Link](https://www.google.com/calendar/feeds/mydomain.com_oaiat5pq6l6dsfnmrodn8susvc@group.calendar.google.com/priva...
gData API - "This feed is read-only" error when adding to Google Calendar
CC BY-SA 3.0
null
2009-03-27T11:11:16.187
2013-07-20T04:49:23.897
2013-07-20T04:49:23.897
2,556,654
3,661
[ "gdata-api", "google-calendar-api" ]
690,049
1
690,062
null
2
721
Instead of passing many arguments to a method, I was encapsulating it into an argument object. : simplied for demo ![alt text](https://farm4.static.flickr.com/3461/3390095308_6f5dccc4cd_o.png) For such a case, what would be a better practice? > • Create a class and it as `InventorySaveArgs`? -- or -- • Create ...
Create a regular class or an Inner class for a Parameter Object?
CC BY-SA 2.5
null
2009-03-27T14:44:43.943
2016-04-29T23:24:10.217
2017-02-08T14:11:15.810
-1
4,035
[ "c#", ".net", "naming-conventions", "inner-classes", "parameter-object" ]
691,423
1
691,433
null
0
1,010
This might be trivial for some of you, but I have two screenshots from the Lose It! app in which I'm curious how two different screens were put together. The first: ![http://dl-client.getdropbox.com/u/57676/screenshots/loseit1.jpg](https://i.stack.imgur.com/ybcm3.jpg) That middle graph which shows the statistics cha...
How are these two iPhone UI pieces accomplished?
CC BY-SA 3.0
null
2009-03-27T20:58:49.507
2013-07-19T13:56:42.487
2013-07-19T13:56:42.487
2,556,654
40,882
[ "iphone", "cocoa", "cocoa-touch" ]
692,443
1
null
null
0
10,848
My blog suddenly popup this error today, I searched around on google but still haven't found anything. But it doesn't happen on Firefox, only on IE7 and IE8. I have deactivated all wordpress's plugins but still get the still error. I have uploaded the screenshot ![alt text](https://img2.pict.com/ba/dd/f6/db396a6f27b1...
"Stack overflow at line: 0" on Internet Explorer
CC BY-SA 3.0
null
2009-03-28T08:23:10.983
2017-05-06T08:12:04.293
2017-05-06T08:12:04.293
4,284,627
83,952
[ "internet-explorer", "stack-overflow" ]
692,631
1
null
null
0
1,900
I have two tables, a car table which contains different properties for a car, and a `carmodeldefinition` which is a foreign key to a table with the same name. The `cardefinition` table contains the different cars and models. I have mapped them in the entity framework. ![image](https://i.stack.imgur.com/fFWUY.jpg) Whe...
Entity framework and foreign keys
CC BY-SA 3.0
null
2009-03-28T11:23:36.727
2013-07-20T04:35:59.320
2013-07-20T04:35:59.320
2,556,654
null
[ "entity-framework", "foreign-keys", "entity" ]
693,446
1
null
null
1
1,765
I'm trying to build a simple application to test the idea of having multiple forms in one application. For example, in Visual Studio, you have the IDE - design area, and on the right hand side, you have a form called Properties and Solution Explorer When you click on something in the design area, i.e. Textbox, on the ...
Multiple Forms in C# Window
CC BY-SA 3.0
null
2009-03-28T20:15:46.183
2013-07-20T04:28:30.363
2013-07-20T04:28:30.363
2,556,654
75,727
[ "winforms" ]
694,108
1
723,727
null
13
9,232
This question is a little involved. I wrote an algorithm for breaking up a [simple polygon](http://en.wikipedia.org/wiki/Simple_polygon) into convex subpolygons, but now I'm having trouble proving that it's optimal (i.e. minimal number of convex polygons using (added vertices)). My prof is adamant that it can't be do...
Decomposition to Convex Polygons
CC BY-SA 3.0
0
2009-03-29T04:41:34.190
2015-08-18T15:49:09.143
2015-08-18T15:46:48.890
65,387
65,387
[ "geometry" ]
694,971
1
694,979
null
0
618
I am currently making a program with the AWT GUI and I'm running into a problem. I basically want an image in the top left hand corner of the screen, and a column of buttons on the right of the image. This isn't what's happening though. When I run the applet, I click a popup saying "Start Program" and then the picture ...
Working with frames and Java AWT
CC BY-SA 3.0
null
2009-03-29T17:07:18.687
2013-07-20T04:13:57.273
2013-07-20T04:13:57.273
2,556,654
84,314
[ "java", "layout", "awt" ]
695,458
1
null
null
4
10,458
I posted earlier about having a really messed up panel but, I fixed that by simply changing the layout (thank you to Charlie Martin for helping me). Now, I'm trying to add an image to a panel, so I can add that panel to the frame. This is part of the class that I am messing around with. [http://friendpaste.com/13zibFC...
Adding an image to a panel using Java AWT
CC BY-SA 3.0
null
2009-03-29T21:52:47.347
2013-07-20T04:09:51.527
2013-07-20T04:09:51.527
319,204
84,314
[ "java", "image", "awt", "frames", "panels" ]
696,669
1
696,894
null
1
312
I have the following tables within a database, that I am using to store the results of surveys: ![alt text](https://i.stack.imgur.com/091sC.jpg) Each time I speak to someone at a store (read Shop), I create a new transaction, with a date/time (tblTransaction.Created). Each transaction can have many question answers a...
MySQL - Combining questions and answers from multiple transactions
CC BY-SA 3.0
null
2009-03-30T10:11:53.810
2013-07-20T04:06:39.843
2013-07-20T04:06:39.843
2,556,654
84,549
[ "sql", "mysql" ]
697,345
1
null
null
6
12,620
I need help for a dynamic where clause in LinqToSql. User select conditions from page. (there is 4 input that user select the clauses) But interface and dynamic query will be generated at codebehind and select From LinqToSql. You can give similar type of example from another web pages. ![alt text](https://i.s...
Dynamic Where Clause over relational tables with LINQ to SQL
CC BY-SA 4.0
0
2009-03-30T14:03:48.073
2019-03-09T10:15:40.400
2019-03-09T10:15:40.400
4,751,173
null
[ ".net", "linq", "linq-to-sql", "dynamic", "where-clause" ]
702,519
1
702,528
null
1
234
I have many projects that are named after namespaces types are under ![alt text](https://farm4.static.flickr.com/3635/3401652745_4d942700e0_o.png) When adding a new sub-namespace, how do you decide whether to • create a new folder in a project -- or -- • create a new project in a solution? What are some of dis/ad...
When do you add a new project for a nested namespace?
CC BY-SA 2.5
null
2009-03-31T18:50:06.847
2009-03-31T21:01:52.817
2017-02-08T14:11:17.613
-1
4,035
[ ".net", "project-management", "namespaces" ]
704,602
1
704,626
null
2
2,991
I'm working on a small little thing here for school. After hours of researching, and a ton of errors and logic reworking I've almost completed my little program here. I'm trying to take user input, store it into the string, get a character array from the string ( dont ask why, I just have to put this into a character ...
I am trying to return a Character Array but, I'm only getting the first letter returned
CC BY-SA 3.0
null
2009-04-01T08:33:43.593
2016-03-24T21:08:02.757
2013-07-20T03:54:55.667
2,556,654
60,615
[ "c++", "arrays", "string", "pointers", "return-value" ]
704,681
1
704,693
null
2
910
I have a read-only database, so I am turning off ObjectTracking (thus implicitly turning off DeferredLoading). I wish to do lazy loading and not use LoadWith<>. What is the simplest way to explicitly tell Linq to go and lazy fetch a relation just before I need the data itself. For example: a simple dbml ![alt text](...
Simplest way to do Lazy Loading with LINQ2SQL
CC BY-SA 4.0
null
2009-04-01T09:04:04.067
2019-03-09T10:13:06.613
2019-03-09T10:13:06.613
4,751,173
11,659
[ "c#", "linq-to-sql", "optimization", "lazy-loading" ]
707,657
1
718,200
null
24
12,399
We are trying to come up with a numbering system for the asset system that we are creating, there has been a few heated discussions on this topic in the office so I decided to ask the experts of SO. Considering the database design below what would be the better option. ![alt text](https://i.stack.imgur.com/av4vO.png...
Picking the best primary key + numbering system
CC BY-SA 3.0
0
2009-04-01T22:55:08.063
2016-08-03T12:45:56.087
2016-08-03T12:45:56.087
2,856,839
6,335
[ "database", "database-design", "primary-key" ]
708,868
1
714,011
null
0
1,062
I have a chart created with Birt and I want to add some label on it to specify the 4 regions delimited by the 2 red markers (see image below), one label in each quadrant (centered if possible). I am looking for a solution to do that, directly using birt chart editor or by using a javascript (like I have done for the r...
How to display an overlay label on a chart?
CC BY-SA 3.0
null
2009-04-02T08:53:54.177
2015-06-19T20:32:56.047
2015-06-19T20:32:56.047
1,159,643
12,248
[ "javascript", "reporting", "birt" ]
709,857
1
709,867
null
7
4,887
([PDF](http://www.google.com/url?sa=t&source=web&ct=res&cd=6&url=http%3A%2F%2Fwww.objectmentor.com%2Fresources%2Farticles%2Fsrp.pdf&ei=fsTUSdXFGt2MtgeYtYXhDw&usg=AFQjCNHQQ1Aw-2yCciEbERpJn3VdHBCmQw&sig2=SfZ5lixoD1iPnM8KnQ_W2A) version; [HTML](http://www.google.com/url?sa=t&source=web&ct=html&cd=6&url=http%3A%2F%2F74.125...
When do you violate SRP (Single Reponsibility Principle)?
CC BY-SA 2.5
0
2009-04-02T14:04:55.007
2009-04-02T18:38:35.607
2017-02-08T14:11:18.970
-1
4,035
[ "single-responsibility-principle", "design-guidelines" ]
710,665
1
710,858
null
8
962
When you right click on a method in a code file in Visual Studio 2008 you get this ![alt text](https://lh4.ggpht.com/_UhTaY5FX8Kk/SdTt375M-PI/AAAAAAAAGSA/QTSWdORoK9c/Clipboard01.jpg) which creates the unit test skeleton for that method. Is there a way (by means of a template change or some nifty hack) by which I can...
Visual Studio 2008 unit tests and nunit
CC BY-SA 2.5
0
2009-04-02T17:06:44.907
2009-04-14T11:16:03.093
2017-02-08T14:11:19.310
-1
22,039
[ ".net", "visual-studio", "visual-studio-2008", "unit-testing", "nunit" ]
711,948
1
712,037
null
0
554
In Flex, I'm using an HBox to hold thumbnails. When more thumbnails are added than can be shown, the HBox becomes scrollable. When I add more than, say, 80 images, when I scroll back to the first image, the images begin "tearing", until I hover my mouse over them. This is how it looks when few images are added: ![Ex...
Adding many images to HBox causes display problems in Flex
CC BY-SA 2.5
null
2009-04-02T22:51:05.657
2009-08-25T15:52:18.917
null
null
52,791
[ "apache-flex", "flash", "actionscript-3" ]
713,508
1
713,579
null
49
143,084
Say I have nodes connected in the below fashion, how do I arrive at the number of paths that exist between given points, and path details? ``` 1,2 //node 1 and 2 are connected 2,3 2,5 4,2 5,11 11,12 6,7 5,6 3,6 6,8 8,10 8,9 ``` Find the paths from 1 to 7: Answer: 2 paths found and they are ``` 1,2,3,6,7 1,2,5,6,...
Find the paths between two given nodes?
CC BY-SA 2.5
0
2009-04-03T11:09:18.033
2017-04-04T20:17:22.497
2017-04-04T20:17:22.497
1,571,709
22,076
[ "algorithm", "path", "graph-theory", "pseudocode" ]
716,970
1
717,102
null
35
36,146
This looks like it should be possible with the following: ``` .verticalText { /* IE-only DX filter */ writing-mode: tb-rl; filter: flipv fliph; /* Safari/Chrome function */ -webkit-transform: rotate(270deg); /* works in latest FX builds */ -moz-transform: rotate(270deg); } ```...
Rotating table header text with CSS transforms
CC BY-SA 3.0
0
2009-04-04T12:11:34.333
2014-01-29T20:32:58.577
2017-05-23T12:17:33.783
-1
905
[ "css", "cross-browser" ]
717,155
1
717,225
null
2
10,576
Going to make an applications wich will be used on a device without a physical keyboard Looking for best practices for touch-screen applications. Which commercial/free on-screen keyboard or on-screen numeric keypads do you use on Windows devices? Or should we use a library to implement our own input devices? Currently ...
On-screen keyboard for Windows apps (C++/C#) with touch-screen capability
CC BY-SA 3.0
null
2009-04-04T14:09:16.797
2015-06-19T20:05:19.253
2015-06-19T20:05:19.253
1,159,643
49,544
[ "c#", "windows", "touchscreen", "on-screen-keyboard" ]
717,174
1
717,189
null
1
1,491
My question is simple. What is the best way to achieve what you see the pic below in WPF? At the moment this is a horizontal StackPanel, with the right padding of the checkbox set to 90. This works okay, but if you resize the window it's no good anymore, unless maybe you re-adjust the padding in the window's resize ev...
How do I add dynamic spacing between controls? (with pics)
CC BY-SA 2.5
null
2009-04-04T14:22:10.837
2011-09-27T15:22:47.187
2017-02-08T14:11:20.070
-1
63
[ "c#", "wpf", "xaml", "layout" ]
717,973
1
717,979
null
4
4,387
Can someone explain Breadth-first search to solve the below kind of problems ![alt text](https://farm4.static.flickr.com/3120/3409325514_68840abcb8.jpg) I need to find all the paths between 4 and 7
Can someone explain Breadth-first search?
CC BY-SA 2.5
0
2009-04-04T22:44:42.097
2017-04-04T23:52:05.857
2017-04-04T23:52:05.857
1,571,709
22,076
[ "algorithm", "graph-theory", "breadth-first-search" ]
718,386
1
720,364
null
5
1,770
I'm working with a `NotifyIcon` and `ContextMenuStrip`, I don't want to use the default menu look and feel which is shipped out of the box with this control which is different to Windows (Vista in my case) by using `contextMenu.RenderMode = ToolStripRenderMode.ManagerRenderMode` or `contextMenu.RenderMode = ToolStripRe...
How can I use the Windows look'n'feel for a system tray context menu?
CC BY-SA 2.5
0
2009-04-05T05:20:07.467
2012-11-28T06:15:02.110
2017-02-08T14:11:21.763
-1
41,211
[ "c#", ".net", "winforms" ]
719,319
1
null
null
2
1,044
I'm taking a look at some basic UI principles that the mint.com team put into the iPhone application. A quick screenshot that I'm referencing: ![enter image description here](https://i.stack.imgur.com/Ixuos.png) I have two questions regarding this UI: 1) There is an elegant space between the UITableViewCell's in whi...
Two questions regarding this iPhone UI
CC BY-SA 3.0
0
2009-04-05T17:19:22.340
2011-07-21T10:32:19.863
2011-07-21T10:32:19.863
128,662
40,882
[ "iphone", "cocoa-touch" ]
721,526
1
null
null
2
1,284
In my Google Maps application, which is supposed to be run on mainly on iPhones, hence the 480/320 window resolution, I am displaying some "stuff" in the GInfoWindow information bubbles. The problem is that, sometimes the bubble is too filled with contents that it doesn't fit onto the screen quite the way I'd like it t...
How to force the GInfoWindow to shorten its tail?
CC BY-SA 2.5
null
2009-04-06T13:49:32.600
2009-07-07T21:27:07.957
2017-02-08T14:11:23.110
-1
81,520
[ "javascript", "json", "google-maps", "openinfowindowhtml" ]
722,700
1
null
null
19
34,123
I'm trying to put a TreeView inside a ComboBox in WPF so that when the combo box is dropped, instead of a flat list the user gets a hierarchical list and whatever node they select becomes the selected value of the ComboBox. I've searched quite a bit for how to accomplish this but the best I could find was only peices ...
WPF: TreeView inside a ComboBox
CC BY-SA 2.5
0
2009-04-06T18:55:52.817
2020-07-17T04:25:52.710
2011-01-24T22:47:31.000
107,718
null
[ "wpf", "combobox", "treeview" ]
724,878
1
724,915
null
4
11,816
I'm using [960 grid system](http://960.gs/) to create a layout prototype. I would like to set the color between and to #000 (solid black), but I can't figure out how. What I currently get is: ![alt text](https://imgur.com/1NM0Y.png) Using this code: ``` <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "ht...
Questions regarding CSS design using 960 grid system
CC BY-SA 2.5
0
2009-04-07T09:50:22.073
2009-04-07T11:33:45.803
2009-04-07T11:33:45.803
null
null
[ "html", "css", "960.gs" ]
727,163
1
727,270
null
1
2,805
The scenario is that the client wants a floating div (the gray box) with text that wraps around it. However some of that text includes ul's and ol's, which hide behind the floating div in IE6. I tried wrapping the ul's/ol's in a div to see if that would help, but have been unsuccessful. Has anyone experienced this p...
CSS: UL's/OL's vs. Div floating left in IE
CC BY-SA 3.0
null
2009-04-07T19:04:22.927
2012-06-05T16:08:30.610
2012-06-05T16:08:30.610
44,390
null
[ "html", "css", "html-lists", "css-float" ]
733,721
1
4,077,170
null
10
13,752
I have to activate android's system key lock (the one you get when you press the / button). See here: ![img](https://farm4.static.flickr.com/3202/2849046033_fd42359cef.jpg) I already browsed the docs but everything I found was [PowerManager](http://developer.android.com/reference/android/os/PowerManager.html) and [Ke...
Android - Activation of the system key lock (aka lock screen)
CC BY-SA 3.0
0
2009-04-09T10:58:27.383
2012-04-03T10:52:09.890
2017-02-08T14:11:24.480
-1
55,925
[ "java", "android", "keyboard", "locking", "device-admin" ]
735,282
1
735,434
null
5
1,143
This is really annoying when you try to follow the documentation [Squeak by Example](http://squeakbyexample.org/). Instead of calling the mouse buttons left, right, and middle, like in any other documentation, they give them colors. It's even suggested to label the mouse to help you learning. It's 2009 and there are ...
Why does Squeak use Colors to identify Mouse Buttons?
CC BY-SA 3.0
null
2009-04-09T18:01:22.507
2015-01-08T20:36:31.563
2015-01-08T20:36:31.563
41,860
41,860
[ "documentation", "smalltalk", "squeak" ]
735,445
1
null
null
0
141
(moved here from a combined question) I'm wondering if there are any software tools projects to: - - - - - ![https://farm4.static.flickr.com/3335/3426085255_a5266b4435.jpg?v=0](https://farm4.static.flickr.com/3335/3426085255_a5266b4435.jpg?v=0) I know I manually generate the MD5 and compare the MD5 hash, but it's ...
tools for downloading software + automatically verifying integrity
CC BY-SA 2.5
null
2009-04-09T18:45:48.360
2009-04-09T19:52:35.670
2017-02-08T14:11:25.150
-1
44,330
[ "data-integrity" ]
736,730
1
738,105
null
5
1,857
How does the DiggBar work? I'm trying to make an ASP.NET MVC DiggBar clone just for learning purposes and does anyone have a suggestion on how to specify the url of the content for the lower frame? How would you go about constructing that in MVC? Also, I know that it is an iFrame, but how do they position it so re...
How does the DiggBar work?
CC BY-SA 2.5
0
2009-04-10T04:47:10.143
2011-06-03T15:21:13.990
2009-04-10T04:55:13.603
64,878
64,878
[ "asp.net-mvc", "css", "digg" ]
739,867
1
764,688
null
1
353
I’m on the learning curve up the Silverlight trail. I’m a data-centric developer so I naturally picked up the ADO.NET Data Services client along the way. I’m scratching my head over a real-world scenario and can’t seem to find any help in documentation, blogs etc. I’ve got a complex Tutor entity with related entity ...
Client-Side entity creation with related code tables
CC BY-SA 2.5
null
2009-04-11T10:58:26.907
2010-11-19T13:10:04.913
2009-04-13T17:45:44.087
48,172
48,172
[ "entity-framework", "asynchronous" ]
741,293
1
741,454
null
2
2,300
I'm attempting to make a TinyURL clone in ASP.NET MVC as a learning project. Right now, all I want is to be able to submit new URLs to my /Home/Create action via a form. ![alt text](https://imgur.com/JJOP0.png) I have my LINQ expression all setup, I have my routing setup, and I have my view setup but something is wr...
Why doesn't this form call my controller action in ASP.NET MVC?
CC BY-SA 2.5
0
2009-04-12T05:10:11.680
2009-04-12T08:17:53.647
2009-04-12T05:16:12.507
88,470
88,470
[ "asp.net-mvc", "webforms" ]
741,985
1
742,069
null
343
243,358
How should a latex source code listing look like to produce an output like in known books, for example one for the Spring Framework? I've tried with the latex listings package but wasn't able to produce something that looked as nice as the one below. So I'm primarely interested in the formatting instructions to produce...
LaTeX source code listing like in professional books
CC BY-SA 4.0
0
2009-04-12T16:15:51.500
2018-08-27T11:59:54.067
2018-08-27T11:59:54.067
10,224,740
77,184
[ "latex" ]
746,353
1
null
null
19
33,055
I would like to include a flip counter on my site, similar to what Apple was using for their [1 billion app countdown](http://www.macrumors.com/2009/04/10/apple-launches-1-billion-app-countdown-promotion/). ![enter image description here](https://i.stack.imgur.com/cHLPq.jpg) Can anyone get their JavaScript to work st...
JavaScript Flip Counter
CC BY-SA 3.0
0
2009-04-14T04:30:03.897
2021-04-08T08:16:52.433
2011-11-29T17:37:02.590
325,514
null
[ "javascript", "animation", "counter", "flip" ]
750,419
1
750,493
null
1
1,875
I have two computers. One computer is an old XP and the other is a new Vista. I have dowloaded and pretty much tested an installation of VS2008ProEdition90dayTrialENUX1435622.iso without any problems on the XP computer. The Vista computer (where I need to do my work and where I have all the hard drive space, etc) has ...
Problems With VS2008 Pro Edition 90 day Trial
CC BY-SA 2.5
null
2009-04-15T05:26:49.260
2011-05-22T19:01:53.870
2017-02-08T14:11:28.210
-1
54,760
[ "visual-studio-2008", "windows-vista", "installation" ]
751,567
1
1,330,933
null
5
9,114
I'm trying to make a plot with pylab/matplotlib, and I have two different sets of units for the x axis. So what I would like the plot to have is two axis with different ticks, one on the top and one on the bottom. (E.g. one with miles and one with km or so.) Something like the graph below (but than I would like multip...
both a top and a bottom axis in pylab (e.g. w/ different units) (or left and right)
CC BY-SA 3.0
0
2009-04-15T12:57:27.913
2020-02-29T12:38:15.807
2020-02-29T11:19:44.030
1,621,041
2,097
[ "python", "matplotlib", "plot", "axes" ]
751,624
1
751,917
null
0
12,006
I need to put 2 divs side by side. But what's more important, I want this to display correctly in IE6/7. I have managed to succeed this with Firefox though. My code: ``` #container{ padding:10px; } #left{ float:left; width:500px; } #right{ width: 300px; float:right; padding:7px; backgroun...
Putting 2 divs side by side / Internet Explorer 6/7 float and padding (?) bug fix
CC BY-SA 3.0
null
2009-04-15T13:11:06.227
2015-06-19T20:46:22.590
2015-06-19T20:46:22.590
1,159,643
87,997
[ "html", "internet-explorer", "css-float", "css" ]
751,840
1
752,458
null
5
15,805
I've tried to research this on Google but there doesn't appear to me to be any coherent simple answers. Is this because it's not simple, or because I'm not using the correct keywords? Nevertheless, this is the progress I've made so far. 1. Created 8 vertices to form 2 squares. 2. Created a texture with a 200 bit alp...
How do I make textures transparent in OpenGL?
CC BY-SA 3.0
0
2009-04-15T14:01:16.650
2015-06-19T20:48:55.530
2015-06-19T20:48:55.530
1,159,643
47,775
[ "c++", "opengl", "textures", "opacity" ]
752,182
1
752,212
null
1
924
I've got the following ADO.NET Entity Framework Entity Data Model: ![ADO.NET Entity Data Model](https://i.stack.imgur.com/4lEIL.gif) I want to find all the Policyholders with both a Service of a given Id and also a Keyword of a given Status. This LINQ Does Not Work: ``` Dim ServicesId As Integer = ... Dim KeywordSt...
How do I search the collection of a collection in my LINQ Where clause?
CC BY-SA 3.0
null
2009-04-15T15:16:39.420
2015-06-19T20:34:19.387
2015-06-19T20:34:19.387
1,159,643
83
[ ".net", "vb.net", "linq", "entity-framework", "lambda" ]
753,140
1
753,214
null
23
48,535
Suppose there are a number of convex polygons on a plane, perhaps a map. These polygons can bump up against each other and share an edge, but cannot overlap. ![alt text](https://i.stack.imgur.com/AkGPs.jpg) To test if two polygons and overlap, first I can test each edge in to see if it intersects with any of the ...
How do I determine if two convex polygons intersect?
CC BY-SA 3.0
0
2009-04-15T18:49:42.167
2017-11-29T21:16:34.497
2017-06-15T11:54:06.893
5,769,497
6,688
[ "geometry", "polygon", "convex" ]
757,009
1
758,121
null
1
3,397
There are two QTreeViews in the screenshot below. For the one on the right, I've add a css customization: ``` setStyleSheet( "background-color: #EAF5FF;" "alternate-background-color: #D5EAFF;" ); ``` Notice however, the scrollbar appearance has changed. It went to the "windows" style, not the "windowsxp" s...
QTreeView stylesheet customization problem with scrollbar
CC BY-SA 2.5
null
2009-04-16T16:45:36.980
2013-09-11T00:01:40.433
2017-02-08T14:11:29.903
-1
45,799
[ "qt" ]
758,638
1
762,755
null
5
3,738
I'm trying to load a texture with RGBA values but the alpha values just seem to make the texture more white, not adjust the transparency. I've heard about this problem with 3D scenes, but I'm just using OpenGL for 2D. Is there anyway I can fix this? I'm initializing OpenGL with ``` glViewport(0, 0, winWidth, winHeig...
OpenGL alpha value makes texture whiter?
CC BY-SA 3.0
0
2009-04-17T00:56:20.607
2015-06-19T20:44:17.303
2015-06-19T20:44:17.303
1,159,643
65,387
[ "opengl", "textures" ]
760,363
1
765,465
null
1
745
I created a custom lookup field type which works fine. However, there is a context menu for every item in columns of this type. ![the unwanted SharePoint drop-down menu](https://i.stack.imgur.com/hOfby.png) I to add this context menu. How to get rid of it?
Unwanted SharePoint context menu
CC BY-SA 3.0
null
2009-04-17T13:16:10.657
2011-12-02T13:21:44.033
2011-12-02T13:21:44.033
95
95
[ "sharepoint" ]
763,056
1
null
null
0
747
Right now, Reddit is down. Every time you go to it, it displays a logo and below it a funny message. Every time you refresh the page it displays a new message. ![alt text](https://imgur.com/NS87G.png) How could I write something simple that ~rotates~ (not random) a line of text on the page every refresh? I'm using...
How can I rotate a line of text each page refresh?
CC BY-SA 2.5
null
2009-04-18T06:59:14.983
2009-04-19T01:57:04.280
2009-04-18T18:57:57.033
88,470
88,470
[ "asp.net", "asp.net-mvc" ]
764,042
1
764,123
null
2
2,684
![alt text](https://www.reddit.com/static/aupgray.gif)![alt text](https://www.reddit.com/static/adowngray.gif) uparrow.gif and downarrow.gif So, it would look like so: ![alt text](https://www.reddit.com/static/aupgray.gif) ![alt text](https://www.reddit.com/static/adowngray.gif) How can I create 3 divs and style t...
How can I stack two arrow images (upvote/downvote) on top of eachother using CSS?
CC BY-SA 2.5
0
2009-04-18T19:43:07.613
2009-04-18T20:29:43.523
2017-02-08T14:11:31.603
-1
88,470
[ "css" ]
764,183
1
null
null
1
3,103
I have a content type with a CCK integer field which takes a unix timestamp. I would like to create a view with a filter that takes the MySQL function "UNIX_TIMESTAMP": ![screenshot](https://i.stack.imgur.com/EOJur.png) If there is no way of doing this, how can I alter the SQL generated for the view?
Use SQL to Filter Drupal Views
CC BY-SA 3.0
0
2009-04-18T20:53:36.397
2013-05-31T01:01:21.210
2013-05-31T01:01:21.210
225,647
80,857
[ "php", "drupal", "drupal-views", "cck", "drupal-exposed-filter" ]
764,415
1
773,516
null
4
1,823
I know there are methods to [approximate cubic Bezier curves](https://stackoverflow.com/questions/427796/approximating-nonparametric-cubic-bezier) ([this page](http://www.timotheegroleau.com/Flash/articles/cubic_bezier_in_flash.htm) was also a good reference), but is there a quicker method to approximate a bezier curve...
Approximating Bezier Curves of Degree N
CC BY-SA 2.5
0
2009-04-18T22:58:00.187
2013-07-09T21:58:25.777
2017-05-23T10:29:37.043
-1
24,717
[ "bezier" ]
766,662
1
766,677
null
5
533
Is pressing only way to indent for F# in #light mode? This seems like a serious hindrance while using #light mode. Is there a better way than keep on pressing space bar in VS 2008? ![alt text](https://farm4.static.flickr.com/3568/3457340817_669bf150e8_o.png) by Brian ([answer](https://stackoverflow.com/questions/...
How to indent F# code in Visual Studio 2008 in #light mode
CC BY-SA 2.5
null
2009-04-20T02:31:26.547
2009-04-20T14:21:36.887
2017-05-23T11:53:27.760
-1
4,035
[ "visual-studio", "f#", "indentation" ]
768,282
1
768,307
null
64
69,504
I am trying to delete files in my `$(TargetDir)` within visual studio before building a project. How do you have to format command line to get around this problem I am getting below? ![alt text](https://farm4.static.flickr.com/3575/3459516474_65f59767d4_o.png)
How to delete files in Visual Studio Pre-build event command line
CC BY-SA 2.5
0
2009-04-20T13:35:27.603
2022-09-20T07:49:51.470
2017-02-08T14:11:33.323
-1
4,035
[ "visual-studio", "command-line", "build-process", "pre-build-event" ]
768,304
1
789,315
null
7
5,080
--- In the wiki spirit of StackOverflow, here's an update: I spiked Joe White's IValueConverter suggestion below. It works like a charm. I've written a "quickstart" example of this that automates the mapping of ViewModels->Views using some cheap string replacement. If no View is found to represent the ViewMod...
WPF MVVM: Convention over Configuration for ResourceDictionary?
CC BY-SA 3.0
0
2009-04-20T13:40:26.923
2015-06-19T20:44:06.890
2015-06-19T20:44:06.890
1,159,643
83,418
[ "wpf", "mvvm" ]
769,531
1
796,013
null
0
1,732
I have been playing with some of the imaging functionality in Java, trying to superimpose one image over another. Like so: ``` BufferedImage background = javax.imageio.ImageIO.read( new ByteArrayInputStream(getDataFromUrl( "https://www.google.com/intl/en_ALL/images/logo.gif" )) ); BufferedImage foregr...
Java: using WritableRaster.setRect to superimpose an image?
CC BY-SA 2.5
0
2009-04-20T18:33:01.697
2009-11-14T03:33:16.717
2017-02-08T14:11:34.010
-1
93,328
[ "java", "image", "image-manipulation", "raster" ]
770,726
1
772,728
null
179
51,205
I'm using Team Foundation Server 2008 (SP 1) and I need to move multiple files from one folder to another (to retain file history). In addition to Team Explorer (with SP 1) I've also got the latest TFS Power Tools (October 2008) installed (for Windows Shell integration). Now, the problem is that I can't seem to selec...
Moving multiple files in TFS Source Control
CC BY-SA 3.0
0
2009-04-21T01:36:43.267
2022-05-03T11:24:45.760
2014-08-14T10:06:15.167
248,616
18,471
[ "version-control", "tfs" ]
771,148
1
771,168
null
3
724
I'm having some trouble identifying the problem with my html code. I've created a table and it is like this on Internet Explorer (which is the result I'm looking for): ![IE](https://i260.photobucket.com/albums/ii17/rawpinions/01-3.png) But it comes up like this on Firefox: ![Firefox](https://i260.photobucket.com/al...
HTML border differences in FF and IE
CC BY-SA 2.5
0
2009-04-21T05:25:16.667
2009-04-21T05:36:16.470
2017-02-08T14:11:34.680
-1
92,881
[ "html", "css", "cross-browser", "browser" ]
775,284
1
775,319
null
0
852
I'm trying to understand the difference between using a `UINavigationController` inside a Nib (via the library window) and subclassing the `UINavigationController`. (For the purposes of this question, I'm not just specifically referring to a Navigation Controller; I'm referring to any Controller that is contained in th...
iPhone - Difference between a Library UINavigationController and my subclassing UINavigationController
CC BY-SA 3.0
null
2009-04-22T00:39:54.630
2012-03-09T04:56:23.667
2012-03-09T04:56:23.667
19,329
18,196
[ "iphone", "cocoa-touch", "uinavigationcontroller", "controller", "uitabbarcontroller" ]
776,071
1
776,077
null
16
5,961
I noticed that the bash shell can suggest command line switches for your command. Just type your command, a dash (-) and type tab. The shell will show you available switches. For example, try: ``` andy@andyx:~$ java - ``` and press tab - Surprise! ![Screenshot](https://i.stack.imgur.com/TYqIS.png) The question i...
Surprise! the shell suggests command line switches
CC BY-SA 3.0
0
2009-04-22T07:48:38.450
2017-01-02T10:30:03.993
2017-01-02T10:30:03.993
660,921
63,051
[ "linux", "bash", "shell", "command-line" ]
777,834
1
777,972
null
0
433
I would like to create a similar effect to Apple's Safari 4 Beta Top Sites page - ![http://farm4.static.flickr.com/3644/3323438140_10b62d40f4.jpg](https://i.stack.imgur.com/PXqUN.jpg) when when you view it and a page's content has changed since you last visited, it displays a blue star in the top right hand corner to...
Use jQuery to append star to menu item if the linked page's content has changed since last visit
CC BY-SA 3.0
null
2009-04-22T15:29:09.203
2013-07-19T14:05:55.387
2013-07-19T14:05:55.387
2,556,654
91,359
[ "javascript", "jquery", "cookies", "append" ]
780,977
1
781,025
null
1
1,680
I'm currently facing huge problem i.e I'm showing Image and some text in a image the problem is when I change content property of button from code, my image disappears and only assigned text is shown, I wan to retain image and just wann change the text, Any suggetions how to handle it ``` <Button x:Name="btnPrescan" M...
Handling Content property in WPF
CC BY-SA 2.5
null
2009-04-23T09:34:01.387
2011-09-27T16:55:58.740
2017-02-08T14:11:37.720
-1
85,606
[ "c#", "wpf", "wpf-controls" ]