| Thread | Last Post | Replies |
|
| Get System Icon for any file/folder | 20 May 2008 06:23 GMT | 14 |
How can I retrieve the system icon associated with a file/folder so that I can show it in the list view adjacent to the file/folder name? Regards, Ashutosh Bhawasinka
|
| Basic question about C# Web Services | 20 May 2008 04:56 GMT | 4 |
I have developed a small class and generated a proxy class for it using the wsdl.exe utility. I dont understand how an actual wsdl file ties into this. It appears that I can create a c# webservice and operate without a wsdl file, but that doesnt realy make sense to me.
|
| VS C# 2008 Object Reference Error | 20 May 2008 02:00 GMT | 1 |
The snippet below is from a small console app I'm playin' around with in C#. Upon building the app, I receive the error message "An object reference is required for the non-static field, method, or property bla.bla.ConvTempoToMilliseconds(int)".
|
| Why isn't there "Item" property for combobox or listbox in C#? | 19 May 2008 21:48 GMT | 8 |
Just noticed that you're allowed to use combobox1.items.item property in VB.NET but NOT in C#... Intellisense doesn't show "item" property and build is failed. Is there a specific reason for that or is it a mistake?
|
| generics compile error | 19 May 2008 21:43 GMT | 6 |
The type parameter 'T' cannot be used with the 'as' operator because it does not have a class type constraint nor a 'class' constraint I have the following code. and i get a compile error. private List<T> GetAllControls<T>(Control control)
|
| File writes in a loop | 19 May 2008 21:08 GMT | 14 |
I need to write data to a file in a loop. I get a "file already in use" error on the second loop. The problem is, I don't know the name of the file until I'm in the loop. How can I keep a file open for writing in a loop?
|
| generics | 19 May 2008 20:21 GMT | 3 |
I want to perform the follwing action with the use of generics: Method which will append 2 dictionaries such as input will be Dictionary <T,list<U>> d1 and Dictionary <T,list<U>> d2 . The method will return Dictionary <T,list<U>> result.
|
| Dictionary append question | 19 May 2008 20:05 GMT | 4 |
I was wondering if there is a way in c# to append two Dictionaries of the same type: Dictionary<string,object> dic1 and Dictionary<string,object> dic2 into one new Dictionary<string,object> ?
|
| GridView not Showing Headers When there are No Rows | 19 May 2008 19:54 GMT | 6 |
I'm trying to get my DataGrid to show headers and footers when no rows are returned from the datasource. Below is code that shows the first TemplateField. Is there an easy way to get at least the footer to show? I want to be able to insert a new row using the footer. Thanks...
|
| .net -> win32 stream oddity | 19 May 2008 19:25 GMT | 2 |
I am sending a string over a socket from a C# app to a native C++ app. I embed the unicode symbol for the pound sign in the string being sent. When I read data from the socket, I find that a 0xC2 has been added into the input stream right before the pound symbol.
|
| iterating thru datatables collection | 19 May 2008 18:14 GMT | 4 |
hey all, i have a loop like the following: foreach(DataTable dt in DataTablesCollection1) {
|
| binary writes | 19 May 2008 16:24 GMT | 27 |
Can someone please help. I want to do some binary writing to files either using sdtout or by passing a filename and I am unsure how to do either in C# - I would like it to be as fast as possible.
|
| Tools in Visual Studio C# windows | 19 May 2008 15:52 GMT | 4 |
I am creating an application for windows mobile using Visual C# windows. I am using visual studio 2008 and I have windows Microsoft Vista on my computer. I also downloaded the professional and standards SDK windows mobile. However some tools and properties are not available such ...
|
| large xml file and tree view | 19 May 2008 14:59 GMT | 1 |
Hi, i have got large xml file which i have to show in tree view windows form.I tried with loading all those data at once to tree view but it took a long time to render that tree view.Now i am looking to polpulate tree view selectively.Only populating those nodes that user
|
| problem in adjusting alignment of controls at runtime | 19 May 2008 14:31 GMT | 1 |
I need to adjust the positioning of some controls at run time depending on the visibility of some panels. I am hiding and showing panels at a button click and need to adjust the positioning of the other controls accordingly. I have been trying very hard....the
|