| Thread | Last Post | Replies |
|
| error with 'SqlDbType' all the sudden, without changing/was working... | 13 Sep 2007 19:23 GMT | 1 |
This code was working just fine and all of the sudden, I get this error on 'SqlDbType': "The name 'SqlDbType' does not exist in the current context" Here is the code where it happens:
|
| Refresh Issue Winform C# 2.0 | 13 Sep 2007 18:46 GMT | 4 |
I have a form that can process 100s to 1000s of images. I have a progress bar also. when I click on the process button the progress bar works fine until If I open a window infront of my form then No refresh is happening
|
| MDA Loader? | 13 Sep 2007 18:40 GMT | 5 |
LoaderLock was detected Message: Attempting managed execution inside OS Loader lock. Do not attempt to run managed code inside a DllMain or image initialization function since doing so can cause the application to hang.
|
| Debugging referenced project | 13 Sep 2007 17:58 GMT | 3 |
What do I have to do to be able to debug an external project referenced by another project? I have a project that references several other projects. For some of the external projects, I can hit "goto class definition" and I get the code in the referenced project
|
| DataGridView Disappears | 13 Sep 2007 15:59 GMT | 2 |
Can anyone tell me what's happening here. I have a Windows form with a docked DataGridView. The following handler handles a click on a toolbar button: private void toolRun_Click(object sender, EventArgs e)
|
| Cursor.Current bug? | 13 Sep 2007 15:38 GMT | 1 |
According to the docs, setting Cursor.Current will change the cursor being displayed, and block mouse events: "Setting the Current property changes the cursor currently displayed, and the application stops listening for mouse events. For example, you
|
| TabControl question. | 13 Sep 2007 15:07 GMT | 2 |
I am writing an application where I will have a TabControl and 3 styles of Tabs to go in it, each containing different controls. The tabs will be added to the tabcontrol when items are clicked on in a TreeView. So the the application starts by displaying no tabs and adds them in ...
|
| print picture | 13 Sep 2007 14:54 GMT | 2 |
How to print picture from pictureBox? Hrcko
|
| C# and WebBrowser component question | 13 Sep 2007 14:31 GMT | 5 |
I have an app with a WebBrowser component and I'm setting the the ObjectForScripting component so the object can be used from javascript. The object has a Scripting.Dictionary property. My problem is that in javascript I have to use "external.dictionary.Item('x')" to get the
|
| passing XmlDocument Object to another domain by reference | 13 Sep 2007 12:54 GMT | 2 |
Hi Guys I am dynamically loading assembly in another domain and want to pass xmlDocument to newly loaded assembly by reference in c#, but the xmlDocument is not serializable,so cant do it
|
| Export GridView to Excel | 13 Sep 2007 11:36 GMT | 1 |
Is it possible to export a gridview to excel? If so, how is it done?
|
| Sockets - Multiple clients | 13 Sep 2007 10:15 GMT | 1 |
Hi, I'm relatively new to socket programming and I'm having trouble understanding them! I've (using help from tinternet and a useful tutorial) made a client and server that are able to talk to one another. The problem is when I
|
| Serious Serialization problem | 13 Sep 2007 08:40 GMT | 1 |
I've made an inherited ListView control with a customized ColumnHeader Type. I've overwritten the Columns property with a collection of my custom ColumnHeader items. Now I would like to implement serialization so that columns are persisted from designtime to runtime. But I cannot ...
|
| creating ManualResetEvent in thread | 13 Sep 2007 08:33 GMT | 9 |
I read somewhere "using kernel stuff in thread is not good.." if ManualResetEvent object is created in thread but not actually used, will it affect performance? Bob
|
| Word interop | 13 Sep 2007 08:32 GMT | 2 |
A question about how to use 'Microsoft.Office.Interop.Word'. I'm trying the following code: Application app = new Word.ApplicationClass(); Document doc = app.Documents.Open(ref templateFile,...);
|