Groups | Blog | Home


Archived Months
June 2003
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
January 2007
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
December 2007
January 2008
February 2008
March 2008
April 2008


all groups > c# > june 2007 > threads for sunday june 24

Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30

Display Linked-List in a DataGridView?
Posted by bern11 at 6/24/2007 11:26:13 PM
How do I set a linked-list as a data source for a DataGridView control? Should the linked list be a member on a form or its own global class (or doesn't matter...???) Right now when I set the list as the data source, the only columns I get are Count, First, and Last. I want data from th...more >>

Remoting
Posted by Jayme.Pechan at 6/24/2007 11:09:49 PM
I realize this is a complicated scenerio to explain so hopefully it will make sense. I have an object that I create an instance of on a remote server. I can call functions on this object with no problem but one of the things that I'd like to do is create an instance of a different object on ...more >>

What'll happen to Java when...
Posted by cat_dog_ass at 6/24/2007 9:45:42 PM
....Microsoft ports the .NET framework to other operating systems? Will the only advantage that Java has over .NET be lost? I've been a Java programmer and will be shifting to .NET soon. Is this a wise choice? Is the learning curve for C# a lot flatter than Java? ...more >>

new c# student
Posted by drg62 NO[at]SPAM sbcglobal.net at 6/24/2007 9:37:25 PM
I am a new student of c# (I have just finished Java 1 and have quite a bit of experiance in HTML, DHTML, XHTML and CSS) and would like to know of some good supplemental textbooks or reference books to help with my studies. Keep in mind that I am taking 100% internet courses, working towards...more >>

How to pass textBox.Text to Sql query
Posted by Tim Sprout at 6/24/2007 6:36:20 PM
I want button1_Click on Form1 to send a query using the textBox1.Text string as part of the query. I want to populate a dataGridView from an Access database file. I am trying to build a search box with the textBox1. How do I pass the textBox1.Text string to the query? The query string below gives...more >>

KeyUp events
Posted by Ben at 6/24/2007 6:03:59 PM
Hello, I'm trying to catch the pressing of the left and right arrow keys through the KeyUp event, like so: public Form1() { InitializeComponent(); Form1.ActiveForm.KeyUp += new KeyEventHandler(ActiveForm_KeyUp); } void ActiveForm_KeyUp(o...more >>

Creating strings using Console.WriteLine format
Posted by dan.goyette NO[at]SPAM gmail.com at 6/24/2007 5:20:49 PM
Hello. I'm new to C#. I've searched this group, and tried other google searches, and have not found an answer to this question already. The question is pretty simple. I like the Console.WriteLine format of passing a string containing {0}, {1}, etc, followed by a parameter list of values. For e...more >>

Making a Part of code to be executed once
Posted by sravan_reddy001 at 6/24/2007 5:02:32 PM
I hav a method which is called repeatedly. i want a part of that code to be executed once. this can be possible with the help of ---- if() and a flag ---- is there any other method to do this. That part of code should be present in the method. ...more >>



Typed Dataset with multiple tables
Posted by Gugale at Lincoln at 6/24/2007 5:01:57 PM
Hi, I have generated a typed dataset containing two tables in vs2005. Tables have one to many relationship. I would like to populate both the tables using preferably just one call to stored procedures which return data for both the tables. What is the best way to do it? Do I need to write c...more >>

recursive GetEnumerator()
Posted by colin at 6/24/2007 4:04:05 PM
Hi, is it possible to have a recursive GetEnumerator for traversing a tree structure ? public IEnumerator<DType> GetEnumerator() { return GetEnumerator(root); } public IEnumerator<DType> GetEnumerator(node p) { if(p.low!=null) GetEnumerator(p.low); yield return p.val; ...more >>

variables entre formularios
Posted by Marcelo at 6/24/2007 3:46:00 PM
tengo un gran problemita... les comento que en vb yo utilizaba el Public Shared para poder utilizar el valor de ese objeto en cualquier formulario, ahora quiero hacer algo parecido en C# pero no se como, alguien me puede ayudar???... ej: en vb es: Public Shared matricula As String en c#...more >>

VSS problem in using same projects in differenet solution
Posted by Manikandan at 6/24/2007 3:12:44 PM
Hi, I'm copying projects from a solution in the vss. In my local system i created solution ,added that project(make modification related to solution) When i added this solution to vss, projects are referred to the original solution not from my new solution I will explain more clearly i hav...more >>

Horizontal Scrollbar on Panel Control
Posted by Rahvyn at 6/24/2007 11:46:00 AM
Hi All; I am building a Windows form with multiple panels. I have a large panel as the base on the form, with a tab control on top of it, docked to fill, and multiple panels on the tab control. The base panel is docked to top of the form, with another panel below it, docked to the bottom. I...more >>

Has anyone new Tarantino movie?
Posted by semen_konkin NO[at]SPAM mail-dot-ru.no-spam.invalid at 6/24/2007 10:00:30 AM
Has anyone seen new Tarantino film? ............................................................... wanna watch this site... But not often 2 [url=http://xxxcockring.info/221.html]2[/url] [url=http://xxxcocksite.info/9.html]2[/url][url=http://xxxgirlsuck.info/138.html]2[/url][url=http://t...more >>

Generic Interface Implementation in C# Orcas Beta 1
Posted by Donald Xie at 6/24/2007 6:26:01 AM
In C# 2, this works just fine: public class foo : IEnumerable<string> { private string[] _list; public IEnumerator<string> GetEnumerator() { foreach (string s in _list) yield return s; } } However Orcas complains that: 'myNS.foo' does not implemen...more >>

Handling a running Process
Posted by sravan_reddy001 at 6/24/2007 2:13:44 AM
I want to handle a running process. ex: explorer.exe How can i handle that process(explorer.exe). and is it possilbe to stop that process from runing. ...more >>

Handling a running Process
Posted by sravan_reddy001 at 6/24/2007 2:13:18 AM
I want to handle a running process. ex: explorer.exe How can i handle that process(explorer.exe). and is it possilbe to stop that process from runing. ...more >>

Best book for learning C# when you master VB already
Posted by Klaus Jensen at 6/24/2007 12:00:00 AM
Hi I have been using VB.net for years. I have not had any practical experience with C#, but now I want to learn, to keep growing as a programmer. Can anybody recommend a good starter-book for me? Thanks in advance Klaus ...more >>


DevelopmentNow Blog