| Thread | Last Post | Replies |
|
| Datagridview with Linq | 11 Dec 2007 17:56 GMT | 2 |
I want to develop a datagridview allowing column selection and filtering, like this: http://www.codeproject.com/KB/grid/GridFilter.aspx This example is using dataset. My question is if:
|
| winmm | 11 Dec 2007 17:25 GMT | 2 |
I'm porting an MFC app to c#/WPF. I can't find any info on a .net equivalent to winmm. Do I have choices other than p/invoke? Is there a .Net mm library out there I'm just not finding?
|
| Stumped here! | 11 Dec 2007 16:56 GMT | 3 |
I have just installed studio 2008 and created a new winforms app. I have added a sql express db to the project with 1 table called LogEntries containing 2 columns: LogEntryID (int, auto inc) and LogEntryData (nvarchar MAX)
|
| quotation marks in sql statement | 11 Dec 2007 16:14 GMT | 12 |
In my sql statement, i have to use field names and table name with quotation marks. like that : -----------------------------------------------------------------------
|
| Excel add-in in C#: How to format the cell? | 11 Dec 2007 16:12 GMT | 3 |
Is it possible to write an Excel function that no only returns a value, but also formats the cell in a certain way. An example of such a function is "=today()" with formats the cell as a Date.
|
| ListView SelectedIndexChanged and accessing the previous value | 11 Dec 2007 16:08 GMT | 2 |
I'm using VS.NET 2005. I have a ListView populated with data pulled from a SQL Server database. I have wired up a SelectedIndexChanged event, but I can't find any way of retrieving the value of the previously selected record.
|
| SelectedIndex Within EditCommandColumn | 11 Dec 2007 14:55 GMT | 1 |
I have a DataGrid and a column that changes into a DropDownList when edited: <columns> <asp:templatecolumn headertext="Role Type">
|
| multipart/form-data form posting | 11 Dec 2007 12:54 GMT | 1 |
got a form in html <form style="display: inline" enctype="multipart/form-data"> <input name='inputXML' > assinging an xml string to inputXML and posting the form
|
| array of arrays | 11 Dec 2007 12:32 GMT | 2 |
hi all, i'm calling a method that returns an array of arrays [???] = id, title, desctiption e.g. [0] = "1000", "aaa", "some text"
|
| Getting Internet Explorer Security Settings | 11 Dec 2007 12:21 GMT | 5 |
Hi, I have an application that uses embedded IE windows, which doesn't work if the user has set their IE security settings to high. Is there any way to programmatically obtain the security settings for Internet Explorer for the current user?
|
| C# Rijndael encryption. When decrypting I get junk data in the first block | 11 Dec 2007 11:39 GMT | 4 |
I've got a strange problem... I've made a simple program to test encryption/decryption. I use Rijndael encryption and here are the most important properties. RijndaelManaged cipher = new RijndaelManaged();
|
| DropDown Boxes for data entry of fixed fields | 11 Dec 2007 10:56 GMT | 8 |
I have a program I am trying to write using Visual C#, SQL Server 2005/2008, and Visual Studio 2008, and one part of it includes a Schema called Client. Inside this schema, three tables exist named Country, MedicalCondition, and Customer.
|
| Regex - Matching URLS | 11 Dec 2007 10:27 GMT | 2 |
I am using the following function to match any URLS from within a string containing the html of a webpage: public List<string> DumpHrefs(String inputString) {
|
| TabControl flicker issue | 11 Dec 2007 09:28 GMT | 1 |
I have a very simple form containing a TabControl with 2 TabPages. The Dock property for TabControl is set to Fill. TabPage1 contains a TreeView with some nodes. Tabpage2 is currently blank. The problem is when i resize the Form, lot of flickering happens. (I
|
| using Assembly.Load / Statics / Singelton-Objects | 11 Dec 2007 08:55 GMT | 3 |
I can create types from dynamic loaaded assemblies (Assembly.Load) with Assembly.GetTyp( <typename> ) - OK I need a reference to the assembly (just Type.GetType() do not work ) now my question.
|