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
sequence |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1,260,670 | 1 | null | null | 4 | 10,472 | I would like to create an application with rich UI elements and no VCL in Delphi (except a TForm). Each components (buttons, list, etc...) needs to support full per pixel alpha and be easily created without any codes. It should be skinnable and able to give result similar to adobe air application.
I've tried with GR32 (Graphics32), but each instance of TImage32 take too much memory.
Do you know any frameworks or components for Delphi 2009 that would allow me create a set of components for making rich UI application ?
Cheers!

I would like to have similar result but without using a TImage32 for each components (buttons, labels, panels, etc...)
| Rich GUI application in Delphi | CC BY-SA 3.0 | 0 | 2009-08-11T14:18:39.463 | 2015-06-20T02:17:03.997 | 2015-06-20T02:17:03.997 | 1,159,643 | null | [
"delphi",
"user-interface"
] |
1,260,879 | 1 | 1,261,067 | null | 0 | 55 | 
This happens when I try to deploy a Sharepoint WebPart solution. Is there a file or configuration option that I have missed that is causing this error to occur?
Thanks.
| Does anyone know where I can define this URI parameter? | CC BY-SA 2.5 | null | 2009-08-11T14:53:36.037 | 2009-08-11T15:21:03.817 | null | null | 25,515 | [
"sharepoint",
"deployment",
"web-parts"
] |
1,261,423 | 1 | null | null | 4 | 2,102 | I'm looking to something similar to how the [Stackoverflow Users page](https://stackoverflow.com/users) allows you to type in a username and it filter the users below in real time.

I'm using ASP.NET MVC and jQuery. Can someone point me to a simplified example that uses this technology stack to do the same thing?
| How can I provide a textbox that filters results in real time using ASP.NET MVC and jQuery (NOT autocomplete)? | CC BY-SA 2.5 | 0 | 2009-08-11T16:14:54.707 | 2009-08-11T19:40:10.410 | 2017-05-23T10:29:54.803 | -1 | 149,960 | [
"jquery",
"asp.net-mvc",
"ajax"
] |
1,262,574 | 1 | 19,129,400 | null | 120 | 116,215 | My application requires following things to be added in an action sheet.
- - -
I have included an image to understand my requirements.

Could you please explain, how this can be implemented?
| Add UIPickerView & a Button in Action sheet - How? | CC BY-SA 3.0 | 0 | 2009-08-11T20:01:10.897 | 2019-05-20T14:55:07.383 | 2019-05-20T14:55:07.383 | 2,272,431 | 140,765 | [
"ios",
"iphone",
"uipickerview",
"actionsheetpicker"
] |
1,263,973 | 1 | 1,269,863 | null | 1 | 3,625 | I am able to draw a sprite on the screen of an iPhone, but when I try to rotate it I am getting some weird results. It seems to be stretching the sprite in the y direction more the closer the sprite gets to pointing down the y-axis (90 and 270 degrees). It displays correctly when pointing down the x and -x axes (0 and 180 degrees). It is basically like it is shearing instead of rotating. Here are the essentials of the code (projection matrix is ortho):
```
glPushMatrix();
glLoadIdentity();
glTranslatef( position.x, position.y, -1.0f );
glRotatef( rotation, 0.0f, 0.0f, 1.0f );
glScalef( halfSize.x, halfSize.y, 1.0f );
vertices[0] = 1.0f;
vertices[1] = 1.0f;
vertices[2] = 0.0f;
vertices[3] = 1.0f;
vertices[4] = -1.0f;
vertices[5] = 0.0f;
vertices[6] = -1.0f;
vertices[7] = 1.0f;
vertices[8] = 0.0f;
vertices[9] = -1.0f;
vertices[10] = -1.0f;
vertices[11] = 0.0f;
glVertexPointer( 3, GL_FLOAT, 0, vertices );
glDrawArrays( GL_TRIANGLE_STRIP, 0, 4 );
glPopMatrix();
```
Can anybody explain to me how to fix this please?
halfsize is just half the x and y extent of the sprite; removing the glScalef call does not make any difference.
Here is my matrix setup:
```
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
glOrthof(0, 320, 480, 0, 0.01, 5);
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();
```
OK, hopefully this screenshot will demonstrate what's happening:

| OpenGL ES glRotatef performing shear instead of rotate? | CC BY-SA 3.0 | 0 | 2009-08-12T02:51:09.420 | 2015-06-20T02:06:27.023 | 2015-06-20T02:06:27.023 | 1,159,643 | null | [
"opengl-es",
"rotation"
] |
1,266,668 | 1 | 1,799,571 | null | 16 | 6,589 | In my WPF application I have this:
```
<StackPanel>
<TextBlock>
<Hyperlink>
<TextBlock TextWrapping="Wrap" Name="HyperlinkText" />
</Hyperlink>
</TextBlock>
</StackPanel>
```
But if I set `HyperlinkText.Text` to a long text that wraps, the whole text is underlined only once at the bottom (see image). Is there a way to have every line underlined separately without manual wrapping?

| Text wrapping in WPF hyperlink | CC BY-SA 3.0 | 0 | 2009-08-12T14:48:42.043 | 2019-11-12T08:11:23.730 | 2018-02-19T12:58:25.580 | 41,071 | 41,071 | [
"wpf",
"xaml",
"hyperlink",
"word-wrap"
] |
1,266,709 | 1 | 1,266,822 | null | 4 | 2,800 | I have written an implementation of the A* search algorithm. The problem is that the heuristic I'm currently using only works accurately on square grids. As my map is isometric, the heuristic doesn't take into account the layout of the map and thus, the distance between cells.
After extensive logging and analysis (read as ), I have come to the conclusion that my current heuristic works quite well, with one little exception: the end result is reversed for straight and diagonal movement.
```
inline int Pathfinder::calculateDistanceEstimate(const CellCoord& coord) const
{
int diagonal = std::min(abs(coord.x-goal->position.x), abs(coord.y-goal->position.y));
int straight = (abs(coord.x-goal->position.x) + abs(coord.y-goal->position.y));
return 14 * diagonal + 10 * (straight - 2 * diagonal);
}
```
This means that a straight move, which really costs `sqrt(2)` times more than a diagonal move on an map, is calculated to be the that of a diagonal one. The question is: how can I modify my current heuristic so it will produce correct results for an isometric layout? Simply replacing `diagonal` with `straight` and vice versa will work.

| Accurate A* search heuristic for isometric maps? | CC BY-SA 3.0 | 0 | 2009-08-12T14:53:22.753 | 2015-06-20T01:39:53.820 | 2020-06-20T09:12:55.060 | -1 | 126,977 | [
"algorithm",
"search",
"heuristics",
"a-star",
"isometric"
] |
1,267,568 | 1 | 1,268,278 | null | 0 | 3,787 | I designed an ascx control (I refer to it in this question as customControl). The control is just a series of drop downs with text values in each drop down. The drop downs are inside a panel.
Here it is below:

I then place a few of them on a page that also has a textbox (I refer to it here as textbox)
Here it is below:

So what I need to develop, is Javascript that when any of the drop downs in any of the customControls have a selected drop down index changed event, to find all the values in all the boxes of all the controls of type customControl on the page and simply put that text in the textbox.
Do I need to define my control to have a class so JS can find all of them easily and then have the JS function take in the textbox as control so it knows what to output and where?
| Javascript with an ascx control | CC BY-SA 2.5 | 0 | 2009-08-12T17:30:02.817 | 2019-08-06T13:51:00.507 | 2019-08-06T13:51:00.507 | 4,370,109 | 127,257 | [
"javascript",
"c#",
".net",
"ascx"
] |
1,269,947 | 1 | 1,270,653 | null | 1 | 4,081 | 
Why are those lines appearing in my shape?
I'm initializing OpenGL like this:
```
glDisable(GL_TEXTURE_2D);
glDisable(GL_DEPTH_TEST);
glDisable(GL_COLOR_MATERIAL);
glEnable(GL_BLEND);
glEnable(GL_POLYGON_SMOOTH);
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
glClearColor(0, 0, 0, 0);
```
And drawing the shape like this:
```
glClear(GL_COLOR_BUFFER_BIT);
glColor3f(1, 0, 0);
glBegin(GL_POLYGON);
glVertex2f(-5, -5); // bottom left
glVertex2f(5, -5); // bottom right...
glVertex2f(6, 0);
glVertex2f(5, 5);
glVertex2f(-5, 5);
glEnd();
```
Doesn't matter if it's clockwise or CCW.
| GL_POLYGON not filled properly? | CC BY-SA 3.0 | null | 2009-08-13T03:54:59.700 | 2015-06-20T02:34:40.327 | 2015-06-20T02:34:40.327 | 1,159,643 | 65,387 | [
"opengl",
"rendering"
] |
1,270,078 | 1 | 1,270,813 | null | 22 | 14,542 | I am attempting to write a simple WPF learning project which creates a set of buttons inside a resizeable main window. There is to be one `Button` per entry in a collection, and the contents of that collection may vary during run-time. I want the buttons to fill the entire window (e.g. 1 button @ 100% width, 2 buttons @ 50% width, 3 buttons @ 33% width, etc. all at 100% height). A simplified version of what I've written so far is:
```
<ItemsControl x:Name="itemscontrolButtons" ItemsSource="{Binding}">
<ItemsControl.ItemTemplate>
<DataTemplate>
<Button Tag="{Binding}">
<TextBlock Text="{Binding}" />
</Button>
</DataTemplate>
</ItemsControl.ItemTemplate>
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Horizontal" />
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
</ItemsControl>
...
List<string> listButtonTexts = new List<string>() { "Button1", "Button2" };
...
itemscontrolButtons.DataContext = listButtonTexts;
```
This results in this:

I have been unable to make the buttons stretch to fit the width and my attempts to use a `Grid` instead of `StackPanel` were fruitless.
Then, as an optional improvement, I would appreciate suggestions on how to adjust it such that if there are so many buttons that they cannot fit properly on a line or are narrower than a threshold, it will wrap onto a new line (thereby halving the button heights if going from 1 to 2 rows).
I'd like to emphasize that I'd like to know how to do this the . I realize I can consume window resize messages and resize the controls explicitly, and that's how I'd have done it with MFC or WinForms, but from what I've read that is not how such things should be done with WPF.
| Stretching controls to fill ItemsControl | CC BY-SA 3.0 | 0 | 2009-08-13T04:51:41.723 | 2015-06-20T02:01:10.320 | 2015-06-20T01:51:26.587 | 4,099,598 | 109,117 | [
".net",
"wpf",
"xaml",
"itemscontrol"
] |
1,270,930 | 1 | null | null | 0 | 1,004 | Anyone a clue for this problem?

