Hi,
I am using SSIS to transfer data from MS SQl server as data source and Sharepoint list as data destination. Now, I need to fire an update command on the sharepoint list. Please guide me to implement this.
I posted one question on same site ( site Link ) .
Got one solution but i don't know How to modify the sharepoint list content type (which defines new/edit forms) and the view (which defines list views)?
I wanted a list of my modules and was told:
>>> help('modules')
Would do the trick. But I just get
Please wait a moment while I gather a
list of all available modules...
For over 10 minutes before I killed it.
Anyone know what could be causing this? Or how I could otherwise see my modules? (System Ubuntu 9.10/Python 2.6.4)
Thanks,
Dan
Hi there,
I'm building a Magento store and want to be able to display a list of categories and have each category link to its own page.
I have a 'Brands' category with an ID of 42 and I want to display a list of the sub-categories and ensure that each one links to the designated URL key in the CMS.
Has anyone had experience of doing this with Magento?
Thank you.
I have a list like this:
List people
age name
1 bob
1 sam
7 fred
7 tom
8 sally
I need to do a linq query on people and get an int of the number distinct ages (3)
int distinctAges = people.SomeLinq();
how?
how?
Does anyone know of an updated list of refactoring support for different IDEs?
How many of Fowlers refactorings have tool support in popular IDEs?
And does any IDE use code smells to any greater extent?
I guess one would have to use addons for some IDEs, so even if i did find an updated list of refactoring support for say Eclipse, that would probably not be representative.
One to many relationships not working in ZODB as list is mutable.They say solution is Persistent Mapping or Persistent List or BTree.Can someone please tell me how is it exactly done
I'm trying to find a list of TLD's to their corresponding whois server, for example
.com americanWhoisServer
.net someOtherWhoisServer
.au australianWhoisServer
In the end i'm aiming for something like a Dictionary where the key is the TLD and the value is the whois server address (eg whois.apnic.net).
Ah snap, i just realised that i am given the IP addresses and not domain names but a list could still come in handy.
How can i determine which whois server to use given a IP address? Guess and check?
How do I convert a list into an array? The following code returns an error.
public static void main(String[] args) {
List<String> strlist = new ArrayList<String>();
strlist.add("sdfs1");
strlist.add("sdfs2");
String[] strarray = (String[]) strlist.toArray();
System.out.println(strarray);
}
I have the dataset and I want to convert the dataset into List<T>
T - type object
How do I do it my dataset? It has 10 columns, with all 10 properties my object has and it's returning over 15000 rows. I want to return that dataset into List<obj> and loop it how do I do that?
Basically i want to output a div with all the ids in it. I know how to do that especially with jquery but collecting the ids is the problem not the list. I failed at regex although i know how to use it in .NET. How do i write this regex properly? so i can get a list of ids and display it as i want. http://jsfiddle.net/NgmGf/
I have a written a method to get all the records and return in the List Type,
but I got out of memory error.
So I changed return type from List to Enumeration, in the method, instead of ArrayList, uses Vector and return vector.elements at the end of the method.
It works without any error. but I did not understand why.
Could someone explain Why this Enumeration worked?
Let's say I have a list:
a = ['apple', 'orange']
and a dictionary:
d ={'apple': [2,4], 'carrot': [44,33], 'orange': [345,667]}
How can I use the list a as a key to lookup in the dictionary d? I want the result to be written to a comma-separated textfile like this
apple, orange
2, 44
4, 33
Hello,
When using sharepoint designer you can quite easily use current item and perform different actions with it when using workflows etc. However, the options available are limited. I am wondering how to access current item in a list through visual studio 2010 and use and assign values from its fields to variables or items in another list automatically using C# code.
Any help would be most appreciated.
Thanks
Do you often use image marker from google or copy it to your server?
Where I can get all images list of available markers from google?
The list of images such as :
http://maps.gstatic.com/intl/en_ALL/mapfiles/dd-end.png
http://maps.gstatic.com/intl/en_ALL/mapfiles/dd-start.png
Hi,
I am creating a CSV from a list of values. CSV File gets created but the csv is formed as a single column. Actually it should be multiple rows with multiple columns, instead it forms as a multiple rows with a single column. I am using the following code
from random import choice
import csv
fileObject = csv.writer(open('Insurance.csv','w'),dialect='excel',delimiter=' ')
for i in range(0,175):
current_list = list(choice(master_list))
fileObject.writerows(current_list)
current_list = []
Thanks
Hi
I have a list in a div and I would like to change the background image of the parent div (#homepage_container) when I hover over a list item.
here's the site:-
http://www.thebalancedbody.ca/
Is this possible? I'm guessing I'll have to use javascript.
Thanks
Jonathan
How to access List itemRenderer and its properties (Spark - Flex 4)?
I want to iterate through list and do something like (note it's pseudo code):
for (var i=0;i<NUMBER_OF_ITEMS_IN_LIST; i++){
myList.getItemRenderer[i].property
}
How do I get a a complete list of all the urls that my rails application could generate?
I don't want the routes that I get get form rake routes, instead I want to get the actul URLs corrosponding to all the dynmically generated pages in my application...
Is this even possible?
(Background: I'm doing this because I want a complete list of URLs for some load testing I want to do, which has to cover the entire breadth of the application)
does anyone know where can I find a list of keyboard shortcuts for IBM RAD 7 ?
any help appreciated..
Update: just found Ctrl + Shift + L ( list all shortcuts) seems to work..
anyways would like to see some useful ones..
Hi,
I have a list/array and need to process certain elements, but also need the index of the element in the processing.
Example:
List Names = john, mary, john, bob, simon
Names.Where(s = s != "mary").Foreach(MyObject.setInfo(s.index, "blah")
But cannot use the "index" property with lists, inversely if the names were in an Array I cannot use Foreach...
Any suggestions?
I want a dictionary containing the names and text of all controls. Is it possible with predefined framework methods/LINQ/colection initializers or do I have to make a loop and add all entries by myself?
This gives me an error message:
List<Control> controls;
// .. initialize list ..
controls.ToDictionary((Control child,string k)=>new KeyValuePair<string,string>(child.Name, child.Text));