| Thread | Last Post | Replies |
|
| convert DIB to Bitmap | 20 Mar 2006 15:51 GMT | 2 |
I have a native function which returns an image in the form of a BYTE* lpDIB array. How do I convert it to a Bitmap, so that I can work with it properly in C#? Thanks in advance,
|
| Simple Threading Question | 20 Mar 2006 15:35 GMT | 3 |
I have a small program that executes a single very long running background thread today. The scope of all variables in the method that is running in this thread today are all local to the method. The method doesn't do
|
| Anyone familar with .net Oracle programming? | 20 Mar 2006 15:34 GMT | 5 |
I have the following code: OracleConnection ocn = null; ocn = new OracleConnection(ConfigurationManager.AppSettings["ODB_Connectionstring"]);
|
| sql server name | 20 Mar 2006 15:00 GMT | 1 |
How to get the name of sql server that is running in application? In another words, i need the name of sql server that i'm using in my application for getting data. Hrcko
|
| Need help | 20 Mar 2006 14:52 GMT | 1 |
i need to deserialize the xml file in C#. and that file has about 300 nodes? how can i do that. plz help me. its urgent thanks in advance
|
| How to detect a null value | 20 Mar 2006 14:34 GMT | 4 |
What is the correct syntax to detect whether a DataTable Row.ItemArray element is a null value? using: if (row.ItemArray[i] == null )
|
| How to get AllUser's Desktop folder | 20 Mar 2006 13:11 GMT | 3 |
I can use SpecialDirectories.Desktop to Get the user's Desktop folder. But I can't find how to get the Dedktop folder of All user. How can I do?
|
| new Point(-e.X, -e.Y); can someone tell me what the e's do / mean? | 20 Mar 2006 13:02 GMT | 5 |
I understand that Point is an object used for storing co-ordinates, such as mouse location. I can't figure out what the e's do in the above example can someone explain please.
|
| XML Dataset Code Gen Internal Constructors | 20 Mar 2006 12:46 GMT | 2 |
Hey All, I have written a tool that generates XML for a dataset. You know when you add a dataset file to a project, you write the XML and the code gets generated automatically? Well I want this sitting in
|
| add directory to path | 20 Mar 2006 11:11 GMT | 3 |
Dear experts, is it possible to programatically add/remove variable to path?
|
| Passing a variable to a new thread? | 20 Mar 2006 10:49 GMT | 9 |
Ok I'm still very new to C# and I've been searching around and getting myself all confused so gave up and am posting here. Vastly simplified but I have a form with some tick boxes on it, clicking on ok populates an array with the values selected and runs a
|
| random access to elements of a disk-based XML file | 20 Mar 2006 10:47 GMT | 3 |
I am building a WinForms app that uses Web Services access to a server for most of its data input/output, but I also need to persist some of its data to the local disk (basically as a cache of some of the Web Services data) in XML format.
|
| Q: loading Crystal report 10 from file | 20 Mar 2006 09:49 GMT | 2 |
this is my code: LINE_1: CrystalDecisions.CrystalReports.Engine.ReportDocument aRep= new CrystalDecisions.CrystalReports.Engine.ReportDocument(); LINE_2: aRep.Load("c:\rep1.rpt", OpenReportMethod.OpenReportByTempCopy);
|
| WebClient problem | 20 Mar 2006 08:09 GMT | 1 |
I am using WebClient in my Visual Studio .Net 2003 project to download an image from the Internet. The following is my function: C# Code: public static bool downloadFile(string URL, ref string fileName)
|
| DataGrid custom styles | 20 Mar 2006 06:41 GMT | 4 |
I am using ArrayDataView from the following link, my question is how do I apply column styles to this DataGrid that uses ArrayDataView instead of DataSet http://www.codeproject.com/cs/database/BindArrayGrid.asp
|