list

connect custom list with control like combobox

I have table - custom id (like 1.10,1.20) and name (string where values can repeat). And my problem is to set it to winForms control like combobox. But I want to that user in field will see only name and id will not visible but subconsciously should be connect to names in control that when user select item in combobox I can get this id. ...

jQuery FullCalendar - create standard list of events from Gcal

I'm using FullCalendar in a project and the month view is great. But I also need to create a simple unordered list of the events gathered from 4 different Gcal feeds, and I haven't been able to do it. Anyone got any ideas? A quick response would be great. ...

Exporting and deploying sharepoint list definition between servers

I have created a list in sharepoint 2010 and want to somehow export the list definition for use in a feature in visual studio 2010. The reason is so that I can package it and deploy it to another server. Is this the right approach to deploying existing sharepoint artefacts to a different server? ...

GTK list: import text...

Hi, I want add a list in my C program...I know how build a list with GTK+, add string at opened program, etc...but it's different when you want "maintain" the content of list. I thought to save the content in a .txt file (I've two column, 1st contains a string type and 2nd contains int type), but when I open the program, how can I import...

PHP List Explode Variable

Using PHP, I'm trying to give each specific text its own variable. I believe this can be achieved by using the explode list function in php. Something similar to the code below: list($user, $pass, $uid, $gid, $gecos, $home, $shell) = explode(":", $data); However, the above code separates the text by using a colon (:). The text I'd lik...

C# list conversion in asp.net

I have a business object class BusinessObject which implements an interface IAlternateInterface. I already have a method that will return a generic list of BusinessObject which has the objects I want but I want to get them as a list of IAlternateInterface. I tried to do something like the following psudo code but I am getting a "Can not ...

entity framework get data list by role

Hi. I got: public interface IRepository<TE, TK> where TE : class, IEntityId<TK>, new() where TK : struct { IQueryable<TE> Query(); void Create(TE entity); void Update(TE entity); void Delete(TE entity); } The Query method should return a data list via Entity Framework 4 ORM. Use case: I need all august orders...

how to add type in list<T> in c# 4,0

im trying to get datas from database dynamically. i've list<T> select<T>() method... heres my issue i can get datas by using datareader here is code: public list<T> Select<T>() { Type type = typeof(T); ... ... using (SqlConnection connection = new SqlConnection(ConnectionString)) { try { ...

Split and echo into a list

i have a sql table full of address' like this Hattie:07903 000066::Dad:07854 000095::Tom:07903 000044::Allistair:07765 000005::Home:0115 974 0000:: i would like to split each and every one so that the name and number of each contact is echoed into a seprate panel within a listbox like below <ol> <li>Hattie:07903 000066</li> <li>Dad:0...

what is the property for the size of a List in C#?

How do you access the size of a List<> in c#? In an array it's array.length, but what is the property for a List<>? ...

List set index c#

Hey there, I am using a List construct to handle the sequence in which images are drawn in "OnPaint". Now if my images are re-ordered (e.g. "brought to front" or "..to back"), I'd need to reposition them in my List. I have trouble doing so, because List doesn't support a method similar to setIndex(). So what I am trying to do is basica...

how to list a portion of objects in R?

I want to list all objects in R that start with something, like starts with character "A", I only know how to use ls(), is there a way to do so? Thanks! ...

SQL - returning a list of id for every row in the database

Hi All, I have the following query DECLARE @tagIDs VARCHAR(1000) DECLARE @TagValues VARCHAR(8000) SELECT @tagIDs = ISNULL(@tagIDs + ',', '') + CAST(CTTagLookup.tagID AS VARCHAR(1000)), @TagValues = ISNULL(@TagValues + ',', '') + CAST(CTTag.tag AS VARCHAR(8000)) FROM CTTagLookup INNER JOIN CTTa...

PHP / HTML - re organize array

Hi I have a array with ID values like this [2,34,7,46,16,19 ...] etc each ID points to more data which I display with html like: <ul> <li> content from 2 content from 34 content from 7 </li> <li> content from 46 content from 16 content from 19 </li> ... notice that in this case there are 3 entries ...

l_ply: how to pass the list's name attribute into the function?

Say I have an R list like this: > summary(data.list) Length Class Mode aug9104AP 18 data.frame list Aug17-10_acon_7pt_dil_series_01 18 data.frame list Aug17-10_Picro_7pt_dil_series_01 18 data.frame list Aug17-10_PTZ_7pt_dil_series_01 18 data.frame list Aug17...

How do I convert from List<?> to List<T> in Java using generics?

In Java, how do I convert List<?> to List<T> using a general purpose method so that I can replace patterns like the following with a single method call: List untypedList = new ArrayList(); // or returned from a legacy method List<Integer> typedList = new ArrayList<Integer>(); for (Object item: untypedList) typedList.add((Integer)it...

overlapping segments

Hi, i have a huge list of two-element tuples which are coordinates of segments (start, end). In this way in a list below list = [ (1,4), (2, 3), (10, 20), (18, 45) ] there are 4 segments with their start and end localization. I would like to remove segments that overlap. I expect to have a list like this as a result: list = [ (1,4...

How to change the value of an attribute of a bean in list?

I am having a list of bean, now i want to change the value of an attribute of all the beans in the list. For example: class Person{ String name; int age; String attrXYZ; /* accessors and mutators */ } List<Person> lstPerson = getAllPersons(); //set the attribute attrXYZ of all persons in the list to 'undefined' On...

C# WPF treeview filled with recursive built list<> add item at position

Hi I have a TreeView which is filled with a hierarchicaldatatemplate <TreeView Name="DokumentBrowser" ItemTemplate="{StaticResource HierachrTree}" <HierarchicalDataTemplate x:Key="HierachrTree" DataType="{x:Type src:Ordner}" ItemsSource="{Binding UnterOrdner}"> <TextBlock Text="{Binding OrdnerName}"/> ...

Given a list and a bitmask, how do I return the values at the indices that are True?

I start with the following list s and bitmask b: s = ['baa', 'baa', 'black', 'sheep', 'have', 'you', 'any', 'wool'] b = [1, 0, 0, 0, 1, 1, 1, 0] # or any iterable with boolean values How do I write some function apply_bitmask(s, b) so that it returns ['baa', 'have', 'you', 'any'] ...