Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
2answers
10k views

Visual Studio 2008: How to install an item template

I have created an Item Template using the "Export Template" wizard. I opened up the XML file and made a couple of minor changes, then rezipped the package. Then I checked the item template into source ...
7
votes
1answer
539 views

Android In-App billing item price

How can the price of an in-app billing item be retrieved before actually displaying the android market frontend for the in-app purchase? Currently it looks like the user only can find out the price ...
6
votes
3answers
10k views

android listview item height

Why when i use SimpleCursorAdapter for ListView i have items height in ListView like this - (My code based on this) But when using arrays Listview items have big height (I learn listview based on ...
6
votes
3answers
8k views

WPF ComboBox with empty item?

Suppose we have a DataSource bind to a collection from Database. There is no null item of course. How to add a void item into a ComboBox, so that at first load user would see an empty string. I don't ...
5
votes
2answers
544 views

WPF ListBox setting focus to first item after losing focus

Problem: I'm having trouble managing focus and item selection in a WPF ListBox with an embedded ListBox and some custom selection management in the code behind. Background: The "parent" ListBox is ...
5
votes
4answers
2k views

Android: ListView, Last item - Show more

I have an issues, I want to show 20 items in the list. But there is a catch: if the user scrolls down to the bottom of the list, there will be an item that says: "Show more items", and when the users ...
5
votes
5answers
3k views

(WPF) Animate ListView item move

I would like to have an animation when an item in ListView changes position, so it would slowly move to the new position. Either in a template or in code. I've tried descending from a ...
5
votes
2answers
14k views

Dynamically change GridView item template

I have a fairly big asp.net website that use GridView bound to the same object in lots of places. I'm using an item template to customize each row. However to have the same template in all the pages I ...
4
votes
1answer
281 views

How do I make a Menubar Application with a NSPopover?

I have seen a lot of applications with a Menubar Item or applications with only a Menubar interface. There are some tutorials and stuff on the internet showing you how to accomplish that. But the ...
4
votes
2answers
83 views

List Python Operation

I got this list: input = [[1,2,3,4],[5,6,7,8],[9,10,11,12]] I want to make new lists with each index item: i.e. output = [[1,5,9],[2,6,10],[3,7,11],[4,8,12]]
4
votes
2answers
342 views

How to create ComboBox like UserControl in WPF

currently I'm trying to build an usercontrol wich is able to take elements from XAML like this: <ComboBox > <ComboBoxItem /> <ComboBoxItem ...
4
votes
4answers
2k views

Access random item in list

I have an ArrayList, and I need to be able to click a button and then randomly pick out a string from that list and display it in a messagebox. How would I go about doing this? Any help at all is ...
3
votes
2answers
432 views

OpenCL synchronization between work-groups

I have question, It's possible to synchronize OpenCL work-groups? For example, I have 100 work-groups every work-groups have only one item (don't ask my why, this is an example) and I need to put ...
3
votes
1answer
152 views

Changing the Location of Solution Items in VS2010

I am using VS2010 Ultimate on Windows server 2008, running 1000 odd MSTest unit tests. The .testsettings file that the solution uses to configure data collection (code coverage, impact analysis, etc) ...
3
votes
2answers
778 views

Appending an item to a jQuery UI autocomplete

Currently, I'm using jQuery UI autocomplete on a textbox that references an ASHX file. Everything is working propertly, except I want to append an item at the end of the list that reads: "Item not ...
3
votes
3answers
400 views

Class with indexer and property named “Item”

Is it possible to create a class in .NET 4 with: 1) An indexer 2) A property named "Item" ? For example, this C# class will not compile for me: public class MyClass { public object Item { ...
3
votes
1answer
321 views

How to select an QGraphicsItem without selecting whole group (to which this item belongs)

I wonder if it is possible to select item that belongs to one group, without selecting whole group. What I trying to make is a group of items, that can be moved (all items are moved together) but ...
3
votes
2answers
1k views

Android Menu Item Title not displaying

I've been fiddling with android, and I've been following the menu sample, and it runs almost fine, but the "title" field of the menu items isn't displaying. I think it's related to this question: ...
3
votes
1answer
1k views

Move an item inside a list? [Python]

In python, how do I move an item to a definite index in a list? Thanks in advance for the reply.
3
votes
2answers
586 views

Method for SharePoint list/item locking across processes/machines?

In general, is there a decent way in SharePoint to control race conditions due to two processes or even two machines in the farm operating on the same list or list item at the same time? That is, is ...
3
votes
1answer
227 views

Access a custom ListView item

l'm new here so hope to follow guidelines as I'm a newbie for both the side and android. For my first app I'm trying to make a world clock. In order to check it the time is shown and update in ...
2
votes
5answers
101 views

How to remove item from a python list if a condition is True? [closed]

Possible Duplicate: Remove items from a list while iterating in Python I'm trying to remove an item from a list in python: x = ["ok", "jj", "uy", "poooo", "fren"] for item in x: if ...
2
votes
1answer
105 views

Duplicated layout reference in list view

There is an really weird thing happening with my listview. I am creating an ListView with buttons and an editText. It's disposed like this: [Button] [EditText] [Button], The buttons works like an ...
2
votes
2answers
238 views

String array list display problem

I have create to String array one is "word" another is "sentence". <resources> <string-array name="word"> <item> the</item> <item> a</item> ...
2
votes
1answer
162 views

overriding items in android's style

I have an android library with themes, attributes, styles, colors and of course code. For things like separator's height' colors of items etc.. i have the ability to override dimentions using ...
2
votes
1answer
153 views

WPF ListViewItem Width binding is not working as expected

I am having a problem with getting the listviewitems to size to the space available to it in the second column of a grid. I have a ValidationItemError class that can have a long description. This is ...
2
votes
1answer
659 views

