| Thread | Last Post | Replies |
|
| C# equivalent to VB expression | 27 Mar 2008 15:23 GMT | 4 |
Can anybody tell me what the C# equivalent to VB's Err.Clear() is? As far as I can see, the Err object only exists in VB. But how do you clear the error collection in C# then?
|
| PresentationFramework Assembly location | 27 Mar 2008 15:11 GMT | 1 |
I am trying to compile a code in command line and I get error messages stating that I am missing assembly references. One of the assembly it is complaining about is PresrantionFramework.dll which has Application namespace. By the way, I am using VS2008 attempting to compile a WPF
|
| Handling null values returned via SQL ExecuteScalar() query | 27 Mar 2008 15:10 GMT | 4 |
How do I test for and handle a return of null in the following code? try { OleDbConnection connection = new
|
| unboxing problem | 27 Mar 2008 15:03 GMT | 11 |
I am trying to test if my object is a TextBox and I tried: if (messageOut is TextBox) But I get an error message: The type or namespace name 'TextBox' could not be found (are you missing a
|
| compiling to IL code | 27 Mar 2008 14:11 GMT | 9 |
Could someone tell me how to compile a project to IL code? Let me explain the reason. I have a program which will read a resource file and creates some output. In this scenario, the program doesn't change, but every month, I need to do a new release and and only thing it
|
| csc error | 27 Mar 2008 14:11 GMT | 5 |
When I try to compile a C# application using the command line code I am getting the following error; App.xaml.cs(line,column): error cs0246: The type or namespace name 'Application' could not be found
|
| RSA and Public Private key | 27 Mar 2008 13:26 GMT | 3 |
I have a project where I need to generate a file and then send it with a supplied public key. I've done the file generation, now I'm trying to do the encryption. It looks like I can use RSA, specifically RSACryptoServiceProvider. The problem is that the public key is supposed to
|
| Generating unique incremental integer ID for database tables | 27 Mar 2008 13:02 GMT | 8 |
I can imagine this question has been brought up before but I've spent all morning trying to find what I need on google without success. My application sits on Mysql or MS sql server engines and to date I've just been using auto-incremental int64 fields to generate my RecID field.
|
| ToolboxBitmap and resources | 27 Mar 2008 11:26 GMT | 3 |
I have created a new control and I need to pt it in the toolbox. Actually, I have added a bitmap in ma solution and I code: [ToolboxBitmap(typeof(OKButton), "button_ok.bmp")] public class OKButton : Button
|
| Listview with column item's as tree's | 27 Mar 2008 11:04 GMT | 3 |
How do I add the ability to combine listview with treeview? I want to have a list view but with some items in some columns to have the ability to act as a tree instead of just a single item. (like, say, how outlook express does it with its message headers)
|
| Framework 3.5 and Windows 2000 | 27 Mar 2008 10:42 GMT | 4 |
Is Windows 2000 compatible with .net Framework 3.5 please ? Jean-Luc !
|
| LINQ and MS Access | 27 Mar 2008 10:36 GMT | 11 |
I've JUST move to Vista, VS 2008, C# from XP, VS.net 2002, VB & C++ so I'm on a steep learning curve. I'm currently developing a C# Web App project in VS 2008. I need to query an existing MS Access data base. I thought LINQ would be the way to go.
|
| Drag and Drop in a ListView | 27 Mar 2008 08:16 GMT | 5 |
I wrote an C# application that uses drag and drop to copy the contents of one ListViewItem to another. I call DoDragDrop() in the ItemDrag event handler, however, the ItemDrag event is being fired when an item in the ListView is clicked to select it instead of being fired when ...
|
| Disable DataGridView cell highlighting | 27 Mar 2008 07:26 GMT | 1 |
I have Text box controls and DataGridView control in WinForms form. DataGridview contains custom ComboBox columns and standard TextBox columns. Edit mode is EditOnEnter. When focus is moved out of DataGridView, its current cell is displayed as
|
| search my DataColumn object | 27 Mar 2008 07:22 GMT | 1 |
hey all, what's the best way to search my DataColumn object to see if a column name "contains" a certain string value? thanks,
|