| Thread | Last Post | Replies |
|
| DataTemplate for Custom Control with ContentPresenter | 06 Mar 2008 08:31 GMT | 3 |
I am using a custom control (based on Button), which has in its generic implementation: <Setter Property="Template"> <Setter.Value>
|
| Which installer do you use? | 06 Mar 2008 08:29 GMT | 4 |
With users' resistance to move to Windows Vista, the problem of deplyoing C# application is still the .NET Framework. Many users who are using Windows XP, need to install .NET Framework in order to run my C# application. I can use Visual Studio's built in installer, but
|
| Debugging XL addin using Visual C# 2005 Express Edition | 06 Mar 2008 08:17 GMT | 1 |
At work I have Visual Studio 2005, and I can debug my Excel add-ins by attaching to the Excel.exe process and it works like a charm. However at home I only have access to Visual C# Express 2005 Edition, which does not have any 'Attach To Process' functionality.
|
| c# basics | 06 Mar 2008 07:57 GMT | 14 |
Im learning c#. want to make sure my understanding of certain concepts is correct - is struct basically a sealed static class? - what exactly does the keyword virtual do?
|
| What is equivalent of 'null' | 06 Mar 2008 07:43 GMT | 15 |
I'm a VB programmer learning C#. One thing I don't know is how to test whether an object is 'null' or not. There is no 'null' keyword in C#. Why is that?
|
| One click | 06 Mar 2008 06:08 GMT | 2 |
I want to use one click to deploy my windows application but i want to include a xml file in which i can change the connectionstring. How can i do this. When you install the actual application where does it install the .exe file and is there a setting where i can set where i
|
| How set ComboBox to auto-complete? | 06 Mar 2008 04:49 GMT | 4 |
In my Windows forms app, I want my ComboBoxes to let the user begin to type values and it start to populate (if a match is found). But, I don't want the user to enter a value that is not in the list. What properties do I need to set to what to make this happen, please?
|
| FileStream questions | 06 Mar 2008 03:19 GMT | 5 |
I am trying to familiarize myself with filestreams, but I have run into the following issues. I am hoping that someone can shed some light on these issues for me please. I am using the following sample code to write (keeping it simple)
|
| C# FTP client using TcpClient class -- please help | 06 Mar 2008 02:40 GMT | 5 |
Folks, I'm trying to use C# to connect to an FTP server to upload some files. I'm calling: System.Net.Sockets.TcpClient mtTCPClient = new
|
| Keeping the header on a gridview visible | 06 Mar 2008 01:46 GMT | 2 |
I have a gridview bound to a datasource, however there are many rows in the grid and the user has to scroll down and thus the header row is obscurred. Is there anyway of keeping these headers visible whilst the remaining rows move up and down.
|
| can't debug! | 06 Mar 2008 01:08 GMT | 7 |
I finally got around to taking VS 2008 beta for a test spin, and I can't debug! I add a breakpoint to any line in my application, and when I hit "Debug", my program starts, and then immediately ends, skipping the breakpoint. It's probably a config setting somewhere, but
|
| ListView Grid Distortion | 06 Mar 2008 00:08 GMT | 9 |
My ListView components seem to produce distortion when they are scrolled in Details view; it looks almost like the text has a "strike-through" attribute applied to it. Does anyone know of a fix for this? If not, is there an alternative
|
| Sorting my custom class in a List<T> | 05 Mar 2008 23:26 GMT | 1 |
I have a class that represents a Menu Tab: public class MenuTab { public string Name;
|
| Disposal of GDI Resources and GDI Limits, a puzzling question (for me at least) | 05 Mar 2008 22:20 GMT | 3 |
When working with GDI+, calling the CreateGraphics method to draw on a control has normally been frowned upon and it is always emphasized to dispose of pens and brushes and other GDI objects lest you run out. But consider the following code (in a timer elapsed event on a Windows
|
| How select just numeric values in LINQ? | 05 Mar 2008 22:09 GMT | 2 |
We have a table "Animal" that contains the column "AnimalNumber" with values like these: 100001 100002
|