C# - RefreshProperties Attribute At Class Level In .net, Winforms + Incorrectly Refreshing Property Grid?

Feb 15, 2010

I had a strange problem editing a class in the property grid whereby the property grid would refresh incorrectly.I managed to reduce the problem down to a class with just two properties. I've included the code at the end to ease explanation.It basically boils down to a class with two properties. The first of which is expandable (a font)The class itself is expandable and also implements the CreateInstance method in the type converter.To see the problem, expand the font, edit, say 'Bold', and tab away. Two problems happen:

(1) The second property jumps up and ends up in the expanded font property.

(2) The '-' sign of the expanded font changes to a '+'.

The problem goes away by attaching ResfreshProperties(RefreshProperties.All) to the class. That's great, but I'd like to understand how it fixed the problem. I've had a look in reflector and can't find any examples of RefreshProperties being attached at the class level.

[code]...

View 1 Replies


ADVERTISEMENT

Can't Set DataTable Class Level Variable = Class Table Property?

Sep 29, 2011

I have procedure (Import) that calls a for a new instance of frmImportData. I also have a class name clsBatch that has a data table property called prpParametersTable.For some reason, I get an error (indicated below with ERROR>>>) when trying to assign prpParameterTable to cv_dtImport2. The error states "Object reference not set to an instance of an object.". Why does this error not happen when I assign dtBP to cv_dtImport1? Both cv_dtImport1 and cv_dtImport2 are equal to Nothing and in my Import procedure dtBP = prpParametersTable.

Public Sub Import(ByVal clsB As clsBatch)
Try
Me.cv_clsB = clsB

[code]....

View 5 Replies

WinForms - Editing Custom Readonly Collection In Property Grid

Feb 19, 2010

I have a custom collection, lets says COL, that derives from ObjectModel.Collection. I have my own collection editor that works fine when a property, of type COL, is Read and Write enabled. However, if I change the property to ReadOnly, the open editor button stops showing in the property grid. As a test, I override my custom editor with the CollectionEditor, and that worked fine. So, my question is, what check is the property grid making, that CollectionEditor passes but my collection editor fails?

View 2 Replies

C# - Refresh Property Grid, At Design-time, When A Readonly Collection Changes In .Net, Winforms?

Mar 3, 2010

I have a class that has a readonly collection property - Its a list of extender providers that have been applied to the control.I've implemented a simple property descriptor for the collection so that the property can be expanded in the property grid to examine each entry.

When I select an extender provider and set it to false, I remove it from the collection. The GetProperties method of the type converter is requeried and the property grid refreshes.However, when I set an extender provider to true, and thus add it to the collection, GetProperties is not requeried.

Somehow, the property grid is making a distinction between adding to and removing from the collection. Or alternativly, its refreshing when an extender provider is added, but not when one is removed.

[Code]...

View 1 Replies

Assign Value To Property Of A Class Having Pairs With Attribute Names And Values

Jun 21, 2010

I have valued pairs, attributes names and values in one hand, and I have an object with attributes. I need to set the values of those attributes. I need something like [code]

View 1 Replies

Deserializing XML Into Simple .NET Class - Cannot Populate Property From Root Node Attribute

Feb 17, 2010

I have a simple class that I trying to populate from an XML document. The XML file has an attribute called TrackingID in the root node which I would like to get as a property. For some reason, when I deseralize the class, the TrackingID is null. Everything else populates fine. I have tried various attributes on the TrackingID property with no luck.

[Code]...

View 1 Replies

VS 2008 Properties In 'groups' (class) In Designer (property Grid)?

Jul 29, 2009

I'm creating a UserControl that draws a simple radial gauge. I need it to be very customizable; the user should be able to customize everything such as the colors, fonts, sizes. So, I just made a property for every customizable detail. For example, I had ScaleFont, ScaleColor, ScaleStart, ScaleEnd, ScaleInnerRadius, ScaleOuterRadius, ScaleTickmarkFrequenty, etc.. etc.. etc...

Because there are so many properties about the same subject, I wanted to 'group' these properties into one "property". I've seen this done loads of times in third party controls, but I've never done it before myself.The idea is that the properties can be accessed like

