| Thread | Last Post | Replies |
|
| How can I change the default namespace in an Outlook-AddIn Project | 12 Feb 2007 14:38 GMT | 1 |
I'm working on an Outlook-AddIn with VSTO 2005. I'd like to change the default namespace to something like "Componyname.Projectgroup.Addinname". But in the property page the default namespace input is disabled. Why is this so? And, how can I change the defaultnamespace used.
|
| Windows form label border... | 12 Feb 2007 14:28 GMT | 2 |
sorry for that kind of a silly question, but j just got crazy finding a way to display a transparent label with a SIMPLE white border on a form with a dark backgrond color. I'd like to achieve that without writing any code such as handle the
|
| How to set SPAlert.AlertTemplate property on an alert using SharePoint V3 API? | 12 Feb 2007 13:30 GMT | 2 |
I am trying to crete alerts using SharePoint V3 API and so far I am able to create alerts but for some reason I could not figure out how to set AlertTemplate property on SPAlert object. Here is my code.
|
| Win Control question | 12 Feb 2007 12:32 GMT | 2 |
I would need to find a control that can show some text on multiple line and columns, data would be organized by line and the user could sort by column. It is the same kind of control than in the detailled view in Windows
|
| Thread Sleep Problem - Micro Seconds | 12 Feb 2007 12:15 GMT | 6 |
How does one make a thread sleep for some "microseconds" in C# ? TIA, Darth
|
| How parse XML values from a string? | 12 Feb 2007 10:55 GMT | 3 |
I have a string (see below) that I want to parse out the values. As you can see, some are element-based and some are attribute-based. <METADATA version="Format5"><TITLE value="Adrenaline Rush"/><DESCRIPTION>Take a thrilling look at the world of skydiving and base
|
| Array.Find Generic Method (System) [newbie] | 12 Feb 2007 09:28 GMT | 5 |
Hi, is there a standard way of handling null with System.Array.Find methods? For instance, currently I must do the following; Fruit[] filterFruits = null; if (arrayOfFruits != null)
|
| Property Grid - TypeConverter | 12 Feb 2007 07:03 GMT | 2 |
Trying to get an handle on the property grid which I'm finding very handy. I got one problem though that I have not been able to fix. Here is a small example to illustrate the problem;
|
| ListView Header Color | 12 Feb 2007 06:59 GMT | 7 |
How do I change the ListView Header Color? If you know how to do it, please give a code example. Adrian. (I placed this question in another newsgroup by error.)
|
| Unable to cast to extended class | 12 Feb 2007 05:31 GMT | 4 |
If I extend the WebBrowser class like this: public class CustomWebBrowser : System.Windows.Forms.WebBrowser { public string myProperty()
|
| multi-threaded app/ using lock | 12 Feb 2007 03:53 GMT | 6 |
Hey All, I am using multiple child threads per main thread to download files. It sometimes appears as if the same file is being downloaded twice. I am using "lock". Am I using it correctly? Any blantant threading
|
| Newbie Question | 12 Feb 2007 01:08 GMT | 7 |
I made a new application form, but when I close the form the process is still up and showing at the task manager. How do i dispose of the process correctly? Thanks in advance.
|
| Change text box position on the web form | 12 Feb 2007 01:05 GMT | 1 |
I just put 2 text boxes on a web form but they are side by side, I have no way to reposition them.
|
| How do you pass a null argument to a generic method? | 12 Feb 2007 01:05 GMT | 4 |
public void SomeGenericClassConstructor(T item){} Very simple question: How do I pass in a null value as the argument? Generics require something different than what I'm use to. Thanks,
|
| How to make sure a method waits to finish before firing again | 12 Feb 2007 01:00 GMT | 11 |
I have a situation where a method is fired from receiving a message from my server. On receiving this message it triggers a visual animation. So what happens when the server sends say 3 messages in quick succession.
|