Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
1k views

Get value from custom attribute-decorated property?

I've written a custom attribute that I use on certain members of a class: public class Dummy { [MyAttribute] public string Foo { get; set; } [MyAttribute] public int Bar { get; set; ...
2
votes
1answer
279 views

Do I have to clean custom properties (Expandos) on window.onunload event?

In one article I have seen that it may be good to clear all expandos on window.unload event to prevent memory leaks. I cannot understand why to do this. Isn't the browser cleaning all the DOM and ...
1
vote
1answer
257 views

SharePoint Web Part Custom Properties Don't Take Effect Until Page Reload

I am developing a sharepoint 2007 web part that uses custom properties. Here is one: [Personalizable(PersonalizationScope.User), WebDisplayName("Policy Update List Name")] [WebDescription("The name ...
1
vote
4answers
2k views

WPF tab order with custom controls?

I have a WPF page that contains several out of the box controls with the tab order set. I have a custom control (NumericSpinner) that contains: border/grid/text box/2 Repeatbuttons (up/down). Two ...
1
vote
2answers
249 views

Custom revision properties in Mercurial?

Can I setup a custom property for my hg repository so that I could store/retrieve its value for each revision? Like, weather in Tokyo at the time of commit, etc. Same for git?
1
vote
1answer
344 views

Episerver custom property value save

I have a custom property in Episerver inherited from LongString. The value of property is saved for the first time and retrieved correctly. But on successive save the value is not updated, before ...
1
vote
2answers
767 views

SharePoint Custom Web Part With Active Directory

I am currently working on a custom SharePoint web part (WSS 3.0, not MOSS) that will pull in information for all of the users in Active Directory to build an up to date employee directory. This web ...
1
vote
1answer
376 views

Silverlight, custom object for shapes

I am studding Silverlight. I have an application where I create Polygons in UserControl_Loaded method. During creation stage I add MouseLeftButtonUp event handler like this: polygon.MouseLeftButtonUp ...
1
vote
3answers
789 views

How do I set a default value for a ASPX UserControl property?

I have a user control defined on an page as follows: <uc:MyUserControl ID="MyUserControl" runat="server" Visible="true" /> I am wanting to reuse the same control on a different page with a ...
0
votes
0answers
18 views

Setting Custom Property in Property Window for Visual Studio 2010 Layer Diagrams

I'm currently new to this Layer Diagram Extensions and with much of googling i found the msdn sample to create Custom Property.Below is the link for the same ...
0
votes
1answer
74 views

Key/Value custom webPart property - Sharepoint 2010

Couldn't find any related resources I want to add a custom property to my visual webPart, the normal way of adding properties not working with type of Dictionary [Personalizable(), WebBrowsable(), ...
0
votes
0answers
13 views

Word's inbuilt Document “Compare” feature adds multiple property nodes to the CustomXmlParts

When using the Compare feature in Word 2007 and 2010 I noticed that there are two CustomXmlParts for the namespace "http://schemas.microsoft.com/office/2006/metadata/properties". If you save the ...
0
votes
1answer
48 views

VSTO: hide contact properties

I am new to VSTO, and am developing an addon to Outlook that will allow the end users to track relationships between contacts. The relationships are stored in a separate SQL database, and I put the ...
0
votes
3answers
193 views

Is it possible to place custom values (properties) in ejb-jar.xml?

1) We are using OpenEJB (both embedded and standalone) with a few deployed EJBs. We would like to specify some simple static business rules and values (example: icon_size=200). Normally, we would put ...
0
votes
1answer
73 views

ASP.NET Component with custom property form

I'm developing a custom DataGridView control for internal use and I'd like to add a custom property option where it launches a WinForm for adding custom properties. Think of the Columns property ...
0
votes
1answer
179 views

Display word custom document property on screentip

On your Windows machine if you just hover your mouse over any Microsoft Office Word 2007/2010 document you get a screentip which generally contains metadata information such as Type,Authors, Size and ...
0
votes
3answers
81 views

WPF - Dependency Properties Error

I'm working on a WPF project, and my intention is to make two specific RadioButtons alter properties of another specified Component. But for now, i'm just trying to store a String inside the ...