Re: ODBC - Connection failed to Sublist Programming Software Development by jane.frasier …. The link to the table then was (dbo.tSublistc DSN=sublist). I created a very small database that I upsized with… the link just gave (Table1 DATABASE=testconnection) I redid my sublist database and now it is working fine. Thanks to all… searching 2nd item in each sublist - so close! Programming Software Development by marceta … make a loop that compares the 2nd value in each SUBLIST to the values of the original list, then if its… ODBC - Connection failed to Sublist Programming Software Development by jane.frasier …;Driver={SQL Server};" "Server=xxxxMSQL01;" "Database=Sublist;" "Trusted_Connection=yes"** DoCmd.OpenForm "FSublistc"… Re: ODBC - Connection failed to Sublist Programming Software Development by elmer0727 Try using ActiveX: Code: dim DatabaseConnection As New ADODB.Connection DatabaseConnection = "driver={SQL Server};server=ServerName;uid=UserID;pwd=password;database=Sublist" DatabaseConnection.open Hope this help. Re: searching 2nd item in each sublist - so close! Programming Software Development by jrcagle I think you want a dictionary, if I understand correctly. The dictionary is the standard way of mapping one set of items to another. So you have mydict = {URL1: 13, URL2: 0, URL3: 3, URL4: 2, ...} And then you run this bit of code: [code="Python"] for URL in mydict.copy(): if mydict[URL] == 0: mydict.pop(URL) [/code] … Re: ODBC - Connection failed to Sublist Programming Software Development by AndreRet You are using sql server without user name and password authentication. Seems to be your problem right there... Re: ODBC - Connection failed to Sublist Programming Software Development by jane.frasier So what would the syntax be to add that? Re: ODBC - Connection failed to Sublist Programming Software Development by AndreRet Have a look at [THIS](http://www.connectionstrings.com/sql-server-2005) link and choose the connection string that will fit your purpose. You will notice that they all include the username and password inclusions. Re: ODBC - Connection failed to Sublist Programming Software Development by jane.frasier I tried various strings from that link and still not having any luck. Thanks Re: ODBC - Connection failed to Sublist Programming Software Development by AndreRet It was a pleasure Jane. Some rep points for your getting the solution yourself. :) Please mark this as solved, thanx. Java Programming Software Development by xixi.li.7 …; //Node subListLast; int i; if(head == null) { subList.head = null; subList.last = null; subList.count = 0; } else { head = null; current = head… Re: Split a linked list Programming Software Development by kyriacos1986 … (head == null) { sublist.head = null; sublist.last = null; sublist.count = 0; } else if (head.next == null) { sublist.head = null; sublist.last = null; sublist.count = 0; } else… Re: Split a linked list Programming Software Development by kyriacos1986 …(first == null) { sublist.first = null; sublist.last = null; sublist.count = 0; } else if (first.link == null) { sublist.first = null; sublist.last = null; sublist.count = 0; } else… Re: Split a linked list Programming Software Development by kyriacos1986 …head == null) { sublist.head = null; sublist.last = null; sublist.count = 0; } else if (head.getNext() == null) { sublist.head = null; sublist.last = null; sublist.count = 0; } else… Re: Java Programming Software Development by xixi.li.7 … i need to use the public void splitMid(LinkedListClass sublist) so i change like this? public class UnorderedLinkedList&… extends LinkedList<E> { public void splitMid(LinkedListClass subList) { LinkedListClass<T> current;//the head pointer LinkedListClass… Source Code that don't work? Programming Software Development by buggytoast … used as a range operation by operating on a subList view * instead of a whole List. For example…of elements from a List: * <pre> * list.subList(from, to).clear(); * </pre> * Similar idioms … in the Collections class can be applied to * a subList.<p> * * The semantics of the List… Re: Bubble sort an array of objects? Programming Software Development by Taywin … MAX_NUM = 10; public static void main(String[] args) { Subscriber subList[] = new Subscriber[MAX_NUM]; String anyMoreSub; String menuChoice; String askQuit;…System.out.println((i+1)+":"+subList[i].name); } BubbleSort(subList); // then display the subList to see if it is changed System… Re: Bubble sort an array of objects? Programming Software Development by Syrne …MAX_NUM = 10; public static void main(String[] args) { Subscriber subList[] = new Subscriber[MAX_NUM]; String anyMoreSub; String menuChoice; String askQuit;….out.println((i+1)+":"+subList[i].name); } BubbleSort(subList); // then display the subList to see if it is changed System… Issues with my method to split linked lists Programming Software Development by Tankadin …public void splitMid(LinkedListClass<T> sublist) { LinkedListNode<T> current….link; } } sublist.first = current.link; sublist.last = last; last = current; last.link = null; sublist.count = subCount; … Split a linked list Programming Software Development by kyriacos1986 … sublists: myList --> 34,65 and 27 sublist --> 89,12 ---------------------------------------------------------------------------------------- I have made the… myList = new LinkedList<Integer>(); SplitLinkedList sublist = new SplitLindedList(); myList.addLast(34); myList.addLast(… Find difficulty in learning CkEditor Programming Software Development by bhallarahul subList = new ArrayList<String>(); subList.add("Source"); subList.add("-"); subList.add("Bold"); subList.add…("Italic"); list.add(subList); config.… Linked list help Programming Software Development by Jazmine_1 …namespace std; int main() { unorderedLinkedList<int> list, subList; int num; cout << "Enter numbers ending …list.length() << endl; cout << "sublist: "; subList.print(); cout << endl; cout << "… Eliminating Whitespace characters while parsing XML Files using DOM Programming Software Development by parthiban …(0).getNodeName()); System.out.println("sub name 1 :: "+sublist.item(1).getNodeName()); System.out.println("sub name 2… :: "+sublist.item(2).getNodeName()); } catch(Exception e){} } } [/code] Output : [code]root… Re: Mission impossible! Find the bracket problem Programming Software Development by Noliving …obj1, E obj2){ ListIterator < E > iter = theList.listIterator(); subList = new LinkedList<E> (); if (iter >= obj1 &…amp;& iter<= obj2){ subList.add(iter); return subList; } } } >javac OrderedList.java OrderedList.java:62: cannot… Re: Mission impossible! Find the bracket problem Programming Software Development by Noliving … obj1, E obj2){ ListIterator < E > iter = theList.listIterator(); subList = new LinkedList<E> (); if (iter >= obj1 &…;& iter<= obj2){ subList.add(iter); return subList; } } } >javac OrderedList.java OrderedList.java:62: cannot… Why is mege sort O(n log n)? Programming Software Development by Whilliam … (for link list) is constantly divide the list into two sublist until every node->next will point to null. Then… into two, I will divide the left sublist (which has 4) and the right sublist (which also has 4) into two. The… have 2 traversal, as well as the right sublist. Sum it all up, it will be O(8). Then, … Attempting to loop conditions in Python Programming Software Development by James0l9l …']] print m f=input("Index for sublist ") g=input("Index for sublist item ") def errordetection (): print "Please… replace" f=input("Index for sublist ") g=input("Index for sublist item ") while (m[f][g]!='A… Re: Attempting to loop conditions in Python Programming Software Development by James0l9l …']] print m f=input("Index for sublist ") g=input("Index for sublist item ") def errordetection (): print "Please… replace" f=input("Index for sublist ") g=input("Index for sublist item ") while (m[f][g]!='A… Re: Attempting to loop conditions in Python Programming Software Development by James0l9l …']] print lst f=input("Index for sublist ") g=input("Index for sublist item ") def errordetection (): print "Please… replace" f=input("Index for sublist ") g=input("Index for sublist item ") while (m[f][g]!='A… Re: Attempting to loop conditions in Python Programming Software Development by James0l9l …']] print m f=input("Index for sublist ") g=input("Index for sublist item ") def errordetection (): print "Please… replace" f=input("Index for sublist ") g=input("Index for sublist item ") while (m[f][g]!='A…