Me.Gauge1.ScaleSettings.Start = 10
Me.Gauge1.ScaleSettings.End = 80
...

So far, I tried creating a class for each group, for example a clsScaleSettings class, containing properties like Font, Color, Start, End, InnerRadius, OuterRadius, TickmarkFrequenty, etc (corresponding to the same properties as above).

Then, for every 'group' or class, I create a Property. For example, I have the ScaleSettings property, which simply returns an instance of the clsScaleSettings class (I initialize the instance only once of course):

vb.net
Private _ScaleSettings As New clsScaleSettings
Public Property ScaleSettings() As clsScaleSettings

[code]....

Now, this works in the code editor. I can now use

Gauge1.ScaleSettings.Font = Me.Font

for example, and it sets the font correctly.But, I does not work in the designer, in the Property Grid. The whole reason I made the effort to move and rename nearly all properties (about 70!), and all references to those properties, to separate classes, was so that the user could design the gauge more easily using the Property Grid!Instead of having 15 settings related to the scale, scattered all over the Property Grid, he can now have one ScaleSettings property, which he can expand, and then he can edit the properties of that group easily.The ScaleSettings property is greyed out in the property grid... So I cannot expand it and view it's underlying properties.

View 16 Replies

C# - Force An Exception If A Developer Uses A Property Incorrectly?

Feb 26, 2010

I am trying to setup a few fixes in some code that have caught me out, and am trying to get some exceptions to spit out if the developer trys to access a property where rules haven't been met.

[Code]....

View 1 Replies

Trust Level Does Not Allow Use Of The 'compilerOptions' Attribute

Jan 24, 2007

I am having a devil of a time getting a couple of VB 2003 web apps that have been converted to VB 2005 to run on the remote server I use ... I am able to debug/run them on my local development machine. The problem seems to be centered around the web.config files for these apps. They each contain <compilation> elements with embedded <compilers> and <compiler ...> child elements. The <compiler ...> element has a number of attributes including compilerOptions. When I run each app from the server I get the following message:

[Code]...

View 1 Replies

WinForms - WebBrowser Tell When Done Refreshing

Jun 5, 2010

I have a page that refreshes every 20 seconds and I need to know when it is done refreshing, the DocumentCompleted event does not fire when you refresh for some reason.

View 1 Replies

Refreshing A Data Grid View?

Feb 23, 2012

This looks like an easy fix but I can't figure this out. I'm trying to have button click event on a subForm (NewTournament), add a record to a database, and then to notify a data grid which lists the records from the same database automatically (the grid is listed on HomeForm).I so for am able to update the database and call upon a new window. But I can't get it to refresh that datagrid for anything. I know I'm supposed to clear the datagrid, get changes, then refill the grid. But everytime I do this, the code is NOT updating. Furthermore, I can very well see that the record is being added.

Private Sub CreateTournament_Click(sender As System.Object, e As System.EventArgs) Handles CreateTournament.Click
' Check the form for errors, if none exist.

[code]......

View 1 Replies

Open A FrmWindow A Second Time Without Refreshing A Grid In The First One?

Oct 8, 2010

I have a Window with a Grid that is making a select from myql, and using the .Show() function insted of ShowDialog() I can open the same window a second time to have two instances of the same window.

Now, when i open the second instance the grid populates with the new selection also in the first window....how can i make the window to open the second time without refresing the grid in it again...in the first one?

View 2 Replies

Winforms - Getting <a> Tags And Attribute With Htmlagilitypack

Jun 6, 2011

i have this code

[Code]...

but am getting an error Object reference not set to an instance of an object. the document contains at least one anchor-tag? how do i check if an attribute exits? i tried this if link.HasAttributes("title") then and get another error Public ReadOnly Property HasAttributes() As Boolean' has no parameters and its return type cannot be indexed.

View 2 Replies

Net Property Grid. Is There A Way To Let The Grid Manipulate Object In Different Way

May 31, 2009

As I understood , The property grid is given an object which it can manipulate by extracting its Properties using reflections.

My problem is that I have a set of Parameters that is determined during run-time , thus I can't staticly compose a class with properties to represent this set.

