| Thread | Last Post | Replies |
|
| How to wait | 26 Nov 2006 23:46 GMT | 6 |
How do I tell my application to wait for 2 seconds?
|
| design a webform | 26 Nov 2006 23:36 GMT | 2 |
how to make a well design web pages and web form in ,net as all form ido is very simple iwant to improve it . if there some tools to used in .net or some techneque iheard about css or something like ths .
|
| Why does the try statement (and catch clause) require a block? | 26 Nov 2006 23:33 GMT | 12 |
While the following is allowed: if (a == b) SomeFunction(); else
|
| httpwebresponse / request not sending proper headers? | 26 Nov 2006 23:29 GMT | 1 |
I have the following code: request = (HttpWebRequest)WebRequest.Create(FullPath); request.Headers.Clear(); request.ProtocolVersion = HttpVersion.Version11;
|
| variable scope! | 26 Nov 2006 23:28 GMT | 5 |
Below is a C# program I've made.... it's an app where I experiment with variable scope. In this code you see two variables named i (one is a local variable and the other is a member of the class). This code print out 5 ( Console.WriteLine(i); )... the member variable isn't passed ...
|
| Odd Performance Issue | 26 Nov 2006 22:50 GMT | 7 |
Hi. This is probably not the best place to post this, but I was hoping someone could explain weird performance anomaly. I ran a small test to compare a new X6800 Core 2 Duo build against a three year old P4EE: (Both machines running VS2005)
|
| Hockey Game Development (C#) | 26 Nov 2006 22:37 GMT | 1 |
I am starting to build a hockey game simulator. I am looking for any resources you know of to help me build this application, Specifically these topics. - AI for game play (Text Based)
|
| Help with this sample | 26 Nov 2006 22:13 GMT | 13 |
trying to learn plymorphism. My sample is public class Class1 {
|
| Threading help | 26 Nov 2006 22:05 GMT | 5 |
here is my code. want to use multithreading. Means, want to call DoThread() in a different thread and want output as DefBegin
|
| variable trouble! | 26 Nov 2006 21:48 GMT | 4 |
The code below generates this compile error: Use of unassigned out parameter 'x' using System; using System.Collections.Generic;
|
| Important method in setter. | 26 Nov 2006 21:08 GMT | 6 |
if i have: private a; public T A { get {
|
| Code design ideas? | 26 Nov 2006 20:37 GMT | 9 |
I need some design advice for my web service. I' have written a web service that exposes a function that takes some parameters and return an xml.
|
| C# Class that contains a socket | 26 Nov 2006 18:38 GMT | 6 |
Hello - I'm working on a simple instant messenger application, and I have it working but in order to achieve the results I want I need to make a few changes. The problem is that I have a class that contains a Socket. If I try to assign a socket reference to the socket in the
|
| FIBONACCI | 26 Nov 2006 18:27 GMT | 3 |
Can anyone tell about how to create a FIBONACCI series in VB.Net and C# Thanks in Advance, Veeru
|
| temporarily disable focus changing | 26 Nov 2006 17:25 GMT | 4 |
Is there any method to temporarily disable focus changing?(I assume only method is tab or mouse?) This problem has been tieing me up for a while and nothing seems to work. The only thing that I *know* will work is to disable all tab stops on all controls. This brute force method ...
|