| Thread | Last Post | Replies |
|
| Thread.Abort not really aborting thread. | 12 Jun 2007 17:40 GMT | 4 |
Is there any way to force a thread to abort and really have it abort? I have a thread that every once in a while gets hung to so I kill it. Problem is I have a thread that every once in a while gets stuck (I'm working on why that happens) and I want to kill it. I do a thread ...
|
| Data flow | 12 Jun 2007 17:30 GMT | 2 |
Im tidying up some code ive written wich atm is all in the main form. its working reasonably well, uses zedgraph wich is nice, but i need to tidy it up as its become increasingly difficult to work with. although very fluent in C++ etc, im still geting to grips with c#,
|
| Writing a structure to a file (writing it as binary data) | 12 Jun 2007 16:28 GMT | 2 |
Here's a really stupid question - I have a class that I want to write to a file to retrieve later (I've already made the class serialable ). How do you do that? I can't find anything that will let me write out an entire class at once?
|
| problem access insert instruction | 12 Jun 2007 16:05 GMT | 1 |
i don't know what to do really i've seen the code 100 times and it seem right so if anyone can help....this's the code public void ajout_dossier_image(string dossier,string matr) {
|
| Using OLE32 for files drag and drop | 12 Jun 2007 16:04 GMT | 1 |
The history: I have a C# form that must accept files "drag and drop" including Outlook messages .msg. In order to support Outlook .msg file drop, I must use Ole32 (regular .net drag and drop support can't get the content of the .msg).
|
| scroll to top | 12 Jun 2007 15:33 GMT | 1 |
I have a panel, how can I make it scroll to top in my code? Thanks, Ryan
|
| Stream classes | 12 Jun 2007 14:16 GMT | 4 |
Could anyone tell me how far the Stream classes of .net are actually used in actual develpment scenarios ? Or do people mostly just need to use databases to write data ? THanks !!
|
| C# How to access the Connection established in server explorer | 12 Jun 2007 14:05 GMT | 1 |
I have established a connection to the MS Access database in the server explorer now how can get a table from that database to the DataTable variable i created.
|
| How to find the SQL Server 2005 port | 12 Jun 2007 14:02 GMT | 9 |
I am using a System.Data.SqlClient.SqlConnection to connect to a SQL Server 2005 database. I instantiate the SqlConnection with a connection string... SqlConnection sqlConn = new SqlConnection(@"Network
|
| Why is GetOracleDecimal() valid but not GetOracleDateTime() ? | 12 Jun 2007 13:33 GMT | 1 |
In a program I coded: using Oracle.DataAccess.Client; using Oracle.DataAccess.Types; ....
|
| insert xml nodes to another document | 12 Jun 2007 13:11 GMT | 1 |
Two XML's XmlDocument TempDom = new XmlDocument(); TempDom.loadXML("<R Flg='1'><I N='Zero'/></R>"); XmlDocument ResultDom = new XmlDocument();
|
| datagridview - how to retrieve data help... | 12 Jun 2007 13:06 GMT | 9 |
How can I retrieve all of the data from a datagridview? Any help is appreciated. Thanks, Trint
|
| Arrays that are passed by reference | 12 Jun 2007 12:31 GMT | 9 |
If I don't specify "ref" in the argument list when passing an array to the callee, I am passing the array (reference) by value. But this makes me confused because it actually means a "reference" of a "reference"??As I pass the array by value, the callee can change that array. ...
|
| Deploying a WinForms app on Vista | 12 Jun 2007 12:28 GMT | 2 |
I'm looking for some best practice advice on deploying a 32-bit WinForms app on 32-bit Vista as regards file locations. The app will be written in Visual Studio.NET 2005 and will be compiled into a single executable with some values stored in the app.config file - the
|
| Dynamic SQL generation for the UpdateCommand is not supported ... | 12 Jun 2007 11:26 GMT | 5 |
The full error message is "Dynamic SQL generation for the UpdateCommand is not supported against a SelectCommand that does not return any key column information." I am getting this error when updating a table bound to a datagridview (using
|