| Thread | Last Post | Replies |
|
| Timers | 23 Nov 2005 15:04 GMT | 3 |
In my aplication it seems that my timer slows down everything, is there a better and/or diferent way than using a timer Maarten
|
| Why C# | 23 Nov 2005 15:02 GMT | 12 |
The question is why should I use C#? If am developing a windows application, what are the advantages of using C# versus VC++ (MFC)? Thanks
|
| how to get HtmlSelect's multiple item value? | 23 Nov 2005 14:57 GMT | 5 |
I want to get the Sel_142's multiple item's value, and put them in an array. if ( !Sel_142.Multiple ) vo.CA142 = Sel_142.Items[Sel_142.SelectedIndex].Value;
|
| Enumerate Windows | 23 Nov 2005 14:42 GMT | 5 |
I need to enumerate windows and find the sum of the rect of all the windows of a specific application. In C++, I use the APIs - 'EnumWindows , GetWindowRect and UnionRect to accomplish the same. How to perform the above in c#? Is PInvoke the only way to do it or Is there
|
| identity impersonate - in a windows app? | 23 Nov 2005 14:09 GMT | 2 |
How can I perform the equivalent of a Web Applications <identity impersonate="true" /> in a windows application? Thanks,
|
| TreeView starts with useless Horizontal Scrollbar | 23 Nov 2005 12:30 GMT | 2 |
Does anyone know what causes a treeview to sometimes start with a horizontal scrollbar that has no reason to be there, and will not go away until you size into the nodes and then back out? Anyone know how to correct this bug?
|
| Start with hidden Form | 23 Nov 2005 11:49 GMT | 19 |
im new to c# and i got an app with a notifyicon. Now i want to start the app only with the notifyIcon, so that the Main-Form doesnt show up. The form itself is used at the entrance point of the app: Application.Run(new MainFrame());
|
| C# - ADODB - Failure to connect on deployment | 23 Nov 2005 11:19 GMT | 4 |
I have an application that connects to a SQl database on my computer via an ADODB connection: ADODB.Connection Conn = new ADODB.Connection(); Conn.ConnectionString = ("Driver={SQL
|
| MS not too helpful :-( | 23 Nov 2005 10:12 GMT | 3 |
I have visual studio .net 2003 which came with 3 MSDN CDs. Is it possible to get an update to this CD (or a DVD or download)? I phoned MS but the guy on the phone was very confused and thought I meant an MSDN subscription. In the end he suggested I ring a retailer!!!
|
| Can't use "#" in a file or folder name | 23 Nov 2005 09:19 GMT | 5 |
At least when you've got any docs in .CHM format in the folder tree. If you drop a file called CSharpDocs.chm into a folder: \toplevel\C#\docs, you can open it, but it won't display. The # anywhere in the folder hierarchy is enough to cause problems.
|
| Set tooltip to the dataItem of dropdownlistbox | 23 Nov 2005 09:18 GMT | 1 |
hello i want to set the tooltip of data displaying in dropdownlistbox , i have bound the dropdownlistbox with datasource and i want that tooltip shld be display at every item of dropdownlistbox same as the Itemtext , how can i set it?
|
| display html in browser | 23 Nov 2005 09:16 GMT | 2 |
I fetch data from database (lots of strings), and display them in an html table in a web browser. The problem is that some of the data can contain html, or at least stuff that looks like html, and that confuses the browser. What can I do so the browser just displays the string ...
|
| Serialization Performance (again) | 23 Nov 2005 07:27 GMT | 4 |
Hi again, I used a profiler like recommended and found that the majority of time is spent on WriteArrayMember. I have around 15 classes that inherit from CollectionBase. ObjectWriter.GetType is taking .3468 seconds and
|
| Using List.Contains() | 23 Nov 2005 07:18 GMT | 1 |
I feel like I'm about to get in over my head, so before I go off the deep end I'm hoping someone can point me in the right direction. I started down the road of using a List<> of an Interface type. I wanted to be able to use List.Contains() to determine if the List
|
| DataGrid Question | 23 Nov 2005 04:59 GMT | 1 |
I'm working on a web project using ASP.NET 1.1 from C#. i have used a datagrid to display some info for the users from my DB. i have to columns in the DB that i want to display them in one column in the datagrid.the 2columns are CompanyName and CompanyLogo.
|