Square shaped layout border with round inside edges

I’m attempting to create a layout border with corners that are square on the outside and round on the inside. I’ve gathered that I need to create an xml drawable definition composed of two shapes: one ...
2
votes
2answers
258 views

Remove item from object [closed]

Possible Duplicate: How to remove a property from a javascript object Did anybody know, how i can remove an item from an object? Like this: var test = {'red':'#FF0000', 'blue':'#0000FF'}; ...
2
votes
2answers
246 views

change listviewitem tooltip to balloon

is there a simple way to set the tooltip property of a listview item to be a balloon? Typically all i would do is: Tooltip tt = new Tooltip("This is a tooltip"); tt.isBalloon = true; but how do i ...
2
votes
2answers
112 views

Sitecore adds several orphan items whenever an item is added

In my Sitecore 6.1.0 installation I have hooked onto the "item:added" event by implementing my own custom handler as follows (in Web.config): <event name="item:added"> <handler ...
2
votes
1answer
296 views

wpf drag and drop visually select item

I'm using drag and drop in my program and it works well. But i'm working with a list of words in a listbox and when I select a word and drag it to another listbox the user don't know anymore which ...
2
votes
2answers
200 views

python modify item in list, save back in list

I have a hunch that I need to access an item in a list (of strings), modify that item (as a string), and put it back in the list in the same index I'm having difficulty getting an item back into the ...
2
votes
0answers
177 views

First item (imageview) in Gridview has null value for mAttachInfo

I am writing a Android applcaition, using a gridview to load a list of imageview items through a Adapter. It works all fine, except the first item loaded in gridview had null value for its mAttachInfo ...
2
votes
5answers
841 views

How to: Delete duplicate items in listview? C#

Well, I need to check if there exists duplicate items inside listview on my app, but... I don't know how. The way to detect this is by checking the field "Tag", if they are the same, then delete the ...
2
votes
2answers
126 views

Using filter on an item in a list?

I am trying to filter by an item in a list and print them line by line. Here's my code: data Car = Car String [String] Int [String] testDatabase :: [Car] testDatabase = [Car"Casino Royale" ["Daniel ...
2
votes
1answer
426 views

Magento: How to get the creditmemo by order item quote id

i have a increment id of a magento order and a quote id of a order item (i do not mean the order item id) and i want to the all creditmemos that contains a corresponding creditmemo item for that order ...
2
votes
3answers
2k views

Gallery default item selected is in center

I'm using Gallery view within my app. Now when I run the code. Gallery has default selected item is no 1 which is in center and left side is blank. Instead I want no 1 item should be at left and ...
2
votes
5answers
2k views

Flex: spark form item gap

Is there a way to change the space between a spark form item and its content(textinput, conbobox)? I already set to 0 the "gap" property of the form, but still there is a lot of vertical space left ...
2
votes
1answer
1k views

Open context menu by clicking on menu options item

I use Android to make an application. I have an activity where I create an option menu like that : @Override public boolean onCreateOptionsMenu(Menu menu) { MenuInflater inflater = ...
2
votes
3answers
2k views

change color of selected menu tab

so i have grabbed a snippet from another question <script type='text/javascript' > $(document).ready(function () { $("div.content ul li a") .mouseover(function () { var t = $(this); if ...
2
votes
3answers
491 views

Printing Work Items in TFS

I am looking for a fancy way the print individual work items in TFS. OK ... maybe not the work item directly but I need to produce printable forms based on data on a work item. And by fancy I mean: ...
2
votes
3answers
7k views

Set item.selected in ASP.NET Menu Control

ASP.NET newbie here. When on a page I'd like to set the corresponding menu item to selected. My approach is this: On Home.aspx.cs: Menu menu = (Menu)Master.FindControl("Menu1"); if ...
2
votes
1answer
693 views

MSBuild Working with ItemGroup and EXEC Command

I created the ItemGroup shown in the code snippet. I need to iterate through this ItemGroup and run the EXEC command - also shown in the code snippet. I cannot seem to get it to work. The code ...
2
votes
3answers
5k views

Flex: Menubar, menu click

I do not know why but I see that itemclick event on a menubar do not fired unless you click a sub item. What is the clean way to handle clicks on menuitems which are on the top level and do not have ...
2
votes
2answers
2k views

C# - How to get/set ListViewItem or ListViewItem.ListViewSubItem by key?

I have a listview with several items that are created dynamically, each has two subitems that are quantity and code after a query to the database should update the quantity, but to make the code more ...
2
votes
0answers
787 views

Action Parameter POST .. An item with the same key has already been added

I have a little problem in ASP.NET MVC 2 FrameWork 4... Let me explain : I have one class that contains other classes like ... IndexViewData -­­> MemberViewData -> UserViewData public class ...
2
votes
1answer
2k views

How to render a a complex widget inside a tree view item in QT?

I have the following problem with QT model/view framework. I want to render a widget inside a table view item. First my thought was to use void QAbstractItemView::setIndexWidget( const QModelIndex ...
2
votes
2answers
9k views

iPhone: change Navigation Bar title color and back button title color

i want to change the NavigationItem title color. Also i want to the change the text color of back button of navigation bar. Please suggest how can i do this task? i am using iPhone Os sdk 3.1.2
2
votes
2answers
1k views

Applying WPF styles to Child Items

Lets say I have a grid, within my grid I have a number of controls. Instead of setting the margin for each of these controls, I wish to create a style to set the margin for ANY control I drop into a ...
1
vote
2answers
97 views

Swap out ListView item views

I have a ListView that can be in one of two states - viewing and editing. In viewing state, the ListView should use one view to render rows - one with non-editable fields. In editing state, it ...

1 2 3 4 5 6