| Thread | Last Post | Replies |
|
| Controls look different in Design View then in the program. | 10 Nov 2006 17:53 GMT | 4 |
I am working in Visual Studio 2005 using C#. The program I am working on used to use the 1.1 framework, but then we upgraded to VS 2005. I've noticed that every time we put a windows form control in (such as textbox, checkbox, groupbox, etc) they look like standard .NET 2.0
|
| Reading Excel dates into C# come out as "weird" ints - help? | 10 Nov 2006 17:37 GMT | 2 |
I'm using an adaptation of excel-reading code that's all over the internet - I don't much like or understand it, but it has worked for me in the past.... beggars can't be choosers... : Excel.Application excelObj = new Excel.Application();
|
| GPU Processor Abstraction... | 10 Nov 2006 16:47 GMT | 1 |
There's been increasing talk about how much better GPUs are at math-intensive apps. GPUs today rival supercomputers of 7 years ago. Example: http://hardware.slashdot.org/article.pl?sid=06/11/09/2056233 When the people over at the Folding@Home (protein folding distributed
|
| selecting a datatable | 10 Nov 2006 16:37 GMT | 1 |
I have two datatables in which I am looping through one table and selecting rows from the other tables that match and then deleting those matches. Once I delete a row and I try to select another row I get an error that says "This row has been removed from a table and does not ...
|
| Quick Newbie Inheritance Question | 10 Nov 2006 16:35 GMT | 10 |
Hi I was wondering if anyone could help me with the best approach for the following. I have an class called say BigClass with lots of bits and pieces in it.
|
| Handle the form closing when the user clicks on the "X" button (form caption bar) | 10 Nov 2006 16:03 GMT | 2 |
suppose that you have a C# form with two buttons, that are the classical "btnOk" and "btnCancel" (besides them, of course in the form there can be many other controls). When the user clicks on btnOk, the program makes some confirm
|
| passing object to method doesn't update object | 10 Nov 2006 16:03 GMT | 7 |
I was under the assumption that if you pass an object as a param to a method and inside that method this object is changed, the object will stay changed when returned from the method because the object is a reference type? my code is not proving that. I have a web project i ...
|
| how to redact image in web application. | 10 Nov 2006 15:47 GMT | 3 |
Hello friends can any body tell me how to redact image in web application. thanks, Sachin.
|
| c sharp | 10 Nov 2006 15:39 GMT | 3 |
|
| Data types chart | 10 Nov 2006 15:35 GMT | 2 |
I'm looking for a reference chart that shows the .Net data types along with their equivalent names in C# (and possibly VB.Net). By this I mean something that has things like "Int32 -> int" and so on. Does anyone know of such a chart?
|
| Validating Integer Problems.... | 10 Nov 2006 15:29 GMT | 3 |
Hi Experts ! I have a Winform Program in C# / .NET 2.0 I would like to ensure that a value in a TextBox is a valid Int32 when user get out of it (TextBox loose focus)
|
| Windows communication foundation | 10 Nov 2006 15:28 GMT | 2 |
I am about to start on a new project. It is a server app running as a win32 service. I was thinking about using remoting to create a user interface (web based) to this service. Now that WCF is released should I use that instead of .Net remoting? What is the advantages of ...
|
| DataRow throwing exceptions.... but not setting HasErrors? | 10 Nov 2006 15:25 GMT | 2 |
I'm just learning ADO.NET 1.1 and I'm getting some real stinkers. I've got a wonderful screwup going on - I'm loading my datatable with a new datarow. I used BeginLoadData before I added the row because I need to bind to that row in the datatable. I the use "BeginEdit" on
|
| Updating VS 2003 to C# 2.0 | 10 Nov 2006 15:18 GMT | 4 |
I've searched around and have come up empty. At home I have VS 2005 with the C# 2.0 libraries but at work I have VS2003 that does not. Is there a way to just update the VS2003 C# libraries? My employer is to cheap to by the VS 2005.
|
| Server-based timers working. | 10 Nov 2006 15:11 GMT | 1 |
can anyone tell me how server based timer in .net works? Which one of either system.timers.timer, system.threading.timer is better for use in windows service. How worker thread call elapsed event. Will it depend on any of system
|