| Thread | Last Post | Replies |
|
| datagrid and checkbox | 15 Feb 2007 01:56 GMT | 1 |
I have the following situation. In the aspx page, I have a datagrid and getting values from the database. I am displaying checkbox in each row of the grid. At the top of the
|
| GridView and View Top 5/View All | 15 Feb 2007 00:02 GMT | 5 |
I want to have a button to view top 5 and toggle to view all on my gridview. Can this be done using paging? I don't want to show page 1, 2, 3. Just the top 5 or all. Or am I going to have to postback and change my query? If I do that I will
|
| My ListView displays System.Object[] | 14 Feb 2007 22:56 GMT | 2 |
the code below displays System.Object[] in (columnCount) of my listview. the arraylist (qResults) consists of objects which are arrays, such as: object[] rowArray = new object[numberOfColumns]; i know it's something trivial, but i'm trying to figure this out at
|
| reference type parameter and property | 14 Feb 2007 22:51 GMT | 3 |
I am trying to pass an object as a reference parameter in a constructor. I would like my class with the reference parameter constructor to be able to change the value of that object from one of its methods as in the following example.
|
| Run a SQL Query | 14 Feb 2007 22:47 GMT | 2 |
How can I run this query against a table in my Access database? I don't know hwo to use it in C#. In VB I would use .Recordset = "some sql statement". How do I do this in C#? //I get a vlaue form a cell and apply it to the SQL statement
|
| Problems with nullable DateTime | 14 Feb 2007 22:31 GMT | 4 |
Why won't this work? What do I need to do to make it work? DateTime? DateMember; if((DateTime.Parse(oldRow["datemember"].ToString) == null)) DateMember = null;
|
| need help w/ multi-threaded, multi-CPU tick count / stopwatch | 14 Feb 2007 22:24 GMT | 5 |
So I have a motherboard with multiple CPU sockets. It seems that if I create a StopWatch on one thread and then call the Elapsed member from a different thread that sometimes I get a tick count that's a million miles away.
|
| C# code for inserting values into database sql server2005 | 14 Feb 2007 21:14 GMT | 1 |
please send me C# code for inserting values into database sql server2005
|
| how to fight a password cracker | 14 Feb 2007 20:40 GMT | 3 |
Using pdflib library in C# I have created a pdf file which is protected using owner password .Different options are disallowed like print, copy contents etc. Things were working very fine untill i came to know about some password crackers which could easily crack the
|
| Sort and BinarySearch on custom class? | 14 Feb 2007 20:26 GMT | 2 |
With the example below, would it be possible to perform a Sort, then a BinarySearch on the structure? I have achieved the same result using a <string> but not with a custom type.
|
| Open Source Accounting Application | 14 Feb 2007 18:46 GMT | 6 |
I am looking for an open source accounting application written in C#. I have looked at maybe doing something with Accounting Express, but I wanted to know some opinions. The reason I am looking for open source is that this package is the same
|
| Getting an image from WebBrowser [URGENT] | 14 Feb 2007 17:23 GMT | 1 |
I have a WebBrowser control in a windows application and I need to get an image from its id. I tried getting it from Internet Explorer cache, by GetUrlCacheEntryInfo, but it doesn't work; i think that the cause is why my picture is generated by a php script and Internet Explorer
|
| not calling the base constructor in user defined Exception | 14 Feb 2007 16:33 GMT | 1 |
I'm trying to write an exception with overloaded constructor, where one will raise an exception while the other will only write to log. However, trying the follwoing did not work throw new NMSTestException("My Message", 0);
|
| Assigning null value to DateTime | 14 Feb 2007 16:23 GMT | 2 |
How do I assign a null value to a datetime variable? DateTime DateNonMember = DateTime.Parse("").ToString(); This doesn't work. I also tried
|
| Capture WebPage as any Image format | 14 Feb 2007 16:16 GMT | 3 |
We are working in a web application and we wanted to capture the full webpage into an image file. FULL WEBPAGE means, the page which is below the visibility of the screen and you need to scroll down the page.
|