| Thread | Last Post | Replies |
|
| How to store a bit field from SQL Server | 18 Sep 2006 11:56 GMT | 5 |
Currently our SQL Server 2000 database table field is using char to store as boolean, ie. "T" or "F". Now we change the field from char to bit field. I am not sure how it has impact on the C# code.
|
| Delegates: When and why (besides events and threads)? | 18 Sep 2006 11:42 GMT | 6 |
I've used delegates fairly heavily for several years in C# for event handling and for starting threads. Does anyone have any real-world scenarios where delegates were both extremely useful and extremely appropriate (as opposed to other programmatic
|
| Error referencing key value from web.config. | 18 Sep 2006 11:37 GMT | 3 |
I have a web application which internally calls certain web methods of a web service. This web service has a interop to ATL COM Component and that ATL component calls a .NET assembly. I would like to access a key value in the .NET assembly. I added this
|
| Reduce application working set. | 18 Sep 2006 10:28 GMT | 4 |
i found on the net something that it has to do with the large working set of a .net application, describing the process of the CLR loading and all this stuff. It seems that every time CLR needs memory, it requests a bit more
|
| "sgen.exe" exited with code 1" Error? | 18 Sep 2006 10:12 GMT | 1 |
I have an application that runs well in Debug mode..but when I change to Release mode I get this error Error 48 "sgen.exe" exited with code 1." I don't know why?? thanks in advance
|
| Exit | 18 Sep 2006 09:46 GMT | 6 |
in VB i use Exit Property or Exit Sub what shud i use in C# for Exit Maadhavi
|
| Outlook Redemption problem: Retrieving the COM class factory for component with CLSID {...} failed due to the following error: 80040154. | 18 Sep 2006 09:39 GMT | 4 |
I have a problem with Outlook Redemption, every time I'm trying to create a new RDOAddressBook: Redemption.RDOAddressBook AB = new RDOAddressBook(); I get:
|
| Threading problem | 18 Sep 2006 09:26 GMT | 2 |
Hello, hopefully I can describe this probably correctly. I have what I thought was a simply form that opens a popup (another form) whenever an event happens. My main form, Form A, has an instance of Form B created on it. I set a bunch of parameters and then call a method on Form B ...
|
| Installing new Version fails on some condition | 18 Sep 2006 08:53 GMT | 3 |
i have a setup project, wich is configured so that new versions will automatically uninstall in older version. It all works fine, but the installation fails, if the user selects another application directory than for
|
| Downloading large file! | 18 Sep 2006 05:02 GMT | 1 |
I would like to copy a very large file (80MB) from the web, which is the best approach for downloading such a large file and also how can I show how much percent completed to user. I know I can use webdownload and also before start downloading, the can
|
| Duplicate file checker in C#? | 18 Sep 2006 04:17 GMT | 5 |
Does anyone know of a duplicate file checker project in C#? Couldn't locate anything on CodeProject or SourceForge. Has anyone here considered writing one?
|
| How do you Capture Keyboard shortcuts | 17 Sep 2006 22:56 GMT | 1 |
I have a listBox on my form. When the listBox has focus I want to respond to certain keyboard shortcuts like Ctrl+A that is used to select all contents as in Word, but I want to apply this to the Items collection of the listBox.
|
| How to tell parent window when a child window is clilcked on? | 17 Sep 2006 22:21 GMT | 4 |
What is the mechanism by which a child window can notify its parent that it has been clicked on?
 Signature Richard Lewis Haggard
|
| Problem with File.Copy() - skipping files? | 17 Sep 2006 20:26 GMT | 1 |
I have an application that I want to use for copying files. My goal is to copy a files, if a file is in use or not accessible because of security reasons I want to make note of that file then continue with the file copy process.
|
| Downloading Files - weird problem | 17 Sep 2006 20:19 GMT | 4 |
I have a thread that downloades a file. Problem is : Not all files are beeing downloaded. I observed that only the small files are beeing downloaded correctly. I also cant download two files in a row. I got to Exit and run the program again to even start downloading.
|