| Thread | Last Post | Replies |
|
| Access to field from a passed object | 30 Oct 2007 03:16 GMT | 1 |
Below I have method MostPowerful which is located in class SportsCar. As you can see the fomel parameter for method MostPowerful is carCompare of class SportsCar. Because this method MostPowerful is a member of class SportsCar
|
| What event is fired | 30 Oct 2007 01:19 GMT | 4 |
in response to clicking the X in the upper right hand corner of a Form?
|
| I heard there is some trick to referencing statics in C# CLR stored procedure without having to mark the assembly as unsafe. Does anyone know this? This is usefull as the case of needing a little static shared variable here and there without having to comp | 30 Oct 2007 01:06 GMT | 3 |
I heard there is some trick to referencing statics in C# CLR stored procedure without having to mark the assembly as unsafe. Does anyone know this? This is usefull as the case of needing a little static shared variable here and there without having to compromise safety in the Sql ...
|
| Database Application Example | 30 Oct 2007 00:25 GMT | 5 |
I'm writing a windows application (using C# VS 2005 Pro) to access a MS SQL database and although it is working fine (up to now) I'm not sure I'm going about it in the best way. Can anybody point me to any good examples online that i can look at, found loads of web applications ...
|
| What is the best possible resolution that C# timing tests can get? milliseconds? nanoseconds? | 30 Oct 2007 00:22 GMT | 4 |
What is the best possible resolution that C# timing tests can get? milliseconds? nanoseconds?
|
| Help! implement a copy constructor ADT queue in C++ | 30 Oct 2007 00:19 GMT | 2 |
how do you implement a copy constructor for this pointer-based ADT queue #include "Queuep.h" #include <cassert>
|
| VOID Keyword (VB vs C# Question) | 29 Oct 2007 23:29 GMT | 1 |
I am currently making the switch from VB to C#. I understand that the VOID keyword allows creation of a function which doesnt require any parameters and doesn't return a value. Is this then, the equivalentof a SUB in VB?
|
| Generic Naming Convention // EnterpriseLibrary way of doing things? | 29 Oct 2007 22:49 GMT | 1 |
Is anyone else using the Microsoft Practices EnterpriseLibrary conventions for naming FILES (.cs) as far as a non-generic and generic implementation is concerned? Anyone have an alternative?
|
| Access to field from a passed object | 29 Oct 2007 22:08 GMT | 1 |
public SportsCar MostPowerful(SportsCar carCompare){ if (carCompare.horsepower > this.horsepower) return carCompare; else
|
| Windows 2003 IIS 6.0-Creating local website | 29 Oct 2007 21:50 GMT | 1 |
Basicall I am trying to create a local folder in IIS 6.0 to display default contents I have put in the C:\inetpub\wwwroot\nocdata default.asp. When I go to http://localhost/nocdata I don't get any content I get a
|
| SetCapture not caputring mouse events for me | 29 Oct 2007 21:30 GMT | 7 |
I mught have misunderstood how SetCapture works, but I call it passing my form's Handle and I am not noticing any difference in what mouse events my app is picking up. It is only limited to mouse events within my control, which is the same way it worked with just setting a mouse ...
|
| Writing to SQL Server 2005 Express Edition not saving from C# App | 29 Oct 2007 21:28 GMT | 2 |
I'm new to C#, so this really easy to answer for anyone that is adept at this... I'm having trouble saving data from my text boxes on a user form to my SQL database. Everything works fine while in debug mode, the data is saved and
|
| DataSet.Delete does not change number of rows | 29 Oct 2007 21:25 GMT | 2 |
I have a DataSet with 4 rows. I use .Delete command to delete a row from it. I use .Count to get the number of remaining rows - still get 4, and if I try to access the rows, I get a 'DeletedRowInaccesibleException' on it. Has anyone seen this kind of
|
| NULL Value | 29 Oct 2007 21:25 GMT | 4 |
Developing C# app using VS 05 to connect to remote SQL Server 05. One form has a textbox bound to datetime column. When I delete the date in the textbox, app locks. I was using Access 2003 to hit the database and this did not cause a problem. Therefore, I know it can
|
| Install MSDE 2000 | 29 Oct 2007 20:51 GMT | 3 |
I am trying to create a setup application using C# that should install MSDE 2000 on the client machine. I googled a little but couldn't find a specific answer. Any pointers on how this can be done?
|