| Thread | Last Post | Replies |
|
| A question about definition and declaration | 04 Dec 2007 01:04 GMT | 4 |
I'm reading in a book and they use definition sometimes and declaration sometimes. I just want to use the correct terminologi when I talk about these kind of things.
|
| Checking a string for two constraints | 03 Dec 2007 22:58 GMT | 7 |
I need to check to see if a string contains two different constraints. I currently use this else if statement to look for the first constraints; else if (lines[lineNum].Contains("]CODELINE_INDICATION_MSG")) {
|
| Something about overloading really bugs me | 03 Dec 2007 22:47 GMT | 11 |
As I understand it, one can't overload a function when types/combinations match. E.g. GetEmployeeList(string EmployeeNumber)
|
| Odd ObjectDataSource Issue with Generic List of objects | 03 Dec 2007 22:14 GMT | 3 |
I am new to C# and ObjectDataSources and have encountered what I think is a strange problem. I have a web page that has a formview on it. The formview is set to insert mode in the page load. The ObjectDataSource for the form has a procedure for inserting. Ths
|
| Forcing use of a particular version of the runtime? | 03 Dec 2007 21:05 GMT | 1 |
I recall that this is possible but I can't find any docs on it. Specifically, I want to force an assembly to use a particular version ofthe .NET runtime. I believe this is possible by using properties in the AssemblyInfo.cs file but the documentation on this is a bit lacking IMO ...
|
| Questions about MDI application | 03 Dec 2007 20:47 GMT | 1 |
i would like to write an MDI application with MS VS2005,but i have some preliminary questions. 1)If i place a control,say a button,in the MDI parent's client area,this control will always appear on top of child dialogs.How can i fix it?
|
| Image Generation. | 03 Dec 2007 20:41 GMT | 1 |
i have collection of memorystream. I need to write (generate) an image based on data that is present in all memorystreams. string p = string.Format(@"C:\temp\{0}-Page.gif", messageId); FileStream fs = new FileStream(p, FileMode.Append);
|
| Synchronous Process.Start | 03 Dec 2007 20:26 GMT | 1 |
Currently, this code will return immediately after the process is started. How can I modify it so that it will not return until the process has stopped? using (Process process = new Process())
|
| Design Patterns | 03 Dec 2007 20:09 GMT | 11 |
I am designing the middle tier of a project. It has 6 classes and microsoft application data access block. The six classes are DBServices, Logger, ProjectServices ... etc. and all these classes talk to front-end directly.
|
| add and remove methods to delegate | 03 Dec 2007 19:59 GMT | 2 |
Hello!! I have a simple program below copied fram a book. The program works and there is no problem with it. The last line printed in this program writes Goodnight which come from
|
| C# has a soul mate: F# productized | 03 Dec 2007 19:56 GMT | 3 |
Microsoft have just announced that they are going to productize the F# programming language, placing it alongside C#: http://fsharpnews.blogspot.com/2007/10/microsoft-to-productize-f.html Very cool indeed.
|
| XmlDocument and Xpath | 03 Dec 2007 17:28 GMT | 1 |
I have a xml document that looks as follows: <root> <user domain="domainname">usernamea</user> <user domain="domainname">usernameb</user>
|
| Close and restart program | 03 Dec 2007 16:35 GMT | 2 |
How to shutdown a program and restart it again whitin the program? Rinaldo
|
| HttpPostedFile.InputStream.ReadTimeout | 03 Dec 2007 15:37 GMT | 5 |
I´ve a strange problem with my HttpPostedFile object. I coded a File Upload where the user can upload a zip file. My code looks like this: HttpFileCollection files = Page.Request.Files;
|
| Find the same files on disk | 03 Dec 2007 15:34 GMT | 3 |
Here, there is a challenge: to find the files must be on a local computer, have the same names. Get drives and folders to go through without problems. But what and how to store files while a search?
|