I have two idea in mind to solve this problem but both are complex and will probably consume lot of time , infact i will say they are not practical under my time constraints. One is to use Reflection Emit in order to define a class dynamically and the other is to dynamiclly build a C# source file and then compile it using CodeDom.

Can Property grid behave in a different manner( other then extracting the Properties of an object using reflections ) that can suite my problem?

I want to say that the reason I went to the property grid from the begining was its ability to provide realy nice Data Retrieval UI for common types.For color you autometically get a palette , For dataTime you automatically have a nice calender. I would like to get those things automatically If possible.

View 1 Replies

VS 2008 - Property Grid - Click On Item Show Its Property

Mar 18, 2009

I have a listbox with several list items added. I want that as user click on an item, I should be able to show its property. This should change for different items. For example (hypothetical) : Listbox has numbers 1 - 10. Now when I select 1 I should be able to set property - Name, Lastname, Colour, Age.

When I select 2 I should be able to set - Age, Hair Colour (clr shows), Weight, Date. When I select 3 then - City (combo box drop down), Country, Age only. This way value changes for diff items. One way is to put them in property grid and show them. Though this looks nice but adding/removing items in that is not easy. You need to have a class that refer that to prop grid. Do I have to code for each classes for all values in listbox or is there an easier way to manage items in property grid. If you think prop grid is not the right tool for such an activity then can you suggest something else.

View 13 Replies

C# - Use The Attribute NewFileName From Class CButtonCreate In The Class WriteToFile?

Jun 18, 2012

I have a Class CButtonCreate without get & set Methode. But i wanna use the Attribute "string newFileName" from the Class CButtonCreate in a other Class thats Class WriteToFile. How can use the Attribute newFileName in the Class WriteToFile?

class CButtonCreate
{
// Create a Folder && SubFolder from the tbProject
public void CreateFolder(string MyFolderName, string Mytbs, string MytbRevision, string MyTestSystem)
{

[code]....

View 1 Replies

IDE :: Make A Property In A Property Grid A List Box In 2010?

Feb 21, 2011

I have the following property in a property grid in VB.Net 2010.

<Description("Rapid Entry Post Car Wash Settings CarWashOptionPushButtons"), _
Category("Post Car Wash")> _
Public Property CarWashOptionPushButtons() As String

[code]....

I need to make this property a list box that gets the values from a database table and populates the list box with the values from the table. I have tried numerous things to no avail.

View 4 Replies

Property Grid - Open A Dialog Box To Edit A Property?

Oct 29, 2009

Property Grid - Open a dialog box to edit a property?

View 1 Replies

Control Zoom Level Of WinForms Using Mouse Sroll Wheel And Ctrl?

Mar 1, 2011

If I have a winform, may I know how can I control the zoom level of the font in theapplication (as well as the application window itself obviously) by using Ctrl + Mouse Scroll Wheel? I see there is a Delta in the Scroll Wheel event, but not sure how that works.Is there any code sample that I can look into?

View 2 Replies

Declare A RANDOM Class Instance At CLASS Level?

May 6, 2010

If you run this code you will see that the 500 PictureBoxes that are added ( this is easier to show than adding pixels as a pixel is only a single point ) fall mainly on the diagonal.With regard the RANDOM class, why should this be like this when the bounds of the instances are? >>

p.Location = New Point(x.Next(0, Me.Width + 1
), y.Next(0, Me.Height + 1 ))
as in this code.>>

[code].....-2138214fdeb4

View 9 Replies

Force An Inherited Class To Use An Attribute On The Class?

Oct 29, 2009

I'm trying to force an inherited class to use a custom attribute. I'm creating a class library where the user who wants to create an item will do so, but be forced to add an attribute (or visual studio will automatically add the default attribute) to their inherited class. Here is what I'm hoping to achieve:

BaseClass.vb:
<CustomAttribute(10)> _
Public Class BaseClass
End Class
MyClass.vb:

[Code]...

View 2 Replies

Website Won't Start - Error "The Current Trust Level Does Not Allow Use Of The 'compilerOptions' Attribute"

Jul 25, 2009

I been asked by a friend to transfer his website to a different server. The files transfer went successfully except that the site won't start. I keep getting the following message:

[Code]....

View 2 Replies

.NET Custom Property Attribute?

Mar 6, 2010

How can I shift the GET-implementation of a Class property to a / using a custom attribute? (I've added instantation vars (classname, propertyname) to the attribute, however I'd rather have these automatically fetched ofcourse.)

Public Class CustomClass
<CustomAttributeClass(ClassName:="CustomClass", PropertyName = "SomeProperty")> _
Public Property SomeProperty() as String
Get() as String

[code]....

View 3 Replies

Sorting A DataView - Pull Primary Author Up To Book Level So Can Be Displayed In Grid?

Jul 21, 2009

I have an XML that looks like this:

CODE:

This allows me to sort by the primary Author, Series, Episode, and Title.

In my application I house the data in a DataSet and then use a DataView to reference it in a Grid.

I'm using VS2005, VB.NET, and I have two questions:

1) How do I replicate the Sort I'm using in my XSLT?

2) How do I pull the primary Author up to the Book level so that it can be displayed in the Grid?

