| Thread | Last Post | Replies |
|
| Determine if CD/DVD drive is writeable | 27 Nov 2007 00:27 GMT | 3 |
Is there a way to determine if a CD/DVD is writeable? I have looked at using WMI (Win32_CDROMDrive) but it did not have any luck. Thanks.
|
| Creating website via DirectoryServices in C# but will not serve aspx pages (htm ok) | 26 Nov 2007 23:45 GMT | 1 |
I've seen a similar post about this problem but still cannot find an automated solution. Below is the code I'm using to create a website (for IIS 6.0) via C#. once the site is created, it will not serve aspx pages. If I:
|
| Integrating with CHM File | 26 Nov 2007 23:11 GMT | 2 |
I have added a HelpProvider to my GUI. And I have been able to successfully load the file using the following code: protected override bool ProcessDialogKey(Keys keyData) {
|
| Target .NET 2.0 using C# 3.0 | 26 Nov 2007 22:35 GMT | 2 |
The C# compiler in VS 2008 doesn't complain when I use some of the new features of C# 3.0 (list initializers, etc.)even though my assemblies are being built for .NET 2. I'm guessing this is because they are just compiler tricks and don't take advantage of anything new in the ...
|
| add header | 26 Nov 2007 21:17 GMT | 2 |
Hi how to add <?xml version ="1.0" encoding="UTF-8" ?> to my xml below? Please help. Code: XmlDocument xmlDom = new XmlDocument ();
|
| Multiple Select Listbox - Help | 26 Nov 2007 20:49 GMT | 1 |
Hi. I am new to C#, and I am having trouble getting the multiple selection of listbox to work. I have an asp.net web form, and I need two listboxes which are filled with an access table. I have to be able to select multiple items, and fill a datagrid with the results.
|
| How to draw a border around text but with round corners? | 26 Nov 2007 20:02 GMT | 1 |
I would like to draw a border around some text I am drawing on the screen (I am using g.DrawString(…) function). I would like the edges of the boarder to be rounded rather than square (90 degrees). Any idea how can I achieve that?
|
| LINQ Question (Contains) | 26 Nov 2007 18:27 GMT | 20 |
I recently stumbled across a pretty interesting LINQ to SQL question and wonder, whether anybody might have an answer. (I'm doing quite some increasing LINQ evangelism down here in Germany.). Assume I want to select rows from a database and check whether a specific
|
| moving/resizing external application from c# | 26 Nov 2007 18:27 GMT | 1 |
How do I move or resize an external application from within c#? I can launch an application no problem (via "Process), but I'm stuck on controlling it... ~titan
|
| Linklabel | 26 Nov 2007 18:06 GMT | 1 |
I've added a linklabel in my project, but if I click om it nothing happened. Must I make a event, and how to open the bowser? Rinaldo
|
| DetailsView Problem | 26 Nov 2007 17:38 GMT | 1 |
In ASP.NET, I've created a DetailsView control, unbound. There are a few textboxes in it, and I want to be able to enumerate through all the rows, and get the values of the textboxes in those rows. Any ideas how I should go about doing this?
|
| Create GUi Component | 26 Nov 2007 16:34 GMT | 1 |
I to create Gui component which will allow me to show a list of items and to sort it by abc. Which one is the best?
|
| Data binding: object reference required | 26 Nov 2007 16:29 GMT | 4 |
I have a data set MMSDataAccess with: public partial class MMSDataSet : System.Data.DataSet {
|
| Problem adding a self designed control | 26 Nov 2007 16:26 GMT | 2 |
I've designed a control (which opens and shows pdf documents) with C#.I added it to VisualStudio Toolbox,but when I drag and drop it to a new form , nothing happens.By 'nothing' I mean completely nothing,even no error message,
|
| Equals() and inheritance | 26 Nov 2007 16:06 GMT | 7 |
In C++, there is an easy technique to provide an overloaded Equals() method. A straightforward translation to C# causes a stack overflow. Why does b.Equals(ba) in the snippet below not understand that it should call (ba as B).Equals(b) inside?
|