thats how i create it
```
//create the textfield
CGRect frameTxt = CGRectMake(10, 12, 280, 30);
txtFavouriteName = [[UITextField alloc] initWithFrame:frameTxt];
txtFavouriteName.clearButtonMode = UITextFieldViewModeWhileEditing;
txtFavouriteName.textColor = [UIColor blueColor];
txtFavouriteName.backgroundColor = [UIColor clearColor];
```
and thats how i add it to the proper tableview cell
```
[cell.contentView addSubview:self.txtFavouriteName];
```
i want to align this cancel button vertical middle
second question is maybe a simpler one. how can i change the textcolor of the header text from this boring grey to whit?
Anyone a solution?
| Cancel button in UITextfield | CC BY-SA 3.0 | null | 2009-08-13T09:17:10.187 | 2013-04-18T09:26:02.880 | 2013-04-18T09:26:02.880 | 664,177 | 155,663 | [
"iphone",
"uitextfield"
] |
1,273,428 | 1 | 1,348,248 | null | 13 | 11,750 | I am using the jquery-ui slider as a sideways scroll bar, and am having issues with the fact the handle slides beyond the end gutter (it can be seen [here](http://jqueryui.com/demos/slider/) if you slide the slider the farthest to the right). I have tried everything I can think of with CSS to try to get the handle to go no further than the gutter, but to no avail. Any suggestions would be greatly appreciated.
To clarify I am adding the following diagram which shows the problem (it is very subtle since the handle is small, however if you create a large handle in CSS, the handle goes half its width beyond the gutter).
[Here](http://jsbin.com/inome/edit) is a jsbin of the problem. Basically I want the handle to stay within the gutter.

```
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-2.1.0.min.js"></script>
<link href="http://code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.min.css" rel="stylesheet" type="text/css" />
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="http://code.jquery.com/ui/1.10.4/jquery-ui.min.js"></script>
<style type="text/css">
.demo {
width: 800px;
margin: 50px auto 0 auto;
}
.ui-slider-horizontal {
background: #DFEFFC none repeat scroll 0 0;
}
.ui-slider .ui-slider-handle {
background-image:url(http://img207.imageshack.us/img207/7760/sliderhandle.png);
cursor:default;
height:15px;
position: absolute;
width:27px;
z-index:2;
margin-left: -1px;
margin-top: 3px;
}
.ui-slider
{
position:relative;
text-align:left;
}
</style>
<script type="text/javascript">
$(document).ready(function(){
$("#slider").slider({
slide: function( event, ui ) {
//normalise handle position between 0 and 1 relative to slider width
var range = $("#slider").width();//width of slider
var normalised = $("#slider1handle").position().left / range;
//normalise between desired range: 0:HandleWidth
var range2 = $("#slider1handle").width();
normalised = (normalised*range2) + 1;
var marginAmount = -1*normalised;
$("#slider1handle").css("margin-left", marginAmount);
}
});
$('a.ui-slider-handle').attr('id', "slider1handle");
});
</script>
</head>
<body>
<div class="demo">
<div id="slider"></div>
</div>
</body>
</html>
```
| How do I stop the jquery UI slider from sliding beyond the gutter? | CC BY-SA 4.0 | 0 | 2009-08-13T17:26:31.173 | 2019-04-13T17:17:43.680 | 2019-04-13T17:17:43.680 | 4,751,173 | 3,798 | [
"jquery",
"jquery-ui",
"slider"
] |
1,275,641 | 1 | null | null | 4 | 8,367 | I'm trying to float a menu to the left of the page, and when it gets large enough to reach the content below, Firefox bumps the content over exactly as it should... except for the border.
Here is a screenshot with a few items:

And another with several items

"Box 4" gets moved over as expected, but its border stays at the left. O.o
HTML:[http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd](http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd)
CSS:
```
#menu {
float: left;
width: 100px;
padding-left: 0px;
}
#menu ul {
margin: 0px;
padding: 10px;
}
#title {
margin-left: 100px;
border: 1px #F00 dashed;
height: 40px;
font-size: 20pt;
}
#title_text {
display: inline-block;
vertical-align: top;
margin-top: 5px;
}
#container {
margin-left: 100px;
}
.topbox {
width: 30%;
height: 200px;
display: inline-block;
margin-top: 5px;
margin-bottom: 10px;
margin-right: 2px;
margin: none;
border: 1px #F00 solid;
}
.topbox .title {
text-align: center;
border-bottom: 1px #000 solid;
padding-top: 1px;
}
.content {
padding: 2px;
}
#box4 {
border: 1px #000 solid;
width: 100%;
}
#box4 .title {
display: inline;
border-right: 1px #000 solid;
border-bottom: 1px #000 solid;
padding-left: 2px;
padding-right: 2px;
}
#box4 .content {
display: inline;
}
```
| CSS Float border overlap issues | CC BY-SA 3.0 | null | 2009-08-14T01:45:59.670 | 2018-01-23T09:55:44.230 | 2015-06-20T02:23:24.880 | 1,159,643 | 156,203 | [
"css",
"firefox",
"css-float",
"border",
"overlap"
] |
1,280,717 | 1 | 1,280,967 | null | 6 | 1,022 | Once in a while I need a GUI to set , but so far I've never really found any component that does it nicely.
I've attempted the following:
- 2 TTrackbars: 1 for min, 1 for max- 2 TTackbars: 1 for min, 1 for range- 2 TSpinEdit controls to type the numbers manually- 
1 TTrackbar control, with a little button to switch between min-mode and max-mode. In min-mode I set selStart and in max-mode I set selEnd (with ShowSelRange set to true).
Most options take more screen estate than I'd like, and they are not intuitive.
Ideally, I'd like something that works like the scrollbar in Sony ACID. You can click and drag 3 different points to the min, max, or both:

Is there any Free component available to set a range, or can something similar be done by using out-of-the-box VCL components creatively?
---
# Update
I've modified TMkRangeSlider to suit my needs. It works like a charm now. I've sent the modified component and demo to the original author.

| GUI to set numeric ranges in Delphi | CC BY-SA 2.5 | null | 2009-08-14T23:49:05.523 | 2019-04-14T04:48:25.693 | 2017-02-08T14:14:25.170 | -1 | 38,813 | [
"delphi",
"user-interface",
"range"
] |
1,282,119 | 1 | null | null | 0 | 115 | I'm a bit of a n00b so please go easy.. I've searched for answers to my problem for some time now to no avail - so here it is:
I have a menu bar of buttons that should go right across the screen like so (pictured in IE):
![[http://s957.photobucket.com/albums/ae55/tommyleinen/?albumview=grid][1]](http://s957.photobucket.com/albums/ae55/tommyleinen/?albumview=grid][1])
In Firefox, the buttons appear to be displaced by the space below the text above them...
The easiest way to understand is to view the screenshots above.
I have tried adding a float attribute which has stopped the buttons from wrapping but the above problem still exists.
You can see the effect of playing with the Width % of the text above the buttons if this gives a clue.
Any help is greatly appreciated.
| menu bar buttons display correctly in IE but not FF - xhtml / css | CC BY-SA 2.5 | null | 2009-08-15T15:21:12.087 | 2009-08-16T00:52:23.463 | null | null | null | [
"firefox"
] |
1,283,676 | 1 | 1,283,679 | null | 0 | 223 | I recently fiddled with the "advance" color settings and changed the 3d objects color to green to go with a green theme. While SSMS adapts nicely to the change, VS 2008 does not.
Is there a way to make VS follow the SSMS way of blending in ?
Screenshot here:

Specs:
Windows 7 RC1
Visual Studio 2008 SP1
SQL Server Management Studio 2008 (engine - SP1)
| Green Visual Studio? | CC BY-SA 3.0 | null | 2009-08-16T07:19:22.107 | 2012-10-21T17:13:53.867 | 2011-11-28T22:05:31.333 | 234,976 | 157,189 | [
"visual-studio"
] |
1,284,093 | 1 | 1,284,139 | null | 4 | 2,102 | I want to begin developing 2D Java games for phones (on J2ME) therefore I'd like to know if any libraries or "engines" exist to help out in the various graphical tasks:
- - - [gradient fills](http://www.google.com/search?q=gradient+)-
Or maybe a great book exists, that gives you enough code samples to get off the ground quickly?

| What libraries are available to help create 2D Java games for phones? | CC BY-SA 2.5 | 0 | 2009-08-16T11:29:13.770 | 2009-08-20T17:10:38.090 | 2017-02-08T14:14:25.503 | -1 | 41,021 | [
"java",
"graphics",
"java-me",
"vector-graphics",
"pixel-fonts"
] |
1,284,346 | 1 | 1,301,827 | null | 0 | 2,082 | My question is based on [this article](http://www.gnegg.ch/2006/08/).
I have used successfully Xdebug in my Ubuntu, since it highlights my error messages in the browser. However, I have not find any terminal tool like `xdebug`.
I would like to have a visual view of my PHP code like this

| To use Xdebug2's profiling data in debugging PHP by Ubuntu | CC BY-SA 2.5 | null | 2009-08-14T17:23:46.987 | 2009-08-28T08:24:51.957 | 2009-08-28T08:24:51.957 | 5,083 | 54,964 | [
"php",
"ubuntu",
"xdebug",
"kcachegrind"
] |
1,286,248 | 1 | 1,286,852 | null | 1 | 2,683 | I'm trying to find a dropdown-style list for images I can use in a program of mine. It just needs to display a few images in a grid with tooltips for each one, and I need to be able to get whichever one was last picked. For example :

Unfortunately my monetary budget is zero which means I can't purchase any controls. Are there any free ones like this, or will I need to work at making my own?
If the answer is the latter, are there any useful links you might be able to give me so I could start to work on a control for this?
| Drop-Down Image List | CC BY-SA 3.0 | 0 | 2009-08-17T05:11:46.840 | 2013-05-23T09:00:40.920 | 2013-05-22T20:19:01.360 | 301,857 | 50,005 | [
".net",
"vb.net",
"winforms"
] |
1,286,751 | 1 | 1,286,782 | null | 4 | 14,402 | I've just now started reading an Algorithms book that defined Graphs as follows:
> Graphs – which represent relationships
between arbitrary pairs of objects.
Figure 1.8(b) models a network of
roads as a graph, where the vertices
are cities and the edges are roads
connecting pairs of cities. Graphs are
likely the object in question whenever
you seek a “network,” “circuit,”
“web,” or “relationship.”
Figure 1.8(b) is this:

What confuses me here is the following line:
> ... where the vertices are cities and the
edges are roads connecting pairs of
cities ...
| Difference between vertices and edges [Graphs, Algorithm and DS] | CC BY-SA 2.5 | 0 | 2009-08-17T08:21:40.763 | 2017-04-21T17:36:38.623 | 2017-04-21T17:36:38.623 | 1,571,709 | 7,205 | [
"algorithm",
"data-structures",
"graph-theory"
] |
1,286,925 | 1 | null | null | 3 | 2,304 | I am setting up a drag and drop interface using jquery and jquery-ui. I've got element snapping working, which is nice, but now I'm trying to get elements to snap at a distance, using some sort of automatic temporary guide rulers.
A very good implementation is on the mac version of Powerpoint. Here's a screenshot of a drag in progress:

Is there some sort of jQuery plugin that exists for this? If there isn't a plugin, is there some easy way to draw lines that would be snap-able? Is there algorithm for dealing with calculating points and working out which lines to create?
| jQuery UI Draggable snap rulers | CC BY-SA 2.5 | 0 | 2009-08-17T09:11:42.220 | 2009-08-21T09:30:37.707 | null | null | 114,132 | [
"javascript",
"jquery",
"jquery-ui",
"jquery-plugins",
"drag-and-drop"
] |
1,290,410 | 1 | 1,290,799 | null | 2 | 9,734 | I am playing around with a SharePoint server and I am trying to programmatically add a service request to microsoft's call center application template. So far, I have had pretty good success. I can add a call for a specified customer and assign a specific support tech:
```
private enum FieldNames
{
[EnumExtension.Value("Service Request")]
ServiceRequest,
[EnumExtension.Value("Customer")]
Customer,
[EnumExtension.Value("Service Representative")]
ServiceRepresentative,
[EnumExtension.Value("Assigned To")]
AssignedTo,
[EnumExtension.Value("Software")]
Software,
[EnumExtension.Value("Category")]
Category
}
private void CreateServiceCall(string serviceCallTitle, string customerName, string serviceRep)
{
SPSite allSites = new SPSite(siteURL);
SPWeb site = allSites.AllWebs[siteName];
SPListItemCollection requestsList = site.Lists[serviceRequests].Items;
SPListItem item = requestsList.Add();
SPFieldLookup customerLookup = item.Fields[FieldNames.Customer.Value()] as SPFieldLookup;
item[FieldNames.ServiceRequest.Value()] = serviceCallTitle;
if (customerLookup != null)
{
using (SPWeb lookupWeb = allSites.OpenWeb(customerLookup.LookupWebId))
{
SPList lookupList = lookupWeb.Lists.GetList(new Guid(customerLookup.LookupList), false);
foreach (SPListItem listItem in lookupList.Items)
{
if (listItem[customerLookup.LookupField].ToString() != customerName) continue;
item[FieldNames.Customer.Value()] = new SPFieldLookupValue(listItem.ID, customerName);
break;
}
}
}
SPUserCollection userCollection = site.SiteUsers;
if (userCollection != null)
{
foreach (SPUser user in userCollection)
{
if (user.Name != serviceRep) continue;
item[FieldNames.AssignedTo.Value()] = user;
break;
}
}
item.Update();
site.Close();
allSites.Close();
}
```
I added two custom columns (category, software) to the default list:

I populated both of these columns inside of SharePoint, now I want to retrieve that data so I can use it in the code snippet I posted to assign the proper category/software etc to the call. I have not been able to get the list in the code, I have tried using a `item["Software"]`, `site.Lists["Software"]` and a couple of others, but so far all I have come up is `null`.
Can anyone point me in the right direction for this? Thanks!
| Retrieve all items from a SharePoint Field Choice Column | CC BY-SA 2.5 | null | 2009-08-17T20:59:19.123 | 2009-08-17T22:20:05.233 | null | null | 25,515 | [
"c#",
"sharepoint"
] |
1,291,050 | 1 | 1,292,371 | null | 1 | 2,332 | I want my custom button to look like the button sample below.
More specifically, I want the width of the button to be determined by the width of the largest word in the label (i.e. width of "Elongated" in my example). The label must wrap, not truncate.
And I want only one pixel between the top edge of the icon and my button's top edge.
I have tried lots of things but to no avail so far. I have reduced the horizontalGap and verticalGap to zero and padding to zero. But still nothing. Please help.
Here's what I have right now:
```
<mx:Button top="0" cornerRadius="2" paddingLeft="0" paddingRight="0" leading="0" letterSpacing="0" paddingTop="0" paddingBottom="0" verticalGap="0" horizontalGap="0" textAlign="center" labelPlacement="bottom" icon="{MyIcon}" height="60" width="75" label="Elongated Label" fontSize="10" />
```

| Flex custom button component | CC BY-SA 2.5 | null | 2009-08-17T23:35:00.917 | 2009-08-18T07:38:29.710 | 2017-02-08T14:14:26.523 | -1 | 140,652 | [
"apache-flex",
"actionscript-3",
"mxml"
] |
1,294,230 | 1 | 1,294,374 | null | 1 | 1,232 | I was trying to create a visualizer for IDictionary or ICollection
Then like the simple visualizer (without dialog; I mean the ususal string visualizer that appears when hovering the variable, see image below), I want to make my custom text, I want to cast the collection to its type's list (I.E. StringCollection to List(Of String) or List) and then I will be able to see it in the visualizer.
Or for Dictionaries show to lists visualizers for keys and for values.
Any ideas how to implement or even how to start?
I will update my question soon.
This is something I thought about:
```
using System.Collections.Specialized;
using System.Collections;
namespace ConsoleApplication2
{
static class Program
{
static void Main(string[] args)
{
System.Collections.Specialized.StringCollection collection = new StringCollection();
collection.AddRange(new string[] { "string1", "string2", "sting3" });
string[] visualizable = collection.ConvertToVisualizableList();
Dictionary<string,string> dic = new Dictionary<string,string>
{
{"key1","value"},
{"key2","value"}
};
string[,] visualizable2 = dic.ConvertToVisualizableDictionary();
}
static string[] ConvertToVisualizableList(this IList collection)
{
lock (collection)
{
if (collection == null) return null;
int length = collection.Count;
string[] list = new string[length];
for (int i = 0; i < length; i++)
{
object item = collection[i];
if (item != null) list[i] = item.ToString();
}
return list.ToArray();
}
}
static string[,] ConvertToVisualizableDictionary(this IDictionary dictionary)
{
if (dictionary == null) return null;
int length = dictionary.Count;
string[,] list = new string[length, 2];
int i = 0;
foreach (object item in dictionary.Keys)
{
list[i, 0] = item.ToString();
object value = dictionary[item];
if(value!=null) list[i, 1] = value.ToString();
i++;
}
return list;
}
}
}
```
These are VS visualizers for array and multidimentional arrays:

I want to use something similar for ICollection (or IList), IDictionary etc.
Note that in arrays, the visualizer shows every nested objcet.
:
.
Try to visualize a List and you will see that there is a private value _items, so you can see its items.
I want to achieve something similar in collection and dictionary.
| How to create a Visual-Studio string visualizer? | CC BY-SA 2.5 | null | 2009-08-18T14:25:50.987 | 2009-08-19T19:11:43.817 | 2017-02-08T14:14:27.947 | -1 | 75,500 | [
"c#",
"vb.net",
"visual-studio-2008",
"debuggervisualizer"
] |
1,294,657 | 1 | null | null | 2 | 1,054 | I am using TTThumbsViewController to display a grid of thumbnails,
very easy. However the hard part is what if I want to display a custom
view at the bottom of the grid? And I don't want the view to be part
of the scrollable grid. How do I resize the thumbnail grid and then
attach my own view to this controller's view? Think of this view as a
custom toolbar kind of thing

| Is there a way to resize TTThumbsViewController's grid? | CC BY-SA 2.5 | 0 | 2009-08-18T15:32:06.313 | 2010-11-30T07:41:45.090 | 2017-02-08T14:14:28.287 | -1 | 56,952 | [
"iphone",
"three20"
] |
1,297,107 | 1 | 1,297,468 | null | 3 | 389 | I'm using the current jQuery to hide fade out a notification div, and then remove it, however when it completes there's an odd gap around the height of a ` ` - meaning that subsequent forms and page elements don't display where they were before the notice appeared.
To recap: the fade out and remove is working perfectly but I'd like the gap left over to vanish as well. It's a minor thing, but it's bothering me.
The jquery:
```
// Fade out any success divs.
$(".success").fadeOut(6000, function(){
$(".success").remove();
});
```
The notification div is being written by PHP on postback, and has the following CSS:
```
.success {
background-color: #b3ffb2;
border: 1px solid green;
}
.box {
margin: 5px;
padding: 5px;
}
```
The div is very simple:
```
<div class="success box"><p><strong>Success!</strong><br />Done!</p></div>
```
Edit: The surrounding markup of the page looks like this:
```
<div id="wrapper">
<div id="navigation">
<ul> ... </ul>
</div>
<div id="container">
<div class="success box">
<p><strong>Sucess!</strong><br />
Done</p>
</div>
// more content
</div>
</div>
```
Edit: Using Firebug in FF 3.5.2, I can't see anything being left behind using the inspector. There's just an odd gap. I've also created a screenshot of this phenomena:

| jQuery Fadeout leaves small gap | CC BY-SA 2.5 | 0 | 2009-08-18T23:24:49.543 | 2009-08-19T16:26:08.440 | 2017-02-08T14:14:29.323 | -1 | 107,176 | [
"jquery"
] |
1,297,597 | 1 | null | null | 4 | 6,031 | Consider an ASP.NET webforms app where the requirement is to raise a confirm dialog when an `asp:LinkButton` is clicked. The results of the confirm dialog should allow or block the postback for the `linkButton_click` method.
The plugin/library currently being used is the `jquery.alerts.js` (found on [ABeautifulSite](http://abeautifulsite.net/notebook/87)).
```
<script src="http://labs.abeautifulsite.net/projects/js/jquery/alerts/demo/jquery.js"
type="text/javascript"></script>
<script src="http://labs.abeautifulsite.net/projects/js/jquery/alerts/demo/jquery.ui.draggable.js"
type="text/javascript"></script>
<!-- Core files -->
<script src="http://labs.abeautifulsite.net/projects/js/jquery/alerts/demo/jquery.alerts.js"
type="text/javascript"></script>
<link href="http://labs.abeautifulsite.net/projects/js/jquery/alerts/demo/jquery.alerts.css"
rel="stylesheet" type="text/css" />
<asp:LinkButton runat="server" ID="lnkDisable"
Text="Disable This Emp" onclick="lnkDisable_Click" />
<script type="text/javascript">
$(document).ready(function() {
$("#ctl00_mainContent_lnkDisable").click(function() {
jConfirm('Please confirm this emp should be disabled?',
'Confirm Disable',
function(r) {
jAlert('Confirmed: ' + r, 'Results');
});
});
});
</script>
```

The message box fires properly!
The problem is that it shows for about 2 seconds, and then the page is posted-back before the user can make a selection on the popup. I've set a breakpoint on that event handler, and indeed the page is posted back.
How can I have the post-back delayed while the user makes up their mind and clicks on the OK or Cancel button on the popup?
Any suggestions on another plugin are welcome!
| raising a confirm dialog via jQuery on asp:LinkButton click event | CC BY-SA 3.0 | 0 | 2009-08-19T02:43:42.243 | 2015-06-20T02:15:18.873 | 2015-06-20T02:15:18.873 | 1,159,643 | 23,199 | [
"asp.net",
"jquery",
"jquery-plugins",
"webforms"
] |
1,299,887 | 1 | null | null | 2 | 1,036 | By modifying the `RowStyle` of a `DataGrid` I have created a customized grid that will display some buttons at the end of the row when the mouse hovers above the row:

I created a new style for `DataGridRow` based on the default style. I then modified the XAML to add my buttons inside a `StackPanel` (details omitted):
```
<UserControl.Resources>
<Style x:Key="DataGridRowStyle" TargetType="swcd:DataGridRow">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="swcd:DataGridRow">
...
<StackPanel x:Name="RowControlsPanel">
<Button>
... these are the buttons displayed on the row
```
The `DataGrid` is modified using the style:
```
<swcd:DataGrid RowStyle="{StaticResource DataGridRowStyle}">
...
</swcd:DataGrid>
```
I want to create another grid in a similar manner, but with a different set of buttons at the end of the row. I could create a textual copy of my style and modify it accordingly, but I was hoping that I could create a proper reusable class. I'm not sure how to approach this since the stuff I want to factor out of my style is a collection of controls (buttons) inside a style.
My approach so far is to create a `MyDataGrid` class derived from `DataGrid`. I have added a new property `RowControls` to `MyDataGrid` enabling me to instantiate it like this:
```
<local:MyDataGrid>
<local:MyDataGrid.RowControls>
<Button>
... these controls should go at the end of the row
</local:MyDataGrid.RowControls>
...
</local:MyDataGrid>
```
`MyDataGrid` uses a `RowStyle` as described above. But how do the contents of the `MyDataGrid.RowControls` collection get into the `Content` of `RowControlsPanel` in the style? I think I should do that in `OnApplyTemplate` of the `DataGridRow`, but then I need to derive a new `MyDataGridRow` class from `DataGridRow`. Unfortunately it seems that `DataGrid` is hardcoded to use `DataGridRow` and I'm not able to inject my own derived row class. I get the feeling that I need to approach my problem of reuse in a different manner, but I'm not sure how?
Customizing simple controls like buttons by adding new properties and modifying the control template is quite easy, but how do I customize a complex control like `DataGrid` where the template I need to customize is nested inside the grid?
| Reusing a customized style in Silverlight | CC BY-SA 2.5 | null | 2009-08-19T13:22:15.540 | 2009-08-19T20:37:50.193 | 2017-02-08T14:14:30.977 | -1 | 98,607 | [
"c#",
"silverlight",
"silverlight-3.0",
"datagrid",
"controltemplate"
] |
1,301,581 | 1 | 1,301,635 | null | 0 | 458 | How can we programmatically take a GridView-row into Edit-mode using an Edit Command?
Suppose I want to edit the name of the course 'C++'.
How can I do that?

[Also see this](https://stackoverflow.com/questions/1302275/asp-net-editing-a-gridview-row-again)
| ASP.NET - Programmatic Edit | CC BY-SA 2.5 | null | 2009-08-19T17:57:00.707 | 2009-08-19T22:06:04.900 | 2017-05-23T10:29:31.030 | -1 | 159,072 | [
"asp.net",
"gridview"
] |
1,303,582 | 1 | 1,303,672 | null | 0 | 201 | I'm trying to position two lines of text next to a single word like "Monday" with just html and css similar to what you see in the screenshot below.

In the final product the two lines that currently say "hi" and "blah" will be replaced with a little bit of text and input fields. The screenshot version was accomplished with the following code:
```
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
<!--
body {
font:12pt Arial, Helvetica, sans-serif;
}
dl, dd, dt {
margin:0px;
padding:0px;
}
dl {
clear:both;
}
dt {
float:left;
font-size:2.75em;
color:#ccc;
letter-spacing:-7px;
margin-right:10px;
}
-->
</style>
</head>
<body>
<dl>
<dt>MONDAY</dt>
<dd>hi</dd>
<dd>blah</dd>
</dl>
<dl>
<dt>WEDNESDAY</dt>
<dd>hi</dd>
<dd>blah</dd>
</dl>
</body>
</html>
```
I'd like it so that everything is vertically aligned nicely... i.e. the top of the top line is aligned with the top of the word "Monday" and the bottom of the bottom line is aligned with the bottom of the word "Monday." I don't think using definition lists is going to be very versatile or the proper way of accomplishing this look. Any suggestions on how to do this? I'd rather stay away from images just so that everything looks nice if someone scales up the page... but throw all your thoughts out there. Thanks.
| Problem positioning lines of text next to a larger text block | CC BY-SA 2.5 | null | 2009-08-20T02:03:14.060 | 2009-08-20T03:22:30.397 | 2017-02-08T14:14:33.683 | -1 | 38 | [
"html",
"css",
"alignment"
] |
1,303,922 | 1 | null | null | 0 | 612 | I have an array of ID's that comes from a database. I have also a table like this:

And the ID array contains record ID, ie:
```
Array ( [0] => Array ( [id] => 1 [code] => GHY87 [description] => Hello World ) )
```
Now I want to check a check box and then click on an Edit Button (Link) to get the ID of that check box.
I only want to use php code, not Javascript or jQuery.
| Set and get Id on check box | CC BY-SA 4.0 | null | 2009-08-20T04:17:44.453 | 2019-05-24T19:55:24.980 | 2019-05-24T19:55:24.980 | 6,296,561 | null | [
"php",
"html",
"webforms"
] |
1,303,893 | 1 | 1,305,637 | null | 2 | 2,744 | This is super in-depth. I understand if you don't even want to read this, this is mostly for me to sort out my thought process.
Okay, so here's what I'm trying to do. I've got these objects:

When you click on one (or select several) it should display their properties on the right (as shown). When you edit said properties it should update the internal variables immediately.
I'm trying to decide on the best way to do this. I figure the selected objects should be stored as a list of pointers. It's either that, or have an isSelected bool on each object, and then iterate over all of them, ignoring the non-selected ones, which is just inefficient. So we click on one, or select several, and then the selectedObjects list is populated. We then need to display the properties. To keep things simple for the time being, we'll assume that all objects are of the same type (share the same set of properties). Since there aren't any instance-specific properties, I figure we should probably store these properties as static variables inside the Object class. Properties basically just have a name (like "Allow Sleep"). There is one PropertyManager for each type of property (int,bool,double). PropertyManagers store the values for properties of their respective type (this is all from the Qt API). Unfortunately, because PropertyManagers are required to create Properties I can't really decouple the two. I suppose this means that I have to place the PropertyManagers with the Properties (as static variables). This means we have one set of properties, and one set of property managers to manage the variables in the objects. Each property manager can only have one callback. That means this callback has to update the properties of its respective type, for objects (a nested loop). This yields something like this (in pseudo-code):
```
function valueChanged(property, value) {
if(property == xPosProp) {
foreach(selectedObj as obj) {
obj->setXPos(value);
}
} else if(property == ...
```
Which already bothers me a little bit, because we're using if statements where we shouldn't need them. The way around this would be to create a different property manager for every single property, so that we can have unique callbacks. This also means we need two objects for each property, but it might be a price worth paying for cleaner code (I really don't know what the performance costs are right now, but as I know you'll also say -- optimize when it becomes a problem). So then we end up with a ton of callbacks:
```
function xPosChanged(property, value) {
foreach(selectedObj as obj) {
obj->setXPos(value);
}
}
```
Which eliminates the entire if/else garbage but adds a dozen more event-listeners. Let's assume I go with this method. So now we had a wad of static Properties, along with their corresponding static PropertyManagers. Presumably I'd store the list of selected objects as Object::selectedObjects too since they're used in all the event callbacks, which logically belong in the object class. So then we have a wad of static event callbacks too. That's all fine and dandy.
So now when you edit a property, we can update the interal variables for all the selected objects via the event callback. But what happens when the internal variable is updated via some other means, how do we update the property? This happens to be a physics simulator, so all the objects will have many of their variables continuously updated. I can't add callbacks for these because the physics is handled by another 3rd party library. I guess this means I just have to assume all the variables been changed after each time step. So after each time step, I have to update all the properties for all the selected objects. Fine, I can do that.
Last issue (I hope), is what values should we display when multiple objects are selected an there is an inconsistency? I guess my options are to leave it blank/0 or display a random object's properties. I don't think one option is much better than the other, but hopefully Qt provides a method to highlight such properties so that I can at least notify the user. So how do I figure out which properties to "highlight"? I guess I iterate over all the selected objects, and all their properties, compare them, and as soon as there is a mismatch I can highlight it. So to clarify, upon selected some objects:
1. add all objects to a selectedObjects list
2. populate the properties editor
3. find which properties have identical values and update the editor appropriately
I think I should store the properties in a list too so that I can just push the whole list onto the properties editor rather than adding each property individually. Should allow for more flexibility down the road I think.
I think that about covers it... I'm still not certain how I feel about having so many static variables, and a semi-singleton class (the static variables would be initialized once when the first object is created I guess). But I don't see a better solution.
Please post your thoughts if you actually read this. I guess that's not really a question, so let me rephrase for the haters, (or something along those lines).
---
Looks like I need to clarify. By "property" I mean like "Allow Sleeping", or "Velocity" -- all objects have these properties -- their VALUES however, are unique to each instance. hold the string that needs to be displayed, the valid range for the values, and all the widget info. are the objects that actually hold the value. They control the callbacks, and the value that's displayed. There is also another copy of the value, that's actually used "internally" by the other 3rd party physics library.
---
Trying to actually implement this madness now. I have an EditorView (the black area drawing area in the image) which catches the mouseClick event. The mouseClick events then tells the physics simulator to query all the bodies at the cursor. Each physics body stores a reference (a void pointer!) back to my object class. The pointers get casted back to objects get pushed onto a list of selected objects. The EditorView then sends out a signal. The EditorWindow then catches this signal and passes it over to the PropertiesWindow along with the selected objects. Now the PropertiesWindow needs to query the objects for a list of properties to display... and that's as far as I've gotten so far. Mind boggling!
---
## The Solution
```
/*
* File: PropertyBrowser.cpp
* Author: mark
*
* Created on August 23, 2009, 10:29 PM
*/
#include <QtCore/QMetaProperty>
#include "PropertyBrowser.h"
PropertyBrowser::PropertyBrowser(QWidget* parent)
: QtTreePropertyBrowser(parent), m_variantManager(new QtVariantPropertyManager(this)) {
setHeaderVisible(false);
setPropertiesWithoutValueMarked(true);
setIndentation(10);
setResizeMode(ResizeToContents);
setFactoryForManager(m_variantManager, new QtVariantEditorFactory);
setAlternatingRowColors(false);
}
void PropertyBrowser::valueChanged(QtProperty *property, const QVariant &value) {
if(m_propertyMap.find(property) != m_propertyMap.end()) {
foreach(QObject *obj, m_selectedObjects) {
obj->setProperty(m_propertyMap[property], value);
}
}
}
QString PropertyBrowser::humanize(QString str) const {
return str.at(0).toUpper() + str.mid(1).replace(QRegExp("([a-z])([A-Z])"), "\\1 \\2");
}
void PropertyBrowser::setSelectedObjects(QList<QObject*> objs) {
foreach(QObject *obj, m_selectedObjects) {
obj->disconnect(this);
}
clear();
m_variantManager->clear();
m_selectedObjects = objs;
m_propertyMap.clear();
if(objs.isEmpty()) {
return;
}
for(int i = 0; i < objs.first()->metaObject()->propertyCount(); ++i) {
QMetaProperty metaProperty(objs.first()->metaObject()->property(i));
QtProperty * const property
= m_variantManager->addProperty(metaProperty.type(), humanize(metaProperty.name()));
property->setEnabled(metaProperty.isWritable());
m_propertyMap[property] = metaProperty.name();
addProperty(property);
}
foreach(QObject *obj, m_selectedObjects) {
connect(obj, SIGNAL(propertyChanged()), SLOT(objectUpdated()));
}
objectUpdated();
}
void PropertyBrowser::objectUpdated() {
if(m_selectedObjects.isEmpty()) {
return;
}
disconnect(m_variantManager, SIGNAL(valueChanged(QtProperty*, QVariant)),
this, SLOT(valueChanged(QtProperty*, QVariant)));
QMapIterator<QtProperty*, QByteArray> i(m_propertyMap);
bool diff;
while(i.hasNext()) {
i.next();
diff = false;
for(int j = 1; j < m_selectedObjects.size(); ++j) {
if(m_selectedObjects.at(j)->property(i.value()) != m_selectedObjects.at(j - 1)->property(i.value())) {
diff = true;
break;
}
}
if(diff) setBackgroundColor(topLevelItem(i.key()), QColor(0xFF,0xFE,0xA9));
else setBackgroundColor(topLevelItem(i.key()), Qt::white);
m_variantManager->setValue(i.key(), m_selectedObjects.first()->property(i.value()));
}
connect(m_variantManager, SIGNAL(valueChanged(QtProperty*, QVariant)),
this, SLOT(valueChanged(QtProperty*, QVariant)));
}
```
With a big thanks to
| Properties editor design pattern? | CC BY-SA 3.0 | 0 | 2009-08-20T04:06:17.830 | 2015-06-20T18:26:56.133 | 2015-06-20T18:26:56.133 | 1,159,643 | 65,387 | [
"c++",
"design-patterns",
"qt"
] |
1,304,809 | 1 | null | null | 1 | 7,135 | I have an article that I want to publish on my Joomla! site. Every time I click apply or save. I get error `500 - An error has occurred! DB function reports no errors`. I have no idea why this error comes up, al I can think is that it's a server error.
I'm using TinyMCE to type articles together with Joomla! 1.5.11.
Updated: I turned on Maximum error reporting in Joomla! and in the article manager I tried to save the article and got these couple of errors. Please check screenshot

I tried adding
```
<?php
ini_set('error_reporting', E_ALL);
error_reporting(E_ALL);
ini_set('log_errors',TRUE);
ini_set('html_errors',TRUE);
ini_set('display_errors',true);
?>
```
at the top of the index.php pages for Joomla! but it does not show any errors. I checked the error logs on the server and also no errors come up.
I managed to publish the article via phpMyAdmin but then something else happens. I try to access to article from the front end, by clicking on the link to the article, but only a blank page comes up.
This is really weird, since the error log does not show any information. So I assume the error needs to be coming from Joomla!
This happens if I add a print_r($_POST) before `if (!$row->check()) {` on /administrator/components/com_content/controller.php (around line 693)
```
Array
(
[title] => Test.
[state] => 0
[alias] => test
[frontpage] => 0
[sectionid] => 10
[catid] => 44
[details] => Array
(
[created_by] => 62
[created_by_alias] =>
[access] => 0
[created] => 2008-10-25 13:31:21
[publish_up] => 2008-10-25 13:31:21
[publish_down] => Never
)
[params] => Array
(
[show_title] =>
[link_titles] =>
[show_intro] =>
[show_section] =>
[link_section] =>
[show_category] =>
[link_category] =>
[show_vote] =>
[show_author] => 1
[show_create_date] => 0
[show_modify_date] => 0
[show_pdf_icon] =>
[show_print_icon] =>
[show_email_icon] =>
[language] =>
[keyref] =>
[readmore] =>
)
[meta] => Array
(
[description] => Test.
[keywords] => Test
[robots] =>
[author] => Test
)
[id] => 58
[cid] => Array
(
[0] => 58
)
[version] => 30
[mask] => 0
[option] => com_content
[task] => apply
[ac1e0853fb1b3f41730c0d52de89dab7] => 1
)
```
I had a bounty on this question, but the problem is still not resolved? [link text](https://stackoverflow.com/questions/1239975/db-function-reports-no-errors-when-adding-new-article-in-joomla)
Any help will be appreciated!!
Here is a link to the article (text file with the source I got from TinyMCE) [Article](http://www.logiclink.co.za/article)
| 500 - An error has occurred – DB function reports no errors when adding new article in Joomla | CC BY-SA 4.0 | 0 | 2009-08-20T08:36:53.667 | 2019-04-15T17:03:22.230 | 2019-04-15T17:03:22.230 | 4,751,173 | 131,637 | [
"php",
"mysql",
"joomla",
"joomla1.5"
] |
1,305,056 | 1 | 1,305,103 | null | 14 | 13,385 | I have this table :

And I would like to make a request that would return for each `deal_id` the row with the highest `timestamp`, `status_id`.
So for this example, I would have returned 2 rows :
```
1226, 3, 2009-08-18 12:10:25
1227, 2, 2009-08-17 14:31:25
```
I tried to do it with this query
```
SELECT deal_id, status_id, max(timestamp) FROM deal_status GROUP BY deal_id
```
but it would return the wrong `status_id` :
```
1226, 1, 2009-08-18 12:10:25
1227, 1, 2009-08-17 14:31:25
```
| Selecting all corresponding fields using MAX and GROUP BY | CC BY-SA 3.0 | 0 | 2009-08-20T09:38:41.123 | 2015-06-20T18:14:08.197 | 2015-06-20T18:14:08.197 | 1,159,643 | 149,490 | [
"sql",
"mysql",
"group-by",
"max",
"greatest-n-per-group"
] |
1,306,262 | 1 | 1,328,890 | null | 4 | 1,725 | Does anyone know if and how it's possible to see COM / Interop objects properly (in their correct type) in VisualStudio's debugger? All I get is the '' value (even though it correctly identifies the type)?
E.g.:

| Inspecting an instance of a COM / Interop class properly in VS.Net's debugger? | CC BY-SA 3.0 | 0 | 2009-08-20T13:39:14.183 | 2012-01-07T15:21:15.367 | 2017-02-08T14:14:35.730 | -1 | 2,591 | [
".net",
"com",
"interop",
"com-interop"
] |
1,308,039 | 1 | 1,308,419 | null | 2 | 5,171 | I'm looking for ideas/code (preferably C#, but other languages work too) to create [Ulam's Spiral](http://en.wikipedia.org/wiki/Ulam_spiral) infinitely large (limited by length of time the program is running, or until stopped).

Now the numbers are all primes so the code for those is rather irrelevant. The interesting part is how to code the arrangement in the evergrowing (infinite) spiral, what kind of data structure is good to support it, and maybe ideas for output (graphics file, text file?).
How would you go about this?
| Ulam's Spiral (Prime Number Spiral) | CC BY-SA 2.5 | 0 | 2009-08-20T18:36:40.803 | 2018-11-12T14:46:34.743 | 2017-02-08T14:14:36.060 | -1 | 114,916 | [
"c#",
"algorithm",
"primes"
] |
1,309,071 | 1 | 1,309,170 | null | 5 | 9,533 | I am trying to use System.Drawing.Drawing2D.GraphicsPath.AddArc to draw an arc of an ellipse starting at 0 degrees and sweeping to 135 degrees.
The issue I am running in to is that for an ellipse, the arc drawn does not match up with what I would expect.
For example, the following code generates the image below. The green circles are where I would expect the end points of the arc to be using the formula for a point along an ellipse. My formula works for circles but not for ellipses.
Does this have something to do with polar versus Cartesian coordinates?
```
private PointF GetPointOnEllipse(RectangleF bounds, float angleInDegrees)
{
float a = bounds.Width / 2.0F;
float b = bounds.Height / 2.0F;
float angleInRadians = (float)(Math.PI * angleInDegrees / 180.0F);
float x = (float)(( bounds.X + a ) + a * Math.Cos(angleInRadians));
float y = (float)(( bounds.Y + b ) + b * Math.Sin(angleInRadians));
return new PointF(x, y);
}
private void Form1_Paint(object sender, PaintEventArgs e)
{
Rectangle circleBounds = new Rectangle(250, 100, 500, 500);
e.Graphics.DrawRectangle(Pens.Red, circleBounds);
System.Drawing.Drawing2D.GraphicsPath circularPath = new System.Drawing.Drawing2D.GraphicsPath();
circularPath.AddArc(circleBounds, 0.0F, 135.0F);
e.Graphics.DrawPath(Pens.Red, circularPath);
PointF circlePoint = GetPointOnEllipse(circleBounds, 135.0F);
e.Graphics.DrawEllipse(Pens.Green, new RectangleF(circlePoint.X - 5, circlePoint.Y - 5, 10, 10));
Rectangle ellipseBounds = new Rectangle(50, 100, 900, 500);
e.Graphics.DrawRectangle(Pens.Blue, ellipseBounds);
System.Drawing.Drawing2D.GraphicsPath ellipticalPath = new System.Drawing.Drawing2D.GraphicsPath();
ellipticalPath.AddArc(ellipseBounds, 0.0F, 135.0F);
e.Graphics.DrawPath(Pens.Blue, ellipticalPath);
PointF ellipsePoint = GetPointOnEllipse(ellipseBounds, 135.0F);
e.Graphics.DrawEllipse(Pens.Green, new RectangleF(ellipsePoint.X - 5, ellipsePoint.Y - 5, 10, 10));
}
```

| How does GraphicsPath.AddArc use the startAngle and sweepAngle parameters? | CC BY-SA 2.5 | 0 | 2009-08-20T21:56:43.723 | 2016-11-02T14:00:44.787 | 2017-02-08T14:14:36.737 | -1 | 36,373 | [
"c#",
"graphics",
"geometry",
"gdi+",
"trigonometry"
] |
1,309,822 | 1 | 1,309,936 | null | 17 | 16,508 | In Microsoft SQL Server Management Studio 2008 there is a "Generate scripts..." option under the Tasks menu. I'm just wondering if this tool is available from the command line somehow?

It looks similar to the sqlpubwiz.exe command line tool that was available for SQL Server 2005, but I can't find this executable anywhere in the SQL 2008 installation.
| Generate SQL server scripts from command line? | CC BY-SA 3.0 | 0 | 2009-08-21T02:29:43.963 | 2017-05-22T20:53:32.757 | 2015-06-20T18:40:37.110 | 1,159,643 | null | [
"windows",
"sql-server-2008",
"scripting",
"wizard",
"ssms"
] |
1,312,648 | 1 | 1,312,717 | null | 2 | 734 | I wrote a custom validation handler for this ASP.NET MVC application. Here is a screenshot of the validation messages:

As you can see, the title and director work fine but the date does not. The code I have for the Create view:
```
<fieldset>
<legend>Fields</legend>
<p>
<%= Html.Label("Title", "Title:") %>
<%= Html.TextBox("Title") %>
<%= Html.ValidationMessage("Title", "*") %>
</p>
<p>
<%= Html.Label("Director", "Director:")%>
<%= Html.TextBox("Director") %>
<%= Html.ValidationMessage("Director", "*") %>
</p>
<p>
<%= Html.Label("ReleaseDate", "Release Date:")%>
<%= Html.TextBox("ReleaseDate") %>
<%= Html.ValidationMessage("ReleaseDate", "*") %>
</p>
<p>
<%= Html.Submit("Create") %>
</p>
</fieldset>
```
and here is the code that handles the validation logic:
```
public bool ValidateMovie(Movie movieToValidate)
{
if (movieToValidate.Title.Trim().Length == 0)
_validationDictionary.AddError("Title", "Title is required.");
if (movieToValidate.Director.Trim().Length == 0)
_validationDictionary.AddError("Director", "Director is required.");
if (movieToValidate.ReleaseDate.ToString().Trim().Length == 0)
_validationDictionary.AddError("ReleaseDate", "Release Date is required.");
return _validationDictionary.IsValid;
}
```
I assumed that the key value for the validation dictionary needed to correspond with the value that is provided for the field (ReleaseDate in this case), but that does not seem to be happening for me. I also tried adding a space in between the words, in case it was looking for it by display name, but no luck there either.
Can anyone help me out on this one?
## Edit
Following [Joseph's suggestion](https://stackoverflow.com/questions/1312648/why-is-my-validation-message-generic-asp-net-mvc/1312694#1312694), I stepped through the application to see where the other validation error was happening. Unfortunately, I found no clues...at least apparent to me. Here is a screenshot of my watch window:

As expected, there are three keys in there: Title, Directory, and Release Date. No sign of the fourth (third in the list? see first screenshot) validation failure.
Any additional suggestions will be appreciated! Thanks!
| Why is my validation message generic? ASP.NET MVC | CC BY-SA 2.5 | null | 2009-08-21T15:26:52.597 | 2009-08-21T17:13:55.907 | 2017-05-23T12:19:39.767 | -1 | 25,515 | [
"c#",
"asp.net-mvc",
"validation"
] |
1,314,599 | 1 | 1,314,607 | null | 0 | 1,319 | The app will run fine, then crash - literally every other time. It seems like the crash cleans up the memory and clean run corrupts the memory.
I assume it has to do with memory allocation but I am not sure.

```
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *MyIdentifier = @"MyStateCell";
static NSString *MyNib = @"StateCell";
StateCell *cell = (StateCell *)[tableView dequeueReusableCellWithIdentifier:MyIdentifier];
if (cell == nil) {
UIViewController *c = [[UIViewController alloc] initWithNibName:MyNib bundle:nil];
cell = (StateCell *)c.view;
[c autorelease];
}
// Configure the cell.
NSString *cellAnswerName = [[NSString alloc] initWithFormat:@""];
cellAnswerName = [theQuizArray objectAtIndex:indexPath.row];
int theStatusCode = [[theResultArray objectAtIndex:indexPath.row] intValue];
NSString *statusString;
NSString *pointsWon;
if(theStatusCode == 0){
statusString = [NSString stringWithFormat:@""];
pointsWon = [NSString stringWithFormat:@""];
}else if( theStatusCode == 12){
statusString = [NSString stringWithFormat:@"Wrong"];
pointsWon = [NSString stringWithFormat:@"0"];
}else if(theStatusCode == 11){
statusString = [NSString stringWithFormat:@"Out of time"];
pointsWon = [NSString stringWithFormat:@"0"];
}else{
int elapsedTime = 10 - theStatusCode;
int pointsWonInt = 10 * theStatusCode;
pointsWon = [NSString stringWithFormat:@"%i", pointsWonInt];
if(elapsedTime == 1){
statusString = [NSString stringWithFormat:@"%i second", elapsedTime];
}else{
statusString = [NSString stringWithFormat:@"%i seconds", elapsedTime];
}
}
NSString *imagePath = [[@"State_" stringByAppendingString:cellAnswerName] stringByAppendingString:@".png"];
UIImage *image = [UIImage imageNamed:imagePath];
[[cell stateImage] setImage:image];
[[cell stateName] setText:cellAnswerName];
[[cell stateResult] setText:statusString];
[[cell statePoints] setText:pointsWon];
if([statusString isEqualToString:@"Wrong"])
[[cell stateResult] setTextColor:[UIColor redColor]];
return cell;
```
}
| My iPhone Simulator Crashes Everyother Time I Run it | CC BY-SA 2.5 | 0 | 2009-08-21T23:19:53.920 | 2011-02-08T19:49:55.647 | 2017-02-08T14:14:38.753 | -1 | 55,124 | [
"iphone",
"memory-management",
"crash",
"ios-simulator"
] |
1,314,901 | 1 | 1,314,911 | null | 2 | 4,028 | I have the image like this:

I want to split it into six squares, and I can keep looping to display the animation.
Do you have any ideas to split the image by JS + CSS instead of using 6 separate image files.
| How to split the image using Javascript + CSS? | CC BY-SA 2.5 | null | 2009-08-22T01:55:51.313 | 2009-08-25T14:02:56.097 | 2017-02-08T14:14:39.100 | -1 | 148,978 | [
"javascript",
"css",
"animation"
] |
1,316,518 | 1 | 1,316,558 | null | 110 | 11,689 | In the .NET BCL there are circular references between:
- `System.dll``System.Xml.dll`- `System.dll``System.Configuration.dll`- `System.Xml.dll``System.Configuration.dll`
Here's a screenshot from .NET Reflector that shows what I mean:

How Microsoft created these assemblies is a mystery to me. Is a special compilation process required to allow this? I imagine something interesting is going on here.
| How did Microsoft create assemblies that have circular references? | CC BY-SA 3.0 | 0 | 2009-08-22T17:26:06.980 | 2021-11-04T01:22:20.027 | 2015-08-25T09:42:21.063 | 4,374,739 | 24,874 | [
".net",
"assemblies",
"circular-reference",
"base-class-library"
] |
1,317,627 | 1 | 1,320,034 | null | 0 | 2,928 | The following diagram illustrates a problem I have encountered creating a Manhattan diagram:
[Overlapping Lines](https://imgur.com/wJ8uz.png)
The box surrounds most of the line [(tx,midy)-(sx,midy)] that has overlapped an existing line (represented by `psegment` in the code below). I have removed the overlapping arrow heads (and tails) and am a little stumped on how to check for overlap.
Here is the problematic code:
```
Line2D.Double segment = new Line2D.Double( sx, midy, tx, midy );
// Associate the middle-y point with the bounds of the target object.
// On subsequent draws of targets with a similar mid-y, make sure that
// there are no overlapping lines.
//
if( midPointMap.put( midy, segment ) != null ) {
//if( midy == 90 ) {
// New Line.
//
System.err.printf( "NEW: (%3.2f, %3d)-(%3.2f, %3d)\n", sx, midy, tx,
midy );
for( Line2D.Double psegment : midPointMap.getValues( midy ) ) {
// Previous Line.
//
System.err.printf( "OLD: (%3.2f, %3d)-(%3.2f, %3d)\n",
psegment.getX1(), midy, psegment.getX2(), midy );
}
//}
}
// Line for the bus.
//
result.moveTo( sx, midy );
result.lineTo( tx, midy );
```
Here is another example image to give you an idea of the Manhattan layout:

In the figure immediately above, the line between Dialog and Window has been overlapped (not quite visible at this zoom). The image illustrates how there can be multiple subclasses, and so detecting overlap must take into consideration multiple targets (tx, ty) for multiple sources (sx, sy) along the same mid-y line.
The `midPointMap` variable is a hash set that can contain multiple values per key:
```
private MultiValueMap<Integer, Line2D.Double> midPointMap =
new MultiValueMap<Integer, Line2D.Double>();
```
This maps mid-y values against a set of line segments.
Any ideas how to not draw the line if it overlaps an existing line segment?
Note that line segments for each "bus" are given in no particular order.
| Overlapping line segments | CC BY-SA 2.5 | null | 2009-08-23T02:45:36.557 | 2020-04-10T18:02:02.463 | 2009-08-23T16:46:41.613 | 59,087 | 59,087 | [
"java",
"algorithm",
"graph"
] |
1,319,967 | 1 | 1,319,979 | null | 8 | 2,544 | I have a factory class, `DocumentLoaderFactory`, which simply returns an instance that implements an interface, `IDocumentLoader`.
All implementation resides under the following namespace
> Skim.Ssms.AddIn.ActiveFileExplorer.Loader
But what I am wondering is, which namespace does `DocumentLoaderFactory` belong?
I have placed the factory class under the `*.Loader` namespace for now, but it is being used from a user control (`ActiveFileWindow`) of the parent namespace, `Skim.Ssms.AddIn.ActiveFileExplorer` as shown below.
What would be pros & cons of placing the factory method within `*.Loader` or it's parent namespace? I would like to make a decision pros/cons.
Here is the layout of my project

| Which namespace does a factory class belong? | CC BY-SA 2.5 | null | 2009-08-24T00:25:09.050 | 2009-08-24T01:09:15.320 | 2017-02-08T14:14:39.783 | -1 | 4,035 | [
".net",
"design-patterns",
"oop",
"refactoring",
"factory"
] |
1,321,170 | 1 | null | null | 3 | 581 | i would like to use the "ConfigurationManager" settings, that i can create in VS 2008 ( see image ), to create different behaviors in my web.config or app.config files... for example i want to use different connection strings, if the "debug"-configuration is active, like:
```
<configuration>
<connectionStrings configSource="connectionStrings.config.$(ConfigurationName)"/>
</configuration>
```

Any suggestions how to do that? ( Or maybe in another way than this? )
Thanks
| How to use ConfigurationManager for DEBUG and RELEASE versions in VS 2008 projects | CC BY-SA 3.0 | null | 2009-08-24T08:40:41.357 | 2011-12-14T09:29:02.587 | 2017-02-08T14:14:40.120 | -1 | 109,321 | [
".net",
"configuration",
"web-config",
"app-config"
] |
1,321,416 | 1 | 1,321,519 | null | 10 | 15,350 | I am having a problem in Fluent NHibernate example utilizing the Many-to-Many relationships. I tried to find out examples on a similar case, and I found tons, but I'm still having the same problem.
When running the test project, the following exception is thrown:
NHibernate.PropertyAccessException: Exception occurred getter of project.Entities.User.UserName ---> System.Reflection.TargetException: Object does not
match target type.
This is an image of the tables:

and the code
```
public UsersMap()
{
this.Table("Users");
Id(x => x.UserName).Column("Username").GeneratedBy.Assigned();
Map(x => x.FirstName);
Map(x => x.LastName);
Map(x => x.Password);
Map(x =>x.EMail);
Map(x => x.Title);
Map(x => x.Division);
HasManyToMany<User>(x => x.Roles)
.Table("UserInRoles").ParentKeyColumn("Username")
.ChildKeyColumn("Usernamepk")
.Cascade.SaveUpdate().LazyLoad();
}
public RolesMap()
{
this.Table("Roles");
Id(x => x.ID).GeneratedBy.Assigned().Column("ID");
Map(x => x.RoleName).Length(50);
HasManyToMany<User>(x => x.Users)
.Table("UserInRoles").ParentKeyColumn("ID")
.ChildKeyColumn("RoleIdpk").Cascade.SaveUpdate().LazyLoad();
}
```
here is the code, most examples on the web and the Fluent Nhibernate mappings page are written in the same way, so any ideas ?
| Fluent NHibernate HasManyToMany() Mapping | CC BY-SA 3.0 | 0 | 2009-08-24T09:46:36.013 | 2014-02-15T22:37:42.933 | 2014-02-15T22:37:42.933 | 321,731 | 161,958 | [
"nhibernate",
"orm",
"mapping",
"fluent"
] |
1,322,981 | 1 | 1,323,101 | null | 0 | 7,749 | How can I add an Edit column in this GridView dynamically?

I have been able to create this GridView dynamically with the following code.
The aspx file:
```
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="GridView___Test._Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:GridView ID="GridView1" runat="server" Font-Names="Verdana" Font-Size="Small" OnRowEditing="GridView1_RowEditing" OnRowUpdating="GridView1_RowUpdating" AutoGenerateColumns="False">
</asp:GridView>
</div>
</form>
</body>
</html>
```
The code behind:
```
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Collections.Generic;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using Ice_Web_Portal.BO;
namespace GridView___Test
{
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
CreateGridView();
}
}
private void CreateGridView()
{
DataTable dataTable = Book.GetBooksDataSet().Tables[0];
foreach (DataColumn c in dataTable.Columns)
{
BoundField boundField = new BoundField();
boundField.DataField = c.ColumnName;
boundField.HeaderText = c.ColumnName;
GridView1.Columns.Add(boundField);
}
GridView1.DataSource = dataTable;
GridView1.DataBind();
}
}
}
```
Now please tell how to add some more code to add Edit column in this GridView dynamically.
| ASP.NET Dynamic GridView Creation | CC BY-SA 2.5 | 0 | 2009-08-24T15:12:30.183 | 2009-08-24T15:37:00.517 | 2017-02-08T14:14:40.800 | -1 | 159,072 | [
"asp.net",
"gridview",
"dynamic"
] |
1,324,544 | 1 | 1,325,601 | null | 1 | 1,454 | I plan on having to split up the Geometry object into a series of simpler shapes, and combine their centroids using this formula:

Mathematical details of this formula can be found in [this Wikipedia article](http://en.wikipedia.org/wiki/Centroid#Centroid_by_geometric_decomposition).
Don't be suprised if my view of the mathematics is incorrect. I haven't done any complex math past trigonometry, and I've never had to deal with Greek letters. I think I understand this one pretty well, but please just let me know if I've got it wrong.
: the centroid of a gometric shape or prism is not just the middle of the shape. It is the center of gravity, or center of mass. I assume that Geometry objects can encapsulate 3D prisms as well, so I may have to take this into account in the future, but for now I'm focusing on 2D Geometries only. For a 2D shape you have to imagine it being a stiff piece of paper with a given shape, and the centroid would be the point at which this piece of paper would balance on a needle.
The first problem I'm faced with is that I need to find a way to accurately split any given Geometry object into simple-enough shapes, so this formula can work correctly. Does anyone have any ideas how this might be accomplished? Or is there a better procedure that will still work universally?
The second problem I'm faced with is that after the geometry is split up, how do I go about finding the centroid of each piece? Each type of simple shape (triangle, quadrilateral, semicircle, etc) has its own centroid formula. Is there a way for me to figure which type of shape each piece is?
| How should I create an algorithm for the centroid of any System.Windows.Media.Geometry object? | CC BY-SA 2.5 | 0 | 2009-08-24T20:25:44.237 | 2009-08-25T22:32:30.527 | 2017-02-08T14:14:41.147 | -1 | 120,888 | [
".net",
"math",
".net-3.5",
"geometry",
"center"
] |
1,325,758 | 1 | 1,325,940 | null | 0 | 562 | Slightly related to [this question](https://stackoverflow.com/questions/1303893/properties-editor-design-pattern/1305637#1305637), but you don't really need to read that. The screenshot is helpful though:

So what's happening is when you click an object, change a property, deselect it and then reselect it, the property editor will be reset to all 0s, even though those aren't the actual values. When you actually click in the text boxes in the editor, the correct value appears. Does that mean it's just a display issue or what? How come the editor has two different values? The code:
```
void PropertyBrowser::objectUpdated() {
if(m_selectedObjects.isEmpty()) {
return;
}
m_variantManager->disconnect(this); // <--- THIS LINE
QMapIterator<QtProperty*, QByteArray> i(m_propertyMap);
bool diff;
while(i.hasNext()) {
i.next();
diff = false;
for(int j = 1; j < m_selectedObjects.size(); ++j) {
if(m_selectedObjects.at(j)->property(i.value()) != m_selectedObjects.at(j - 1)->property(i.value())) {
diff = true;
break;
}
}
if(diff) setBackgroundColor(topLevelItem(i.key()), QColor(232,232,232));
else setBackgroundColor(topLevelItem(i.key()), Qt::white);
m_variantManager->setValue(i.key(), m_selectedObjects.first()->property(i.value()));
}
connect(m_variantManager, SIGNAL(valueChanged(QtProperty*, QVariant)),
this, SLOT(valueChanged(QtProperty*, QVariant))); // <--- AND THIS LINE
}
```
However, I need those lines because they prevent `setValue` from triggering a `valueChanged` signal which causes other issues. This seems to indicate that calls this function fixes the issue:
```
void PropertyBrowser::valueChanged(QtProperty *property, const QVariant &value) {
if(m_propertyMap.find(property) != m_propertyMap.end()) {
foreach(QObject *obj, m_selectedObjects) {
obj->setProperty(m_propertyMap[property], value);
}
}
}
```
But the only thing that THAT function does is update the actual object... it has nothing to do with the property editor (or shouldn't). Here's the entire class if you need it:
```
/*
* File: PropertyBrowser.cpp
* Author: mark
*
* Created on August 23, 2009, 10:29 PM
*/
#include <QtCore/QMetaProperty>
#include "PropertyBrowser.h"
PropertyBrowser::PropertyBrowser(QWidget* parent)
: QtTreePropertyBrowser(parent), m_variantManager(new QtVariantPropertyManager(this)) {
setHeaderVisible(false);
setPropertiesWithoutValueMarked(true);
setIndentation(10);
setResizeMode(ResizeToContents);
setFactoryForManager(m_variantManager, new QtVariantEditorFactory);
setAlternatingRowColors(false);
connect(m_variantManager, SIGNAL(valueChanged(QtProperty*, QVariant)),
this, SLOT(valueChanged(QtProperty*, QVariant)));
}
void PropertyBrowser::valueChanged(QtProperty *property, const QVariant &value) {
if(m_propertyMap.find(property) != m_propertyMap.end()) {
foreach(QObject *obj, m_selectedObjects) {
obj->setProperty(m_propertyMap[property], value);
}
}
}
QString PropertyBrowser::humanize(QString str) const {
return str.at(0).toUpper() + str.mid(1).replace(QRegExp("([a-z])([A-Z])"), "\\1 \\2");
}
void PropertyBrowser::setSelectedObjects(QList<QObject*> objs) {
foreach(QObject *obj, m_selectedObjects) {
obj->disconnect(this);
}
clear();
m_variantManager->clear();
m_selectedObjects = objs;
m_propertyMap.clear();
if(objs.isEmpty()) {
return;
}
for(int i = 0; i < objs.first()->metaObject()->propertyCount(); ++i) {
QMetaProperty metaProperty(objs.first()->metaObject()->property(i));
QtProperty * const property
= m_variantManager->addProperty(metaProperty.type(), humanize(metaProperty.name()));
property->setEnabled(metaProperty.isWritable());
m_propertyMap[property] = metaProperty.name();
addProperty(property);
}
foreach(QObject *obj, m_selectedObjects) {
connect(obj, SIGNAL(propertyChanged()), SLOT(objectUpdated()));
}
objectUpdated();
}
void PropertyBrowser::objectUpdated() {
if(m_selectedObjects.isEmpty()) {
return;
}
m_variantManager->disconnect(this); // <---
QMapIterator<QtProperty*, QByteArray> i(m_propertyMap);
bool diff;
while(i.hasNext()) {
i.next();
diff = false;
for(int j = 1; j < m_selectedObjects.size(); ++j) {
if(m_selectedObjects.at(j)->property(i.value()) != m_selectedObjects.at(j - 1)->property(i.value())) {
diff = true;
break;
}
}
if(diff) setBackgroundColor(topLevelItem(i.key()), QColor(232,232,232));
else setBackgroundColor(topLevelItem(i.key()), Qt::white);
m_variantManager->setValue(i.key(), m_selectedObjects.first()->property(i.value()));
}
connect(m_variantManager, SIGNAL(valueChanged(QtProperty*, QVariant)), // <---
this, SLOT(valueChanged(QtProperty*, QVariant)));
}
```
It's otherwise a very cool class if you want to use it. Let's you edit the properties of any QObject given that they have Q_PROPERTYs attached.
Relevant class: [http://qt.nokia.com/products/appdev/add-on-products/catalog/4/Widgets/qtpropertybrowser/](http://qt.nokia.com/products/appdev/add-on-products/catalog/4/Widgets/qtpropertybrowser/)
| Weird Qt bug (to do with properties editor) | CC BY-SA 3.0 | null | 2009-08-25T02:23:42.717 | 2015-06-20T17:58:15.600 | 2017-05-23T12:07:10.690 | -1 | 65,387 | [
"qt"
] |
1,326,565 | 1 | 1,326,621 | null | 0 | 1,531 | When I am almost done with my application, one final thing is disturbing me.
When I select an Item from DropDown list, GridView1's columns are showing up two times like this:

This is my aspx file:
```
<%@ Page Language="C#" MasterPageFile="~/MasterPage.Master" AutoEventWireup="true" CodeBehind="WebmasterControlPanel.aspx.cs" Inherits="Ice_Web_Portal.UI.Webmaster.WebmasterControlPanel" Title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
<table style="width: 288px">
<tr>
<td valign="top">
<asp:DropDownList ID="tableNamesDropDownList1" runat="server" DataSourceID="UserTablesObjectDataSource1"
DataTextField="TableName" DataValueField="TableName" Width="256px" OnSelectedIndexChanged="tableNamesDropDownList1_SelectedIndexChanged" AutoPostBack="True">
</asp:DropDownList><br />
<asp:ObjectDataSource ID="UserTablesObjectDataSource1" runat="server"
SelectMethod="GetAllUserTableNames" TypeName="Ice_Web_Portal.BO.DBTables"></asp:ObjectDataSource>
</td>
<td style="width: 3px">
</td>
<td>
</td>
</tr>
<tr>
<td>
<asp:GridView ID="GridView1" runat="server" OnRowCancelingEdit="GridView1_RowCancelingEdit" OnRowCommand="GridView1_RowCommand" OnRowEditing="GridView1_RowEditing" OnRowUpdating="GridView1_RowUpdating">
</asp:GridView>
</td>
<td style="width: 3px">
</td>
<td>
</td>
</tr>
<tr>
<td>
</td>
<td style="width: 3px">
</td>
<td>
</td>
</tr>
</table>
</asp:Content>
```
This is my codebehind:
```
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using Ice_Web_Portal.BO;
using Ice_Web_Portal.ASP.NET.Utils;
namespace Ice_Web_Portal.UI.Webmaster
{
public partial class WebmasterControlPanel : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void tableNamesDropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{
CreateGridView();
}
protected void GridView1_RowCommand(object sender, GridViewCommandEventArgs e)
{
int index = Convert.ToInt32(e.CommandArgument);
if (e.CommandName == "Edit")
{
GridView1.EditIndex = index;
GridViewRow selectedRow = ((GridView)e.CommandSource).Rows[index];
string id = selectedRow.Cells[1].Text;
string isbn = selectedRow.Cells[2].Text;
CreateGridView();
}
else if (e.CommandName == "Update")
{
LinkButton updateButton = (LinkButton)e.CommandSource;
DataControlFieldCell dcfc = (DataControlFieldCell)updateButton.Parent;
GridViewRow gvr = (GridViewRow)dcfc.Parent;
ControlCollection cc = gvr.Cells[1].Controls;
TextBox tb = (TextBox)cc[0];
GridView1.EditIndex = -1;
CreateGridView();
}
}
private void UpdateTableData()
{
}
private void CreateGridView()
{
GridView1.Columns.Clear();
string tableName = tableNamesDropDownList1.SelectedItem.Text;
TableNameEnum tableType = TableNameEnumUtility.ConvertToEnum(tableName);
DataTable dataTable = null;
if (tableType == TableNameEnum.Book)
{
dataTable = Book.GetBooksDataSet().Tables[0];
}
else if (tableType == TableNameEnum.Course)
{
dataTable = Course.GetCoursesDataSet().Tables[0];
}
else
{
dataTable = null;
}
//Adding Edit Button
CommandField cf = new CommandField();
cf.ShowEditButton = true;
GridView1.Columns.Add(cf);
if (dataTable != null)
{
foreach (DataColumn c in dataTable.Columns)
{
BoundField boundField = new BoundField();
boundField.DataField = c.ColumnName;
boundField.HeaderText = c.ColumnName;
GridView1.Columns.Add(boundField);
}
}
GridView1.DataSource = dataTable;
GridView1.DataBind();
}
protected void GridView1_RowEditing(object sender, GridViewEditEventArgs e)
{
}
protected void GridView1_RowCancelingEdit(object sender, GridViewCancelEditEventArgs e)
{
}
protected void GridView1_RowUpdating(object sender, GridViewUpdateEventArgs e)
{
}
}
}
```
| ASP.NET - Dynamic grid with more than one DataSource | CC BY-SA 2.5 | null | 2009-08-25T07:27:02.153 | 2009-08-25T07:39:56.167 | 2017-02-08T14:14:42.150 | -1 | 159,072 | [
"asp.net",
"gridview"
] |
1,327,442 | 1 | 2,817,528 | null | 1 | 696 | I am working on an ASP.NET 2.0 web solution which currently runs en-GB and zh-HK languages as the 2 current languages for the site. Others will be added at a later date.
One of the requirements is that the user can choose to override the language displayed to another language. Therefore users in Hong Kong can view the site in English and vice versa.
My 2 resource files are
- -
The site performs this logic
1. Load user details
2. Check if user has overridden the preferred language
3. If they have, set the Thread.CurrentThread.CurrentUICulture to this language.
4. If they haven't, use the browsers default.
This is implemented in the following code:
```
//This method is written in a base page, which all pages in the site derive from
protected override void InitializeCulture()
{
User user = /*Load custom user object...*/;
string threadLanguage = Thread.CurrentThread.CurrentUICulture.IetfLanguageTag;
//If the browser is using a different language,
//but the has chosen a preferred language,
//change the CurrentUICulture over.
if (!threadLanguage.Equals(user.Language, StringComparison.OrdinalIgnoreCase))
{
CultureInfo userLanguageCulture = CultureInfo.CreateSpecificCulture(user.Language);
Thread.CurrentThread.CurrentUICulture = userLanguageCulture;
}
base.InitializeCulture();
}
```
I have also configured the web.config to pick up the uiCulture automatically with
```
<globalization uiCulture="auto"/>
```
For some very very odd reason, some users (even en-GB users) are finding the language is switching over the zh-HK for no reason whatsoever - sometimes between pages! I have added some debugging code to these pages which should reveal more information in the coming days. All it has revealed so far is that users are not necessarily from zh-HK, some are from zh-CN or zh-TW. Although this might help, because en-GB users are seeing zh-HK I think it is just a red herring.
What I have noticed is that the switch over occurs on page content (those inheriting from the base page, which the IntializeCulture() method exists). The custom user controls I have written do not experience this problem and appear in the correct language configured by the user. Therefore a page would have combinations of both English and Chinese content - eek!
Can anyone give guidance as to if I am coding this correctly, or an alternative way of approaching the requirements.
Thanks in advance,
Dominic
P.S. This is an intermittent problem and not a permanent. There seems to be no common action that replicates this issue. It just - happens.
P.P.S Here is an image of the problem in action:

---
Update 23 Sep 09:
After trying to change it to Page.Culture, I am still having more intermittent problems.
I have a couple of ideas at why this could possibly be occurring, but am unable to justify my 'hypothesis':
- - -
Apart from that, I do not know what else could cause the problem. I would show another screenshot, but the problem is identical and did appear in the same place as the previous screenshot showed.
Update 25 Sep 09:
I think we I might have solved it. In our Web.config, there is a tag that was configured as follows:
```
<globalization uiCulture="auto" culture="auto"/>
```
After removing that, after initial testing, it has yet to turn up!
Update 13 Oct 09:
The problem has turned up again :-(
Update 26 Oct 09:
It seems that if another user of the site changes their preferred language, it affects all other users on the site! Although their preferred language is set, somehow someone else's language switch affects the other users of the site!
| Why is my language switching automatically in ASP.NET 2.0? | CC BY-SA 2.5 | null | 2009-08-25T10:40:51.047 | 2010-05-12T09:34:52.700 | 2017-02-08T14:14:42.497 | -1 | 128,444 | [
"localization",
"asp.net-2.0",
"multilingual",
"currentuiculture"
] |
1,328,894 | 1 | 1,328,959 | null | 0 | 4,418 | I need to create a timeline between 2 given dates, ie:
The timeline must be drawn on a given width (can be altered), ie:
But I need to add markers, one on year beginning, and others 4 times during the year (each 73 days aprox):

Any tips?
| Create a timeline from date to date in Flex/AS3 | CC BY-SA 2.5 | null | 2009-08-25T15:07:42.343 | 2009-08-26T01:16:07.307 | null | null | 42,565 | [
"apache-flex",
"actionscript-3",
"flex3",
"timeline"
] |
1,329,054 | 1 | 1,329,297 | null | 12 | 29,271 | I am attempting to get the index of the current item in a [JCarousel](http://sorgalla.com/jcarousel/) so that I can display the current position within the Carousel to the user. For example, '13/20'.
How can I do this?
Sample of the end product:

| Getting Index of Current Item in JCarousel | CC BY-SA 3.0 | 0 | 2009-08-25T15:29:58.523 | 2018-07-30T04:32:54.717 | 2014-08-27T15:17:29.060 | 445,751 | 445,751 | [
"javascript",
"jquery",
"jcarousel"
] |
1,329,527 | 1 | 1,329,579 | null | 2 | 1,909 | In our application we're using [jdMenu plugin](http://jdsharp.us/jQuery/plugins/jdMenu/) to create a hierarchical menu from nested unordered lists.

This works well until there are so many items in a menu that it is forced off the screen.

In an attempt to fix this I've updated the plugin (actually the positionBy plugin that is a requirement of jdMenu) so that when a long menu is discovered the plugin reduces the height of the menu (ul), applies overflow:hidden and attempts to place it again. It then attaches a mousemove event to the menu so that when the users moves their mouse up and down the menu scrolls allowing them to see the hidden items. Like so:

(print screen doesn't capture pointer but on the left screen it's at the top of the menu, on the right it's at the bottom)
This works when it is the last menu in the hierarchy that is too long as above, however if a menu further up the hierarchy is too long then it's sub-menus are not displayed because of the overflow:hidden which has been applied.
So, my question is... is there another way to achieve this effect without using overflow:hidden (or can I use it in a better way)?
Alternatively, is there a more suitable jQuery plugin which will allow me to do something similar?
Let me know if you need any further clarification. Thanks loads.
| Creating multi-level, scrollable menus using jQuery and the jdMenu plugin | CC BY-SA 2.5 | 0 | 2009-08-25T16:50:25.447 | 2019-04-16T19:48:21.460 | 2017-02-08T14:14:44.530 | -1 | 984 | [
"jquery",
"menu",
"usability"
] |
1,329,535 | 1 | 1,330,430 | null | 6 | 6,950 | 
Above given images is of my application leaks.
Here I want to understand that, in Extended Detail - you can see different colors like light green, light pink, light brown, light purple.
What does each color indicates?
Now the other confusion is "How to locate the code which is creating a memory leak?"
Upto what limit of memory leak - the actual iPhone can go on with.
(suppose 10 bytes no problem, 20 bytes no problem & 200 bytes a problem)
- -
(For example - On clicking of UIKit second cell in detail - we cant get to the code)
- - - -
| Understanding the Instrument for memory leak checking - iPhone | CC BY-SA 3.0 | 0 | 2009-08-25T16:51:15.397 | 2015-06-20T18:05:28.730 | 2015-06-20T18:05:28.730 | 1,159,643 | 140,765 | [
"iphone",
"memory-leaks",
"instruments"
] |
1,332,963 | 1 | null | null | 1 | 6,712 | I have a CSS style which displays a png image in background. It works well in all browser, except in ie6.
In ie6 the bacground image is stretched to fit the block. How do I solve this ? Here's the CSS which I'm using to do this.
```
.error
{
color: #D8000C;
background-color: #FFBABA;
background-image: url('error.png');
}
```


| ie6 css background image problem | CC BY-SA 2.5 | null | 2009-08-26T07:37:05.877 | 2009-08-26T12:20:40.270 | 2017-02-08T14:14:45.923 | -1 | 89,556 | [
"internet-explorer-6",
"css"
] |
1,333,660 | 1 | 1,356,774 | null | 0 | 1,068 | In reference to this question:[Which is prefered CTabCtrl vs CPropertySheet](https://stackoverflow.com/questions/326079/which-is-preferred-ctabctrl-vs-cpropertsheet-in-mfc)
I have a DDK that uses MFC which I am new to. The basic example from the DDK implements a simple dialog box with 3 tabs with the "Ok" and "Cancel" button on the right side of the box.
Based on the question from the link above, seems like only CTabCtrl can have that kind of interface?? However, looking at the classes involved, it seems like CTabCtrl is not used at all?? Need some explanation about this...

from Class Explorer:
- - - - - - - - - - - - - - - - - -
| MFC: How to Identfy if Dialog was created using CPropertySheet or CTabCtrl | CC BY-SA 2.5 | null | 2009-08-26T10:11:02.150 | 2010-06-20T20:00:05.573 | 2017-05-23T12:01:33.300 | -1 | 131,500 | [
"c++",
"mfc",
"cpropertysheet",
"ctabctrl"
] |
1,334,694 | 1 | 2,349,063 | null | 101 | 139,150 | I created a video recording application with library dialog. The library dialog displays the list of recorded videos where each item consists of icon, video title, tags and location information the following way:

Does anyone know whether it is possible to replace icons with video thumbnails (single frame preview)?
Thanks!
| Android: Is it possible to display video thumbnails? | CC BY-SA 3.0 | 0 | 2009-08-26T13:28:44.267 | 2022-04-05T08:22:35.920 | 2015-07-27T09:52:29.663 | 411,022 | 22,996 | [
"android"
] |
1,337,850 | 1 | null | null | 2 | 443 | Does someone know how to implement eclipse perspective switcher so that each perspective shows as a separate tab on top of the window?
Menubar should be inside tab content, below tabs, as seen in google chrome.
I saw
- [Replacing the Perspective-Switcher in RCP apps](http://eclipsesource.com/blogs/2009/03/31/replacing-the-perspective-switcher-in-rcp-apps/)- [Creating your own Perspective-Switcher - A first try](http://www.richclient2.eu/2006_08_29/creating-your-own-perspective-switcher-a-first-try/)
but it's not quite there.
I saw [Riena](http://www.eclipse.org/riena/) [screenshots](http://wiki.eclipse.org/Riena_New_And_Noteworthy) and it looks almost what I have on my mind, but I don't know how they did it. Can someone point me in the right direction?

| Eclipse perspective switcher as in google chrome or riena | CC BY-SA 2.5 | null | 2009-08-26T22:18:06.173 | 2012-01-10T13:40:25.133 | 2017-02-08T14:14:47.290 | -1 | 122,674 | [
"eclipse",
"eclipse-plugin",
"eclipse-rcp",
"perspectives"
] |
1,340,639 | 1 | 1,341,642 | null | 9 | 17,663 | How do you to set the tint of this yellow button to be gray? I have tried adding an image, but have had no luck.
Here is the screenshot:

Here is my current code:
```
- (id)initWithStyle:(UITableViewStyle)style {
if (self = [super initWithStyle:style]) {
UIBarButtonItem *addButton = [[UIBarButtonItem alloc]
initWithTitle:NSLocalizedString(@"Settings", @"")
style:UIBarButtonItemStyleDone
target:self
action:@selector(GoToSettings)];
[addButton setImage:[[UIImage imageNamed:@"bg_table.png"] retain]];
self.navigationItem.rightBarButtonItem = addButton;
self.navigationItem.hidesBackButton = TRUE;
self.view.backgroundColor = [UIColor blackColor];
}
return self;
}
```
| Button color in Navigation bar - iPhone | CC BY-SA 3.0 | 0 | 2009-08-27T12:05:00.003 | 2014-07-08T08:32:07.170 | 2017-02-08T14:14:48.330 | -1 | 115,873 | [
"iphone",
"uinavigationbar"
] |
1,340,924 | 1 | 1,340,991 | null | 5 | 1,870 | For some project templates (ASP.NET MVC, WPF MVVM app...), Visual Studio 2008 prompts the user if he wants to create a test project :

However, in the list of test frameworks, only "Visual Studio Unit Test" is available. I'd like to be able to choose NUnit instead... Is this possible, and how ?
I installed TestDriven.NET, but it doesn't change anything...
| Visual studio NUnit integration | CC BY-SA 2.5 | null | 2009-08-27T12:59:31.470 | 2009-08-27T13:20:39.887 | 2017-02-08T14:14:48.670 | -1 | 98,713 | [
"visual-studio-2008",
"unit-testing",
"nunit"
] |
1,341,183 | 1 | 1,341,478 | null | 2 | 905 | I am working with SiteFinity CMS. My particular layout is 3-column with 100% width (side columns are fixed width, center is fluid). In the center column, I want to divide it up into multiple "boxes" using CSS. My first attempt was with [960 Grid System](http://960.gs). Here is the markup that I used:
```
<div class="container_12">
<div class="grid_12">
<div class="grid_5 alpha tl">
<p class="tlc">
<asp:ContentPlaceHolder ID="TopLeftBox" runat="server" />
</p>
</div>
<div class="grid_2">
</div>
<div class="grid_5 omega tr">
<p class="trc">
<asp:ContentPlaceHolder ID="TopRightBox" runat="server" />
</p>
</div>
<div class="clear">
</div>
<div class="grid_5 alpha bl">
<p class="blc">
<asp:ContentPlaceHolder ID="BottomLeftBox" runat="server" />
</p>
</div>
<div class="grid_2">
</div>
<div class="grid_5 omega br">
<p class="brc">
<asp:ContentPlaceHolder ID="BottomRightBox" runat="server" />
</p>
</div>
</div>
</div>
```
Here is a screenshot of the result:

However, if I utilize the additional class tags (`tl`, `tr`, etc) and add padding, this is what happens:

Here is the CSS I used to add the padding:
```
.tl
{
background-color:#EEEEEE;
padding:5px;
}
.tr
{
background-color:#DDDDDD;
padding:5px;
}
```
I imagine that this is because of conflicting CSS, since both SiteFinity and 960gs have their own distinct style sheets.
Can anyone provide me with some additional insight about why this is happening, and possibly how to get these two to work together nicely?
Thanks!
## EDIT:
So I added the following CSS:
```
.tl
{
background-color:#EEEEEE;
margin:-5px;
padding:5px;
margin-bottom:25px;
margin-top:15px;
}
.tr
{
background-color:#DDDDDD;
margin:-5px;
padding:5px;
margin-bottom:25px;
margin-top:15px;
}
/* I am almost ashamed of how ugly this CSS is */
```

To me, this seems like a duct-tape fix. Any feedback on this?
| Question about CSS layout and CMS | CC BY-SA 2.5 | null | 2009-08-27T13:42:22.870 | 2009-08-27T21:10:48.190 | 2009-08-27T14:00:30.727 | 25,515 | 25,515 | [
"css",
"sitefinity"
] |
1,343,282 | 1 | 2,926,901 | null | 32 | 9,343 | FlexBuilder's debugger will show you the "memory location" (or, I can only assume, something roughly analogous) of any in-scope instance:

But I'd like to get this information in code (sort of like Python's `id` function), so I could very easily trace how objects move through out the system. For example, I might have:
```
trace("Returning", id(foo));
```
Then somewhere else I could use:
```
trace("Using", id(foo));
```
To make sure both bits of code are dealing with the same instance.
Now, I know that many AS classes implement the `IUID` interface... But there are also a bunch of classes which don't (plain old arrays and objects, for example), so that wouldn't solve my problem.
I realize that I could also wrap objects in an `ObjectProxy`, but that would be less than ideal as well.
| How can I get an instance's "memory location" in ActionScript? | CC BY-SA 3.0 | 0 | 2009-08-27T19:21:17.787 | 2018-04-24T05:07:43.280 | 2018-04-24T05:07:43.280 | 6,083,675 | 71,522 | [
"apache-flex",
"actionscript-3",
"actionscript",
"flex3"
] |
1,345,473 | 1 | 1,345,944 | null | 9 | 13,173 | I am using jQuery 1.3.2.
There is an input field in a form.
Clicking on the input field opens a div as a dropdown. The div contains a list of items. As the list size is large there is a vertical scrollbar in the div.

To close the dropdown when clicked outside, there is a blur event on the input field.
Now the problem is:
In chrome(2.0.172) when we click on the scrollbar, the input field will loose focus.
And now if you click outside, then the dropdown won't close(as the input has already lost focus when you clicked on the srollbar)
In Firefox(3.5), IE(8), opera(9.64), safari() when we click on the scrollbar the input field will not loose focus. Hence when you click outside (after clicking on the srollbar) the dropdown will close. This is the expected behaviour.
So In chrome once the scrollbar is clicked, and then if I click outside the dropdown won't close.
How can i fix this issue with chrome.
| Google Chrome: Focus issue with the scrollbar | CC BY-SA 3.0 | 0 | 2009-08-28T07:05:18.403 | 2015-06-20T18:20:18.237 | 2015-06-20T18:20:18.237 | 1,159,643 | 73,790 | [
"javascript",
"jquery",
"cross-browser",
"google-chrome",
"scrollbar"
] |
1,346,471 | 1 | 1,351,372 | null | 0 | 1,363 | I am trying to build a simple custom SWT widget and i want to ensure that it is accessible. I know that accessbility encompasses a lot of factors, but as a starting point, i would at least like to make it navigable via the keyboard.
This is a simplified view of my custom control. I have overridden the 'Canvas' class in SWT.

The 'Third Button' is my custom control. Now, the 'tab' toggles through only the first two buttons. I would also like it to focus on my custom control when i tab through the controls. Is there any way to make this possible?
Also, are there any general guidelines on making custom SWT controls accessible?
| Keyboard Navigation and Accessibility for custom SWT widgets | CC BY-SA 2.5 | null | 2009-08-28T11:39:11.787 | 2009-08-29T12:54:51.877 | 2017-02-08T14:14:50.033 | -1 | 58,798 | [
"java",
"eclipse",
"accessibility",
"swt"
] |
1,347,317 | 1 | 1,347,360 | null | 0 | 90 | I'm having trouble with stored procedure here and I'm not sure what to do or how to approach this. I'm sure there's a genius out here that can help me out! :D

I want my stored procedure to return Anuncio's idAnuncio, titulo, precio, descripcion, and by using it's foreign keys return Categoria's descripcion and Imagenes's imagen.
But here's the catch, I need to send a idCategoria (int) variable from my app so the stored procedure can go: "" and it return a or array with everything inside.
Please help! I'm completely lost and I just need a working example to figure out the rest.
Thanks guys! ;)
| Making a stored procedure return 5 little data from three different tables | CC BY-SA 2.5 | null | 2009-08-28T14:23:54.723 | 2017-10-10T19:07:50.677 | 2009-08-28T14:30:06.803 | 27,535 | 112,355 | [
"sql",
"sql-server",
"tsql"
] |
1,347,386 | 1 | 1,347,436 | null | 26 | 57,244 | I can't pull up my tables so I can use them in my stored procedure. Any reason why they aren't showing?

| Why are my tables not showing up in SQL Server Management Studio's intellisense? | CC BY-SA 3.0 | 0 | 2009-08-28T14:31:57.817 | 2021-07-27T17:17:58.263 | 2015-07-15T11:25:44.673 | 3,779,463 | 112,355 | [
"sql",
"sql-server"
] |
1,352,197 | 1 | 1,352,221 | null | 0 | 4,861 | A small - little question.
I have seen many application having buttons like following.

While using Interface builder I didn't Found any option to have this kind of button.
How to have this kind of button in your application.
| How to set UIButton type? | CC BY-SA 3.0 | null | 2009-08-29T19:30:34.570 | 2015-06-20T18:20:09.487 | 2015-06-20T18:20:09.487 | 1,159,643 | 140,765 | [
"iphone",
"uibutton"
] |
1,353,776 | 1 | 1,392,267 | null | 4 | 838 | I was reading the book `"Expert C# 2005 Business Objects"`.
The book describes various base classes to be inherited by various classes to solve real-world problems.

But the book does not provide examples of all those classes.
Can anyone give me all of those examples (with reason) to better understand CSLA?
For example, Which real-world objects are to be considered as Read-only Root Objects (Student/Product/Order, etc.)? And Why?
| CSLA.net - Inheritable Base classes | CC BY-SA 2.5 | 0 | 2009-08-30T12:26:38.460 | 2010-04-04T12:00:15.743 | 2017-02-08T14:14:51.387 | -1 | 159,072 | [
"c#",
"csla"
] |
1,354,165 | 1 | 1,356,932 | null | 2 | 2,369 | Sample Image: 
I'm using DirectShow.net to get webcam footage into my program.
To accomplish this, I'm adding the source camera to the graph, and a VideoMixingRenderer9.
That part is all working swimmingly, but the part where I extract a frame using GetCurrentImage(out lpDib) is having what I can only describe as an odd issue.
What I am doing is using Marshal.PtrToSTructure to create a BitmapInfoHeader from lpDib, then calculating the width / height / stride / & pixel format.
The problem comes when I look at the image stored in bitmap - It has a 10 px wide line down the left side that came from what is actually the right!
It is worth noting that the data I am getting from the GetCurrentImage call is actually upside down - note the call to Cap.RotateFlip.
```
IntPtr lpDib;
windowlessCtrl.GetCurrentImage(out lpDib);
BitmapInfoHeader head;
head = (BitmapInfoHeader)Marshal.PtrToStructure(lpDib, typeof(BitmapInfoHeader));
int width = head.Width;
int height = head.Height;
int stride = width * (head.BitCount / 8);
PixelFormat pixelFormat = PixelFormat.Format24bppRgb;
switch (head.BitCount)
{
case 24: pixelFormat = PixelFormat.Format24bppRgb; break;
case 32: pixelFormat = PixelFormat.Format32bppRgb; break;
case 48: pixelFormat = PixelFormat.Format48bppRgb; break;
default: throw new Exception("Unknown BitCount");
}
Cap = new Bitmap(width, height, stride, pixelFormat, lpDib);
Cap.RotateFlip(RotateFlipType.RotateNoneFlipY);
//if we examine Cap here (Cap.Save, for example) I'm seeing the odd stripe.
```
I'm completely lost here. Seems like some sort of offset issue, and I've tried tweaking with stride some, but to no avail (just creates odd diagonal look).
| Directshow & .Net - Bitmap shows stripe from right on left side of image? | CC BY-SA 2.5 | null | 2009-08-30T15:58:03.583 | 2016-06-02T20:08:47.613 | null | null | 85,186 | [
"c#",
".net",
"directshow"
] |
1,355,472 | 1 | 1,355,477 | null | 21 | 130,486 | Can anyone help me out please? I'm confused.
I want to set up my connection string so I can just call it from my Web.Config file.
I need a way to call it from my code, please make a little example. :(
I also need help on setting up the Web.Config file.
I don't know what properties to use. Here's a screenshot of what my credentials are. I have no password set up for Windows. I'm really lost here.

| Using the Web.Config to set up my SQL database connection string? | CC BY-SA 2.5 | 0 | 2009-08-31T01:48:18.847 | 2019-03-05T15:37:49.423 | null | null | 112,355 | [
"asp.net",
"sql",
"sql-server",
"sql-server-2008",
"web-config"
] |
1,355,610 | 1 | 1,355,618 | null | 13 | 13,275 | I have a three tier set-up. Someone suggested I should get the ConnectionString from the Web.Config file and I've got it set up like this:

Now I'm trying to access the ConnectionString from my DAL tier, but I can't find the ConfigurationManager. How can I invoke my Connection string from here?:

| Can't access the configuration manager from my solution | CC BY-SA 2.5 | 0 | 2009-08-31T02:51:12.950 | 2014-01-03T21:18:18.920 | null | null | 112,355 | [
"c#",
"web-config",
"connection-string"
] |
1,356,160 | 1 | 1,356,485 | null | 28 | 47,418 | I have a Visual Studio setup project.
Upon installation, it creates an uninstall batch file in the application folder. IF the user wants to uninstall the product, he can go to "Add/Remove Programs", or he can just double-click the uninstall.cmd. The contents are:
```
%windir%\system32\msiexec /x {CC3EB7BF-DD82-48B9-8EC5-1B0B62B6D285}
```
The GUID there is the ProductCode from the Setup Project in Visual Studio.

But, in order for upgrades to work properly, I have to increment the Version number, every time I produce a new MSI. And, if I increment the Version number, then I also have to generate a new Guid for the ProductCode. Which means the static uninstall.cmd file needs to change.
How can I dynamically generate a batch file that contains the ProductCode for the, at build time?
| In a Visual Studio setup project, How do I generate an uninstall script? | CC BY-SA 4.0 | 0 | 2009-08-31T06:57:28.513 | 2018-08-23T23:49:53.243 | 2018-08-23T23:49:53.243 | 48,082 | 48,082 | [
"visual-studio",
"visual-studio-2008",
"installation",
"setup-project"
] |
1,356,470 | 1 | 1,382,795 | null | 66 | 61,156 | When I try to connect to local ports, , using [Portmon](http://technet.microsoft.com/en-us/sysinternals/bb896644.aspx) v. 3.02, I'm getting an error message, , in a small error dialog box:

I run the tool as an administrator (if not, I get error 6).
By the way this is a Windows 7 x64. On 32-bit, in Windows 7 x86, it works fine. How can I fix this problem?
| Sysinternals' Portmon: Error 2 | CC BY-SA 3.0 | 0 | 2009-08-31T08:38:40.480 | 2021-09-30T16:43:35.970 | 2013-08-19T14:12:21.673 | 63,550 | 16,032 | [
"serial-port"
] |
1,357,731 | 1 | null | null | 169 | 82,177 | I know that I can use Arrow Keys to collapse items of solution explorer one by one, but I would like to know if there is a way to collapse all items with only one operation. I want to know it because, today I have a solution with 6 projects that have at least and if I try to collapse them one-by-one I will have a hard time.

| Visual Studio: Is there a way to collapse all items of Solution Explorer? | CC BY-SA 3.0 | 0 | 2009-08-31T14:28:20.423 | 2022-12-24T15:02:50.460 | 2015-06-20T18:17:15.023 | 1,159,643 | 136,258 | [
".net",
"visual-studio-2008"
] |
1,358,896 | 1 | 1,364,430 | null | 0 | 255 | I've been stumbling over this for a while and was wondering if anyone has run into this problem before.
The application I'm working on is divided into multiple data plots and a single timeline at the bottom of the screen. Each plot (which is actually multiple textures layered on top of each other) as well as the timeline is rendered to a separate texture. The timeline texture is rendered first, followed by each of the plot textures from the top of the screen to the bottom. I am using DXUT and DirectX9 (March 2009).
After adding time text to the timeline texture, I noticed that the text was repeated in the title bar of every data plot. Here's a screencap of a portion of the display, it shows just a single plot, but the text repeats on every plot opened:

It seems like it is tied directly to the DrawText being called in the timeline's render function. I do use relative coordinates as the rect being passed to DrawText, but since I've already set the render target to the desired texture it should only affect the current texture. Not every texture rendered afterward.
Has anyone ever run into any problems similar to this using D3DXFont?
: After some more experimentation, it looks like it has something to do with the Z buffer. By adding D3DCLEAR_ZBUFFER to the clear on each texture surface, the duplicate text is gone. While the problem seems bypassed for now, I'm still curious as to why the Z buffer for a completely separate texture was being written during my DrawText call.
| Why is duplicate text being rendered onto the Z buffer of a different texture when using D3DXFont::DrawText? | CC BY-SA 2.5 | null | 2009-08-31T19:00:39.020 | 2009-09-01T20:19:01.890 | 2017-02-08T14:14:52.747 | -1 | 23,504 | [
"text",
"direct3d",
"zbuffer"
] |
1,359,099 | 1 | null | null | 1 | 2,744 | I have a dataset that connects with three databases. How can I attach my Crystalreport viewer so all three are included?

```
protected void Page_Load(object sender, EventArgs e)
{
ReportDocument X = new ReportDocument();
DataTable DTable = new DataTable();
DataSet1TableAdapters.TableAdapterManager ????? = new WebApplication1.DataSet1TableAdapters.TableAdapterManager();
DTable = ????????
string ubicacion = Server.MapPath("crystalReport1.rpt");
X.Load(ubicacion);
X.SetDataSource(DTable);
CrystalReportViewer1.ReportSource = X;
}
```
| How can I use multiple Datatables on my CrystalReport? | CC BY-SA 2.5 | null | 2009-08-31T19:47:56.723 | 2010-12-22T22:48:50.407 | null | null | 112,355 | [
"c#",
"sql",
"crystal-reports",
"dataset"
] |
1,360,618 | 1 | 1,360,639 | null | 0 | 162 | I have a bookmarklet that will come up with a iframe that will load a web form I have. On most site, it works fine with the bookmarklet on top of every element in the current html page. But for certain sites with a lot of javascript loading (e.g. meebo.com), the loaded iframe will go below. How can i troubleshot this? Thanks. attached screen shot.

| Bookmarklet behind elements | CC BY-SA 2.5 | null | 2009-09-01T05:07:11.967 | 2009-09-01T06:43:50.900 | 2017-02-08T14:14:53.093 | -1 | 1,261 | [
"iframe",
"bookmarklet"
] |
1,363,412 | 1 | null | null | 2 | 18,959 | I have a problem with page breaks in an SSRS report, and I'm by no means an expert. This is in the XML mark up to provide a page break:
```
<TableGroups>
<TableGroup>
<Grouping Name="AdjustmentPageBreakGroup">
<PageBreakAtEnd>true</PageBreakAtEnd>
<GroupExpressions>
<GroupExpression>=CInt(Ceiling(RowNumber(Nothing)/28))</GroupExpression>
</GroupExpressions>
</Grouping>
</TableGroup>
</TableGroups>
```
The page break appears on different lines on the print and screen version of the report:


As you can see, the print version has a break in the middle of the "Transfer IN" cell, with "Value" on the next page after the break. From what I can tell from the XML, it's got a hardcoded page break at row 28, and if I change this number it fixes the print version and breaks the screen version. Is there any way to specify this line break differently for print and screen?
| SSRS report page break issue | CC BY-SA 3.0 | null | 2009-09-01T16:26:58.113 | 2015-05-25T11:14:56.137 | 2015-05-13T22:44:13.500 | 964,243 | 85,733 | [
"reporting-services",
"rdl"
] |
1,368,897 | 1 | null | null | 1 | 3,568 | I'm trying use jQueryUI tabs in a content control. The code below works on a page that doesn't use a MasterPage. When I use it in a content control there is a large gray space between the tabs and the content in them. How do I get rid of this?
I'm using jquery calendars and accordions with no problems in the content pages.
There is a screen shot at this link [http://imgur.com/qGQjK.png][1]](https://imgur.com/qGQjK.png][1])
```
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" Runat="Server">
<div class="demo">
<div id="tabs">
<ul>
<li><a href="#tabs-1">Nunc tincidunt</a></li>
<li><a href="#tabs-2">Proin dolor</a></li>
<li><a href="#tabs-3">Aenean lacinia</a></li>
</ul>
<div id="tabs-1">
<p>This is tab 1 content</p>
</div>
<div id="tabs-2">
<p>Tab 2 </p>
</div>
<div id="tabs-3">
<p>tab 3</p>
</div>
</div>
</div>
<script type="text/javascript">
$(function() {
$("#tabs").tabs();
});
</script>
</asp:Content>
```
![alt text][1]
[1]: 
Here's how it looks in the same project without a masterpage - it doesn't have all that extra space.
![alt text][1]
[1]: 
here's the part of the jquery stylesheet that formats the tabs
```
.ui-tabs { padding: .2em; zoom: 1; }
.ui-tabs .ui-tabs-nav { list-style: none; position: relative; padding: .2em .2em 0; }
.ui-tabs .ui-tabs-nav li { position: relative; float: left; border-bottom-width: 0 !important; margin: 0 .2em -1px 0; padding: 0; }
.ui-tabs .ui-tabs-nav li a { float: left; text-decoration: none; padding: .5em 1em; }
.ui-tabs .ui-tabs-nav li.ui-tabs-selected { padding-bottom: 1px; border-bottom-width: 0; }
.ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; }
.ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
.ui-tabs .ui-tabs-panel { padding: 1em 1.4em; display: block; border-width: 0; background: none; }
.ui-tabs .ui-tabs-hide { display: none !important; }
```
| jQuery Tabs with Masterpage - space between tabs and tab content | CC BY-SA 2.5 | null | 2009-09-02T16:51:29.883 | 2009-12-28T14:23:58.833 | 2009-09-02T21:17:43.120 | 135,269 | 135,269 | [
"asp.net",
"jquery",
"master-pages",
"contentcontrol"
] |
1,369,939 | 1 | 1,374,358 | null | 0 | 1,922 | I have an iPhone app that is using CoreLocation.
Upon first installing the app, the iPhone system message is displayed asking whether or not the user wants to allow location services, if they click yes, my app suddenly displays the first screen of my app (I'm using a navigation controller), and crashes. This is what I see in the log -
```
warning: UUID mismatch detected with the loaded library - on disk is:
/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/System/Library/PrivateFrameworks/CoreTelephony.framework/CoreTelephony
=uuid-mismatch-with-loaded-file,file="/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/System/Library/PrivateFrameworks/CoreTelephony.framework/CoreTelephony"
Program received signal: “EXC_BAD_ACCESS”.
```
And the stack trace looks like this

My code isn't too far off from the LocateMe sample (which works on my device). I have this:
```
CLLocationManager *clLocationManager = [[CLLocationManager alloc] init];
clLocationManager.delegate = self;
if (clLocationManager.locationServicesEnabled) {
[clLocationManager startUpdatingLocation];
} else {
self.searchBar.placeholder = @"Enter location";
}
```
Any idea on waht I'm doing wrong?
| Application crashes when asking if user wants to use Location Services | CC BY-SA 2.5 | 0 | 2009-09-02T20:29:15.230 | 2009-09-03T16:03:29.593 | 2017-02-08T14:14:54.120 | -1 | 543 | [
"iphone",
"mapkit",
"core-location"
] |
1,370,239 | 1 | 1,375,240 | null | 3 | 6,526 | I have just started with Linq and Linq to Entity Framewok. On top of that with the .NET Ria services.
My problem is that I have 2 tables Folder and Item with a many to many relationsship using a third "connection" table FolderItem like this:
[](https://i.stack.imgur.com/Sl0ld.png)
[InsomniacGeek.com](https://InsomniacGeek.com/Downloads/Model1.png)

In the .NET RIA Service domain service, I want to create a method that returns all Items for a given FolderID.
In T-SQL , that would something like this:
```
SELECT * FROM Item i
INNER JOIN FolderItem fi ON fi.ItemID = i.ID
WHERE fi.FolderID = 123
```
My Linq knowledge is limited, but I want to do something like this:
```
public IQueryable<Item> GetItems(int folderID)
{
return this.Context.Items.Where(it => it.FolderItem.ID == folderID);
}
```
This is not the correct syntax, it gives this error:
> Cannot convert lambda expression to
type 'string' because it is not a
delegate type
What is the correct way of doing this (with associations) ?
Can I user the .Include("FolderItem") somehow?
Please, method syntax only.
PS.
Here's how it would look like using a Query Expression:
```
public IQueryable<Item> GetItemsByFolderID(int folderID)
{
return from it in this.Context.Items
from fi in it.FolderItem
where fi.Folder.ID == folderID
select it;
}
```
The qeustion is, how would it look like using the Method Based Query Syntax?
| How to query associations in Linq to Entity framework in .NET Ria Services | CC BY-SA 4.0 | 0 | 2009-09-02T21:31:17.180 | 2019-04-18T22:48:22.633 | 2019-04-18T22:48:22.633 | 4,751,173 | 3,584 | [
"linq-to-entities",
"wcf-ria-services"
] |
1,370,486 | 1 | 1,370,541 | null | 0 | 466 | I have a PHP calendar that lists all of the days of the month in a table. Before the first day of the month I have numbers from the prior month and after the last day of the month are the numbers of the days for the upcoming month.
Here's a photo of the Calendar as it currently looks. As you can see the bottom gray numbers are working fine, but the numbers preceding the first day of the month are negative numbers and should instead appear as '29,30'

The numbers after the last day of the month were simply '32,33,34' for example, so I just created an if statement that checks if the number is greater than the total numbers of days in the current month and if so, then subtract the total numbers of days in the month from '32' for example, which would then make it appear as '1,2,3'.
```
if ($day > $total_days_of_current_month) {
echo '<td>' . ($day - $total_days_of_current_month) . ' </td>'; // for example,33-31=2
}
```
My problem is creating an if statement that somehow knows what the last days of the prior month was. The problem is that some months have 30 days and some have 31 days. Also, the month of February and leap years are a problem. Does anyone know an if statement so i can make it appear as '28,29,30' from the previous month?
| How can I create a function that can figure out the previous month's last day dates? | CC BY-SA 2.5 | null | 2009-09-02T22:30:06.173 | 2009-09-04T07:54:23.150 | 2017-02-08T14:14:55.160 | -1 | 83,916 | [
"php",
"calendar",
"date",
"if-statement"
] |
1,371,434 | 1 | 1,371,848 | null | 8 | 3,537 | I've been forcing myself to use gvim for Windows for much of my text editing needs. I'm gradually growing more comfortable with it, but one problem has been annoying me greatly.
I use the project plugin to keep a window up on the left side of my gVim screen, listing my projects. It's handy and keeps me from going into IDE withdraw. Here's an idea of what it looks like:

I then invoke NERDTree on the right side with <Leader>][:

I then navigate through NERDTree to find whatever I was looking for, and dismiss NERDTree with <Leader>][. This makes the NERDTree window go away, but rather than put the main window back to the size it was, it grows the project window instead:

Right now I manually resize the project window, but that really interrupts the flow I'm trying to achieve with vim.
I'm using gvim 7.2, NERDTree 3.1.1, and project 1.4.1. Anyone have any ideas how to fix this?
: Based on Steve K's answer I've figured out the solution. When you run the `:Project` command and it creates the project window, the project window is the active one. So I just added `set winfixwidth` to my `.vimrc` after `:Project`, and that solved the problem. Now I can show and hide NERDtree to my heart's content with no annoying window resizing.
| How to keep NERDTree from resizing project window in (g)vim? | CC BY-SA 2.5 | 0 | 2009-09-03T04:23:49.200 | 2009-09-03T23:56:23.083 | 2017-02-08T14:14:56.170 | -1 | 117,710 | [
"vim",
"project"
] |
1,373,529 | 1 | 1,373,531 | null | 33 | 43,654 | Adding more than one child to a WPF `StatusBar` results in poor layout with little option to customize. For example, this code:
```
<Window x:Class="StatusBar.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<DockPanel>
<StatusBar DockPanel.Dock="Bottom">
<StatusBarItem>
<TextBlock>Ready</TextBlock>
</StatusBarItem>
<StatusBarItem>
<TextBlock>Set</TextBlock>
</StatusBarItem>
</StatusBar>
<Label>Main Content</Label>
</DockPanel>
</Window>
```
Results in:

This is not the ideal layout, since the "Set" is squeezed right up against the "Ready".
`StatusBar`
| How do I customize the WPF StatusBar layout? | CC BY-SA 3.0 | 0 | 2009-09-03T13:53:40.033 | 2022-06-18T19:14:18.507 | 2013-04-24T09:57:58.663 | 5,380 | 5,380 | [
"wpf",
"layout",
"controls",
"statusbar",
"statusbaritem"
] |
1,373,548 | 1 | 1,373,594 | null | 2 | 2,114 | I am starting with google maps. just learning. while ago, it was working. now it's not. everything seems to work in UI Controls, Markers/Overlay but the map is blank.
```
google.load("jquery", "1.3.2");
google.load("maps", "2");
google.setOnLoadCallback(function() {
var map = new google.maps.Map2(document.getElementById("map"));
map.setCenter(new google.maps.LatLng(103.8, 1.37), 13);
map.setUIToDefault();
map.addOverlay(new google.maps.Marker(new google.maps.LatLng(103.8, 1.37)));
});
```

| Google Maps Stopped working suddenly (Blank Map) | CC BY-SA 4.0 | null | 2009-09-03T13:56:37.507 | 2023-01-25T10:38:37.380 | 2023-01-25T10:38:37.380 | 5,152,146 | 119,032 | [
"google-maps",
"geolocation",
"geocoding"
] |
1,374,380 | 1 | null | null | 13 | 5,904 | Have looked through the other questions and can't see a clear answer to this.
We are a small development team, working on what could be described as 3 separate front-office 'applications' (OnlineOrders via asp web, TradeManagement winforms app, ASP.NET ReportingSuite).
However for better or worse, each of these apps share one central SQL2005 database, let's call it MainDB. They all use the same Orders table structure, the Users, the Accounts etc., pretty much 80% of the objects are used in some way by each of the apps.
In TFS, I had thought that each of these 3 apps as being seperate Projects, with the Work Item tracking, reporting etc that would give us. Seemed to work fine getting our 'code based' Solutions created.
Now I'm trying to see how I can get the MainDB database into TFS Source Control. I can't see an obvious way to do this.
:
Am I supposed to create a database project for MainDB, export the schema into scripts in the project, and add that database project into each Solution, inside each TFS Project?
Or should I have a separate TFS Project just for my database project? And a developer would have to open both the MainDB database TFS Project and (eg) the TradeManagement TFS Project open to develop a new feature (as most new features will involve some db changes too)? Seems very heavy handed.
Or is it common to just have one massive TFS Project, called 'Everything', and within that have feature branches for the code projects, and a database branch for the database, and any other projects that might use the MainDB database? (in the img, assume MainDB scripts are in the 'Database' folder)

etc. Man, I am confused. Codeplex seems to point to keeping it simple by putting all solutions inside on big single solution. Is that sustainable?
---
Thanks for the responses, really great.
The idea of treating the database as an API is interesting, it is really like that. The database is populated from numerous sources, some internal, some external, some apps get data out that was input via another app. Controlling it as an API that each app dips in and out of is a very helpful analogy, thanks for that.
The cost of having no support for dependencies is a concern, but I think we can be disciplined enough to do our branching in an orderly manner. The branching of the app codebase is likely to be more involved than the database - we really just want the database under source control in some way to satisfy Sarbannes-Oxley audit requirements.
I will have to think some more on this.
The horizontal partitioning of the db isn't something I'd considered. It feels like too much of the database objects are shared to be able to chop it into horizontal blocks - we'd have the same objects (tables/sprocs etc) in several blocks which I think would confuse us further.
| What place in TFS should I put my database project in? | CC BY-SA 4.0 | 0 | 2009-09-03T16:08:16.077 | 2021-02-23T12:02:12.237 | 2019-04-19T07:53:19.553 | 4,751,173 | 167,931 | [
"tfs"
] |
1,376,233 | 1 | 1,376,454 | null | 1 | 2,486 | I've created an app with a small window (the size of a combo box). I need to create a floating panel that sits outside the window, next to the selected item in a JComboBox. (See attached image).

I've been reading about the JComboBox.setRenderer(customRenderer) etc. But was just wondering before I go down this path, whether it is at all possible to render something outside the window. I suspect it is, as the combobox itself manages to render it's popup list outside the window.
I'm very new to Swing, so any advice would be appreciated.
| Swing: Floating panel next to the selected item in a JComboBox | CC BY-SA 2.5 | null | 2009-09-03T22:09:12.390 | 2009-09-04T01:16:21.687 | 2017-02-08T14:14:59.257 | -1 | 26,633 | [
"java",
"swing",
"jcombobox"
] |
1,376,504 | 1 | 1,376,654 | null | 3 | 908 | I have been working on designing a file server that could take the load off from the primary website, and serve images/files over the web to the client.
Primary goals of the file server:
- Take off load from primary server hosting the site
- Reuse the existing web server code base and avoid duplication of code/logic for better maintainability
- Being scalable for increasing downloads
- Hide real download url path from user
By keeping above in mind, i could come up with two approaches. Sequence diagram representation of the two approaches for ease of understanding [apologies for the skewed use of sequence diagram]. Neither of the approaches would satisfy all my goals.
Which of these approaches would you recommend considering my goals?
Is there a better third approach?
Some of the differences, i could think of:
- Approach #1 would result in duplicating BL code causing maintainability issues
- Approach #2 would reuse code and centralize BL reducing maintainability issues
- Approach #1 would reduce network calls while #2 increases them
The concept of file servers, scalability of downloads, bandwidth distribution have all been there for a while now. Please share your thoughts!

UPDATED:
Approach #1 looks very attractive as it takes the load off the primary server completely. The only issue to address in #1 is the code duplication and maintainability issues. This could be overcome by having just one project for BL/DAC comprising the functionality required by both web service and file server. And, reference the assembly/library in both web service and file server projects. Now, there is only one BL/DAC code to maintain and also avoids the network calls in approach #2.
| File Server Design Approaches | CC BY-SA 2.5 | null | 2009-09-03T23:32:50.440 | 2009-09-04T16:44:09.450 | 2017-02-08T14:14:59.597 | -1 | 144,754 | [
"web"
] |
1,378,528 | 1 | null | null | 2 | 103 | Ok, I'm kind of new to standards of web design here. :P
Is this the correct way of designing a site with CSS?
Each "Box" has it's own DIV tag, with it's own settings. I'm guessing the background-image: of a box inside of the heirarchy gets precedence over the outer box, right?
A "Box" that has the background image of the site.
Another smaller "Box" that acts as the content container of the site.
And other smaller "boxes" that act as containers for particular things inside of the content "Box".
Here's a little picture about what I mean:

| A questions about coding the CSS layout for a website | CC BY-SA 2.5 | null | 2009-09-04T10:53:32.430 | 2009-09-04T11:20:27.463 | null | null | 112,355 | [
"css"
] |
1,379,607 | 1 | 1,382,879 | null | 3 | 390 | On a Java portal you can have portlets that include data provided by other applications. We want to replace our existing Java portal with a Django application, which means duplicating the Java portal's ability to display portlets. The two Sun specifications in question that we want to duplicate are JSR168 and JSR286.
I need a cPython solution. Not Jython or Java. Nothing against those tools, we just don't use them. For the record, the Jython based [Portletpy](http://code.google.com/p/portletpy/) does the opposite of what we are aiming to do.
Also, I suspect this question has been caused by a misunderstanding on our part of how the JSR168/JSR286 specification works. I that JSR168/JSR286 is an arcane protocol for communicating some sort of content between separate applications, but in the Java world that tends to be done by other methods such as SOAP. Instead, the issue might be that these protocols are simply definitions of how to display content objects in views. If all we have to do is handle SOAP calls and display data, then this whole question is moot.
Simple architecture image below of what we we want to do:

| Are there any cpython libraries that work with jsr168 and/or jsr286? | CC BY-SA 2.5 | null | 2009-09-04T14:27:28.057 | 2011-03-23T12:13:58.260 | 2017-02-08T14:15:00.630 | -1 | 93,270 | [
"python",
"django",
"jsr168",
"jsr286"
] |
1,379,902 | 1 | 1,380,792 | null | 14 | 27,473 | I'm looking to set the background of a column in a WPF GridView. Many Google results have pointed towards setting the GridViewColumn.CellTemplate to change the appearance of a column. However, I'm met with an issue when setting the background color; it's not stretching to fill the cell:

Here's the xaml I'm working with:
```
<Window x:Class="ScratchPadWpf.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window1" Width="300" Height="300">
<Grid>
<ListView ItemsSource="{Binding}">
<ListView.View>
<GridView>
<GridViewColumn>
<GridViewColumn.CellTemplate>
<DataTemplate>
<Grid Background="Red">
<TextBlock Text="{Binding FirstName}"/>
</Grid>
</DataTemplate>
</GridViewColumn.CellTemplate>
</GridViewColumn>
<GridViewColumn>
<GridViewColumn.CellTemplate>
<DataTemplate>
<Grid Background="Yellow">
<TextBlock Text="{Binding LastName}"/>
</Grid>
</DataTemplate>
</GridViewColumn.CellTemplate>
</GridViewColumn>
</GridView>
</ListView.View>
</ListView>
</Grid>
</Window>
```
And the xaml.cs for good measure:
```
public partial class Window1 : Window
{
public Window1()
{
InitializeComponent();
DataContext = new[]
{
new {FirstName = "Jim", LastName = "Bob"},
new {FirstName = "Frank", LastName = "Smith"},
new {FirstName = "Tooth", LastName = "Paste"},
};
}
}
```
Setting the DataTemplate's Grid's width and height to be larger than the cell with a negative margin can produce a close result, but if you resize the column, the problem shows itself again.
```
<Grid Background="Yellow" Height="22" Width="50" Margin="-6">
```

Is there a way to fill the cell with color?
| Setting Column Background in WPF ListView/Gridview | CC BY-SA 3.0 | 0 | 2009-09-04T15:18:03.603 | 2015-06-20T18:17:08.830 | 2015-06-20T18:17:08.830 | 1,159,643 | 88,340 | [
"wpf",
"xaml",
"listview",
"gridview",
"styles"
] |
1,380,861 | 1 | null | null | 4 | 3,633 | I am writing a program in python to experiment an academic idea. Look at a resultant image the program generates:

The thick skeleton lines in the middle of the leaf is what need to be visualized. Every segment of the skeleton lines has a value associated with it, in the above image (drawn by `pycairo`), different shades of gray are used for visualization, the lighter color means higher value, black lines indicate the lines have value 0 associated with them. The problem is visualization using colors in this case is very unintuitive for human eyes, it would be much better to visualize the values in 3D like the following (taken from a paper):

the left image is a 3D visualization of the right one, the values associated with the lines are visualized as height of consecutive walls in 3D.
What is the best library to do this? I don't want to invest much time into doing this, so a lightweight library is preferred.
| What lightweight python library for simple scientific visualization in 3D | CC BY-SA 2.5 | null | 2009-09-04T18:36:35.527 | 2009-09-04T19:18:31.557 | 2009-09-04T18:53:07.693 | 1,925,263 | 1,925,263 | [
"python",
"3d",
"geometry",
"visualization"
] |
1,381,145 | 1 | 2,038,820 | null | 6 | 9,431 | I have applied following code to my application to change the navigation bar image.
```
- (void)viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
[self.navigationController.navigationBar setTintColor:[UIColor blackColor]];
[self setNavigationBarTitle];
}
-(void)setNavigationBarTitle {
UIView *aViewForTitle=[[[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 45)] autorelease];
UIImageView *aImg=[[UIImageView alloc] initWithFrame:CGRectMake(-8, 0, 320, 45)];
aImg.image=[UIImage imageNamed:@"MyTabBG.png"];
[aViewForTitle addSubview:aImg]; [aImg release];
UILabel *lbl=[[[UILabel alloc] initWithFrame:CGRectMake(0, 0, 305, 45)] autorelease];
lbl.backgroundColor=[UIColor clearColor]; lbl.font=[UIFont fontWithName:@"Trebuchet MS" size:22];
lbl.shadowColor=[UIColor blackColor]; [lbl setShadowOffset:CGSizeMake(1,1)];
lbl.textAlignment=UITextAlignmentCenter; lbl.textColor=[UIColor whiteColor]; lbl.text=@"Mobile Tennis Coach Overview";
[aViewForTitle addSubview:lbl];
[self.navigationItem.titleView addSubview:aViewForTitle];
}
```
See following images. You can see the problem that I am facing.

---

Each view controller of my application has above methods to set the navigation bar background.
How ever, when I push a new view controller to my application. Back button will be appear.
I need back button to be appear. But The image should be behind back button.
Now I am little confused here.
Can you help me regarding this?
Thanks in advance for sharing your knowledge with me.
Thanks a lot.
| UINavigation bar background in iPhone | CC BY-SA 3.0 | 0 | 2009-09-04T19:33:26.020 | 2015-06-20T18:36:21.030 | 2015-06-20T18:36:21.030 | 1,159,643 | 140,765 | [
"iphone",
"xcode",
"uinavigationbar",
"uinavigationitem"
] |
1,382,915 | 1 | 14,309,002 | null | 25 | 7,933 | I have a very simple WPF window - the only thing in it is a right-aligned button. When I resize the window by dragging the left boundary, the button jumps around - a lot. Try it yourself, drag the left boundary back and forth.
Additionally, a black background becomes exposed temporarily during resizes.
In [this](https://stackoverflow.com/questions/1333425/how-to-prevent-controls-visually-lagging-behind-on-resize-inside-tablelayoutpanel) question, I asked a similar question about Windows Forms. The only answer I got suggested that this is fixed in WPF, however, amazingly, not only is it not fixed, but WPF also adds a second visual bug - the temporary black background.
Here's what the control lag looks like; this occurs when I resize the window by its top border (recorded with a camera because screen-cap made it less obvious by making everything slow):

Example of the black border: this was captured while resizing the window; it's only like this for a split second but it's very noticeable:

Am I doing something wrong? How can I have my controls stay visually in one place during resizes? How can I avoid the black border?
: the button ends up in the correct place - it only jumps around during the resize.
| How to fix the WPF form resize - controls lagging behind and black background? | CC BY-SA 3.0 | 0 | 2009-09-05T09:54:34.610 | 2018-10-26T22:24:23.410 | 2017-05-23T11:53:55.947 | -1 | 33,080 | [
"wpf"
] |
1,386,009 | 1 | 1,386,231 | null | 0 | 1,632 | I am using asp.net forms authentication, membership provider and role provider.
You can refer to this [post](https://stackoverflow.com/questions/1372518/asp-net-role-provider-vs-membership-provider).
This post helped me to restrict access of the users to the specific areas of Web application according to their roles.
But the roles are hard-coded in the Web.config file.
I need to read the roles from the asp.net role provider database.
I want to use the database generated by this command:
[`C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727>aspnet_regsql`]
and the following tool:

and [`aspnetdb`] database.
And I want to use microsoft's framework and avoid my own customization as far as possible.
Plz tell me how can I generate authentication and authorization ticket. Better if you can show me some code.
Can anyone help me?
| ASP.NET Role, RolePrivider, ASP.net sql server setup wizard | CC BY-SA 2.5 | null | 2009-09-06T16:06:53.497 | 2009-09-06T17:48:43.167 | 2017-05-23T10:29:31.030 | -1 | 159,072 | [
"asp.net",
"roleprovider"
] |
1,386,411 | 1 | null | null | 0 | 936 | I know this is more high school math(wow been a long time since I was there) but I am trying to solve this programatically so I am reaching out to the collective knowledge of stackoverflow
Given this layout:

Midpoint is my reference point and in an array I have the vector points of all other points (P)
I can get to this state with code of having the light blue area by breaking it into four quadrants and doing a lame bubble sort to find largest(y) or lowest(x) value in each quadrant.
I need to find only the quadrants that outer border fully hits red no white space. For example the lower left and the up right dont have any white space hitting the light blue rectangle.
I am sure my terminology is all off here and im not looking for any specific code but if someone could point me to a more optimized solution for this problem or the next step in what I already have.
Thank you
| Vector math and rectangles | CC BY-SA 2.5 | null | 2009-09-06T19:01:20.197 | 2009-09-06T19:58:23.107 | 2017-02-08T14:15:04.720 | -1 | 144,783 | [
"geometry",
"vector",
"rectangles"
] |
1,386,598 | 1 | 1,391,904 | null | 2 | 2,922 | I'm using the IOBluetooth Cocoa framework to communicate with a bluetooth device. So far I have gotten down the whole process of discovering the device and its services, pairing with it, connecting to it and now I want to send some actual commands, but I'm having some trouble with it. Below is an graphic from the spec for the AVRCP profile that I'm trying to use. You can [view the pdf here](http://www.bluetooth.com/nr/rdonlyres/0cd6930c-302e-4bb8-aca8-199066b47ade/922/avrcpspecv10.pdf).
I believe I need to write an 5 byte value as shown by the image:

Here is the method I have right now that writes the data:
```
- (void)l2capChannelOpenComplete:(IOBluetoothL2CAPChannel*)l2capChannel status:(IOReturn)error {
NSLog(@"Open Complete");
NSMutableData *playData = [[NSMutableData alloc] initWithCapacity:5];
unsigned char ctype = 0x0;
unsigned char subunit = 0x90;
unsigned char opcode = 0x7C;
unsigned char opid = 0x44;
unsigned char opdata = 0x0;
[playData appendBytes:&ctype length:8];
[playData appendBytes:&subunit length:8];
[playData appendBytes:&opcode length:8];
[playData appendBytes:&opid length:8];
[playData appendBytes:&opdata length:8];
usleep(1000);
[l2capChannel writeAsync:[playData mutableBytes] length:40 refcon:nil];
}
```
When that function runs the devices responds with the following hexadecimal value 0x400010.
1. I'm not even sure I'm approaching this correctly!
2. Are the values I'm sending correct according the example in the image?
3. Any help in my endeavor to learn here would be much appreciated!
| Create and send a bluetooth command frame in Cocoa | CC BY-SA 2.5 | 0 | 2009-09-06T20:10:40.337 | 2009-09-08T04:03:26.833 | null | null | 46,540 | [
"objective-c",
"cocoa",
"bluetooth",
"l2cap"
] |
1,389,057 | 1 | null | null | 4 | 8,664 | I'm having trouble with a WCF service. The return type is a semi-complex type which makes reference to various basic types and a base interface that each of those types inherits from.
In my debugging, the total byte size of the serialized message is well under the default 65535 byte threshold. Nevertheless, I have increased the maxReceivedMessageSize attribute to 1000000 and the problem remains.
```
[ServiceContract]
public interface ILoggingService
{
[OperationContract]
NotesInfo ListNotes(NotesQueryOptions options);
}
```
```
[DataContract]
public class NotesInfo
{
[DataMember] public List<TokenizedNote> Notes { get; set; }
[DataMember] public Dictionary<long, User> Users { get; set; }
[DataMember] public Dictionary<long, NoteCategory> NoteCategories { get; set; }
[DataMember] public Dictionary<string, Dictionary<long, IIdentifiable<long>>> EntitiesByToken { get; set; }
}
```
> The server did not provide a
meaningful reply; this might be caused
by a contract mismatch, a premature
session shutdown or an internal server
error. Description: An unhandled
exception occurred during the
execution of the current web request.
Please review the stack trace for more
information about the error and where
it originated in the code.Exception Details:
System.ServiceModel.CommunicationException:
The server did not provide a
meaningful reply; this might be caused
by a contract mismatch, a premature
session shutdown or an internal server
error.Source Error:
```
Line 242:
Line 243: public AxeFrog.Mobile.NotesInfo ListNotes(AxeFrog.Mobile.NotesQueryOptions options) {
Line 244: return base.Channel.ListNotes(options);
Line 245: }
Line 246: }
```
> Source File:
C:\Users\Nathan\Work\Internal
Projects\AxeFrog
System\Source\Trunk\AxeFrog.Mobile.WebInterface\Service
References\LoggingServiceReference\Reference.cs
Line: 244
```
public interface IIdentifiable<TID>
{
TID ID { get; set; }
}
[DataContract]
public class Note : IIdentifiable<long>
{
[DataMember] public long ID { get; set; }
[DataMember] public DateTime DateStamp { get; set; }
[DataMember] public long? UserID { get; set; }
[DataMember] public long NoteCategoryID { get; set; }
[DataMember] public NoteType NoteType { get; set; }
[DataMember] public string Message { get; set; }
}
public enum NoteType
{
Information = 0,
Warning = 10,
Failure = 20
}
[DataContract]
public class NoteCategory : IIdentifiable<long>
{
[DataMember] public long ID { get; set; }
[DataMember] public string Name { get; set; }
}
[DataContract]
public class NoteEntityType : IIdentifiable<long>
{
[DataMember] public long ID { get; set; }
[DataMember] public Type TypeName { get; set; }
}
[DataContract]
public class TokenizedNote
{
[DataMember] public Note Note { get; set; }
[DataMember] public List<NoteSegment> NoteSegments { get; set; }
}
public abstract class NoteSegment
{
public abstract string Render(INoteRenderer renderer, Dictionary<string, Dictionary<long, IIdentifiable<long>>> entitiesByToken);
}
[DataContract]
public class NoteTextSegment : NoteSegment
{
[DataMember]
public string Text { get; set; }
}
[DataContract]
public class NoteEntitySegment : NoteSegment
{
[DataMember] public long EntityID { get; set; }
[DataMember] public string Token { get; set; }
}
```
Note that I have removed the Render() overrides from the abstract implementations of NoteSegment for the sake of readability.


Any insight into what I might be doing wrong here would be appreciated. A Google search yields little in the way of useful answers.
| How do I resolve this WCF exception? | CC BY-SA 2.5 | null | 2009-09-07T12:01:11.197 | 2022-12-31T14:03:55.433 | 2017-02-08T14:15:05.780 | -1 | 98,389 | [
"c#",
"wcf"
] |
1,390,437 | 1 | 1,390,458 | null | 0 | 2,060 | I am seeing some odd behavior in SQL Server [AVG](http://msdn.microsoft.com/en-us/library/ms177677.aspx) calcuation.
On manual calculation, you get `49.277588`
but SQL Server is reporting that the average is `50.9914`
as shown below.
Can someone explain the difference and why this is happening?
You can try out the query on AdventureWorks2008 Database with following query
```
select C.ProductCategoryID, P.ProductSubcategoryID,
AVG(P.ListPrice) as 'Average',
MIN(P.ListPrice) as 'Miniumum',
MAX(P.ListPrice) as 'Maximum'
from Production.Product P
join Production.ProductSubcategory S
on S.ProductSubcategoryID = P.ProductSubcategoryID
join Production.ProductCategory C
on C.ProductCategoryID = S.ProductCategoryID
where P.ListPrice <> 0
group by C.ProductCategoryID, P.ProductSubcategoryID
with rollup
```

Here is the result of Weighted Average calculation in Excel

| SQL Server AVG function oddity | CC BY-SA 2.5 | null | 2009-09-07T18:09:20.540 | 2009-09-07T18:30:24.757 | 2017-02-08T14:15:06.797 | -1 | 4,035 | [
"sql",
"sql-server",
"tsql",
"excel",
"weighted-average"
] |
Subsets and Splits