| Thread | Last Post | Replies |
|
| ClickOnce Shortcut | 16 May 2007 05:36 GMT | 1 |
I have some Word documents I deploy to my users via ClickOnce along with the application files. Unfortunately, I can find no way to put a shortcut in the Start Menu's Program group for the user to click (I can only show the application file and the website support shortcut). ...
|
| Allow end user to configure database connection | 16 May 2007 00:07 GMT | 1 |
I am fairly new to .net 2.0 development. I have created a simple web service application that points at a user's database using datasets and connections strings from the web.config file. At this point, I have to manually edit the connection strings
|
| The Interlocked on the Edge of Forever | 15 May 2007 23:28 GMT | 46 |
I've got a quick question that's been bugging me for a long, long time: Let's say I've got a member variable (in a heavily threaded app): private int _firstTime = 0; To make changes to this is easy enough:
|
| Reflection and Nullable/Generic types | 15 May 2007 20:09 GMT | 1 |
I need to perform two functions that I can't figure out how to do as follows: Type GetUnderlyingTypeForNullableType( Type nullableType) {
|
| SuppressFinalize on Class with no finalizer | 15 May 2007 20:06 GMT | 1 |
We are using FxCOP in our coding process and implementing the Dispose pattern in some of our classes. Our resources are not unmanaged, so Finalizers are not necessary. Is there any harm in calling SuppressFinalize and passing an object that
|
| Most popular object persistence framework | 15 May 2007 19:26 GMT | 12 |
What is the most commonly used object persistence framework for .NET? Thanks Pete
|
| Notify on IP Address Change | 15 May 2007 17:55 GMT | 7 |
I get my IP Address(es) by looping through NetworkInterface.GetAllNetworkInterfaces() and adapter.GetIPProperties().UnicastAddresses This works fine! (see code snippet at the end)
|
| BackGroundWorker issue on Vista x64 | 15 May 2007 17:28 GMT | 4 |
I am writing a small utility to perform system maintainence tasks on Windows. In this, I am launching a MMC snapin as a process using BackGroundWorker and using the "RunWorkerCompleted" event handler to know when the snapin was closed. This works fine on Xp and Vista 32
|
| Add a new XmlElement to XmlNode | 15 May 2007 14:54 GMT | 1 |
For an xml file, I can use XmlDocument to load it and use XmlDocument.CreateElement and XmlNode.AppendChild functions to create and add a new XmlNode to it. For an xml data type in sql database, I can load it from database and assign
|
| How to programatically envoke mouse button click | 15 May 2007 04:08 GMT | 3 |
I can move mouse by System.Windows.Forms.Cursor.Position = new System.Drawing.Point(x,y), but I could not find a way to invoke mouse click. Thanks for help. Jim
|
| List of countries in a DropDownBox | 15 May 2007 03:42 GMT | 3 |
Thanks all in advance! I use Visual Web Studio (Visual Basic.net) for my web site. How can I use the following HTML list of countries within my Visual Basic.net code to fill a DropDownBox I'm placing on my .aspx page?
|
| Error while sending e-mails with attachments using SmtpClient::SendAsync | 15 May 2007 00:54 GMT | 2 |
Error while sending e-mails with attachments using SmtpClient::SendAsync Options There are currently too many topics in this group that display first. To make this topic appear first, remove this option from
|
| DataGridViewComboBoxes for numeric fields | 14 May 2007 22:00 GMT | 9 |
I have several integer fields which have small fixed ramges of values. I have tried to display them as DataGridViewComboBoxes, but it fails, because the fields are numeric. Is there an easy way round this? At the moment I am displaying them as text
|
| How to take an IE rendered screenshot of a website with visual studio .net 2002 or visual stuido .net 2003? I can't install visual studio .net 2005 on this computer. | 14 May 2007 20:05 GMT | 1 |
How to take an IE rendered screenshot of a website with visual studio .net 2002 or visual stuido .net 2003? I can't install visual studio .net 2005 on this computer.
|
| Windows.forms.keys collection | 14 May 2007 19:09 GMT | 2 |
I have the below code for sending each character in a string as a Keys.x enumeration. I've found that when I convert the char, it does not match the enumeration item index and thereby generates a very random output. Any ideas on how I can convert chars to their right equivalent ...
|