| Thread | Last Post | Replies |
|
| Returning <List> | 18 May 2007 10:55 GMT | 17 |
I am trying to populate a ListView with a list of 'Models' of cars. I have a data object class for my models, which has a function, 'getListOfModels', which I want to retuyrn a <List> of models. In my data object, I have also created a class to hold each model, as
|
| dropdownlist items | 18 May 2007 08:55 GMT | 1 |
i want to get some values from some range ,i want to send the range from the dropdownlist and to search any records are there in that range and also to display that recoards in gridview.im not able to understand how to give the items in the dropdownlist and how to get the records ...
|
| Trapping process starting/ending? | 18 May 2007 08:54 GMT | 4 |
I need to trap a particular process starting or ending. I have done this using process.start from within my own app, but powers that be really want it to be seperate (i.e. my app should actually be a service, and not require the other process starting from within my own program).
|
| Reading date value from Excel | 18 May 2007 06:36 GMT | 3 |
I got strucked with reading date value from excel file using C#.NET. For Jan-2000 the value I am getting is 36526.0. For all other dates also I am getting some double value like this.
|
| CheckAll in GridView | 18 May 2007 04:39 GMT | 4 |
I am trying to add check all functionality to my grid view, but I can't get it to work. Here is my gridview : <asp:TemplateField> <ItemTemplate>
|
| PInvoke an old DLL file | 18 May 2007 03:08 GMT | 6 |
I am trying to port a legacy CTI application written in another programming language to C# 2005. From my initial research into it I see I can utilize the DllImport method to tap into the DLL file (which is CTSA32.DLL). From there I have documented API for the various C
|
| how to check the existence of an item in a list | 18 May 2007 01:46 GMT | 5 |
I have a text box that can be used for input and I would like to check if the value in the text box that someone types is already in a list of items. I know how to do this in other languages but not in C#. I think i should create an array for the values already in the list - then
|
| Access a Control by its name as a string | 18 May 2007 01:32 GMT | 7 |
I have a list of strings that refer to various controls on a form. They're not all the same type, they are all unique. How can I say (Control)StringList[0].text = "mytext"
|
| How to multi select items in a combo box(help Me) | 18 May 2007 01:10 GMT | 1 |
I want a combo box through which i can select multiple values.Like a list box. Can you please help?
|
| autocomplete | 18 May 2007 01:00 GMT | 6 |
I have a simple form, just with one combo box and an OK button - and i have tried to use the autocomplete routine and I have enabled autocomplete in the combo box properties. http://www.java2s.com/Code/CSharp/Components/UseanAutocompleteComboBox.htm
|
| font not found | 18 May 2007 00:20 GMT | 1 |
Attempting to use ElfRing Code128ABhrf font to print barcode. private FontFamily family = new FontFamily("Code128ABhrf"); //Fails with ' Font not found' private FontFamily family = new FontFamily("Arial"); //Works OK
|
| tool to build a wrapper for a C DLL | 17 May 2007 23:46 GMT | 1 |
Suppose I have some random C DLL. I want to generate a C# wrapper for it automatically. (By wrapper I mean a large file with a bunch of [dllimport...] static extern ...., etc.) What tools exist to do this automatically?
|
| A Generic Generics Problem | 17 May 2007 23:15 GMT | 13 |
I'm writing because I'm frustrated with the implementation of C#'s generics, and need a workaround. I come from a Java background, and am currently writing a portion of an application that needs implementations in both Java and C#. I have the Java side done, and
|
| Call to JavaScript function from c# is failing...why? | 17 May 2007 21:34 GMT | 1 |
My c# code: string path = Path.Combine(Path.GetDirectoryName(this.GetType().Assembly.Location), "VirtualEarth.htm");
|
| DataTable.Select vs DataTable.rows.Find vs foreach | 17 May 2007 21:06 GMT | 1 |
What is the best way (performance wise) to search for a row in a table? Let say I have a column named "col1" and what to get the row that the value of "col1" is "It is me"... I can set this column as the primary key to use the find method if it worths
|