View 4 Replies

Color Property On Custom Attribute?

Aug 4, 2010

i wrote a custom attribute and got the following Color property that I want the user to be able to indicate the color property in the attribute on a class:

Private _ColumnColor As System.Drawing.Color
Public Property ColumnColor() As System.Drawing.Color
Get

[Code]....

View 1 Replies

Property Attribute Overloaded 11 Of 11 DefaultValue

Jan 18, 2012

[Code]...

Why is the first line not correct? What it wants is a System.Type and a System.String but refuses to work.

View 15 Replies

Change The TypeConverter Attribute Of A Property At Runtime?

Dec 20, 2011

I have a class created for use with the PropertyGrid control in a VB.Net application. One of the properties of the class is:

Private _someProp As String
<Browsable(True), _
BindableAttribute(False), _

[code].....

View 1 Replies

Store And Then Raise Event In Property Of Attribute

Apr 9, 2009

I think know how to do this in C# but I'm having syntax trouble in VB.NET because I need to take advantage of the 'handles' event stuff. I have different events that I somehow (probably delegate) need stored in a property of an attribute (I just add an attribute to a property linking to the corresponding event).

E.g.
<BindEvent(EventThing)>_
Public ReadOnly Property IsTrue() As Boolean
Get
Return True
End Get
End Property

They need to be events so that other programmers can use the VB.NET handles keyword on methods.
Public Delegate Sub TestEvent(ByVal sender As Object, ByVal e As Object)
Public Event E As TestEvent
Public Sub Test() Handles E
End Sub

These properties are already raising a general event, which I am catching, determining the related property and thus getting the related attribute (and delegate/event). I want to then raise the event that's related. If I just use a delegate tied to the particular event that won't raise other handlers will it? I also want to avoid having to write a sub for each property that just uses Raise Event on the event type if possible as this seems redundant.

E.g. avoid:
Public Event E As TestEvent
Public Sub CallE(ByVal sender As Object, ByVal e As Object)
RaiseEvent E(sender, e)
End Sub
[Code] .....

View 2 Replies

.net - Binding A Dictionary To A WinForms Grid (or Combo)?

Aug 24, 2011

You have a pseudo-table class and a pseudo-row class. The row is somewhat generic and has no strongly-typed fields. It follows the typical dictionary interface

Dim age As Object = person("Age") 'accessed via default property Item

vs

Dim age As Integer = person.Age 'an actual property typed as an Integer


What's the pattern to use so that we can bind our pseudo table and its rows to a grid or combo box?

Dim rs As New clsResultSet(tblPeople)
Dim id As Object = rs(0)("Id") '913
Dim name As Object = rs(0)("Name") 'Ted[code].....

View 1 Replies

C# - From A UITypeEditor, Retrieve An Attribute Applied To The Parent Of A Property In .net?

Jan 20, 2010

Consider this scenario:

Class MyClass
Property SubProp1
End Property

[code]....

Next, I put an instance of MyButton into a property grid, expand property MC and edit SubProp2.From the type editor for SubProp2, I want to get hold of the attribute applied to property MC.Looking at the context,PropertyDescriptor.ComponentType, we arrive at Type: MyClass.If i look at the attributes applied to MyClass, though, it will only return the attributes applied directly to MyClass, and not the extra attribute applied to the property MC.

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved