Click here to Skip to main content
16,005,206 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
QuestionClient Side Javascript Enabled Check Pin
Tristan Rhodes26-Jul-09 23:42
Tristan Rhodes26-Jul-09 23:42 
QuestionHow to Retrieve TCP/UDP Statistics using System.Net.NetworkInformation Pin
that_dude_tj26-Jul-09 23:06
that_dude_tj26-Jul-09 23:06 
AnswerCP Ignore - Crossposted in multiple forums... Pin
Dave Kreskowiak27-Jul-09 4:47
mveDave Kreskowiak27-Jul-09 4:47 
Questionhow to hide properties in propertyGrid Pin
Hamid Amrbdi26-Jul-09 21:43
Hamid Amrbdi26-Jul-09 21:43 
AnswerRe: how to hide properties in propertyGrid Pin
DaveyM6927-Jul-09 0:35
professionalDaveyM6927-Jul-09 0:35 
AnswerRe: how to hide properties in propertyGrid Pin
Hamid Amrbdi27-Jul-09 1:36
Hamid Amrbdi27-Jul-09 1:36 
GeneralRe: how to hide properties in propertyGrid Pin
DaveyM6927-Jul-09 1:56
professionalDaveyM6927-Jul-09 1:56 
GeneralRe: how to hide properties in propertyGrid Pin
Hamid Amrbdi27-Jul-09 2:00
Hamid Amrbdi27-Jul-09 2:00 
This is the VB code I have here, there are many properties inherited from Picturebox to this class. how can i make all of inherited properties nob-browsable!? in my test app I have an instance of this class assigned to a PropertyGrid (as selectedobject) and it is showing all of them!?!?!?

Imports System.Windows.Forms
Imports System.ComponentModel

Public Class A
Inherits Windows.Forms.PictureBox

Private _A1 As Integer
Private _A2 As Integer
Private _A3 As Integer

<CategoryAttribute("Test"), Browsable(True)> Public Property A1() As Integer
Get
Return _A1
End Get
Set(ByVal value As Integer)
_A1 = value
End Set
End Property

<CategoryAttribute("Sample"), Browsable(True)> Public Property A2() As Integer
Get
Return _A2
End Get
Set(ByVal value As Integer)
_A2 = value
End Set
End Property
<CategoryAttribute("Sample"), Browsable(True)> Public Property A3() As Integer
Get
Return _A3
End Get
Set(ByVal value As Integer)
_A3 = value
End Set
End Property
End Class
GeneralRe: how to hide properties in propertyGrid [modified] Pin
DaveyM6927-Jul-09 2:26
professionalDaveyM6927-Jul-09 2:26 
GeneralRe: how to hide properties in propertyGrid Pin
Hamid Amrbdi29-Jul-09 20:19
Hamid Amrbdi29-Jul-09 20:19 
GeneralRe: how to hide properties in propertyGrid Pin
DaveyM6930-Jul-09 4:55
professionalDaveyM6930-Jul-09 4:55 
GeneralRe: how to hide properties in propertyGrid Pin
Hamid Amrbdi30-Jul-09 14:09
Hamid Amrbdi30-Jul-09 14:09 
GeneralRe: how to hide properties in propertyGrid Pin
DaveyM6931-Jul-09 0:24
professionalDaveyM6931-Jul-09 0:24 
GeneralRe: how to hide properties in propertyGrid Pin
Hamid Amrbdi3-Aug-09 13:45
Hamid Amrbdi3-Aug-09 13:45 
GeneralRe: how to hide properties in propertyGrid Pin
Pete O'Hanlon3-Aug-09 22:06
mvePete O'Hanlon3-Aug-09 22:06 
GeneralRe: how to hide properties in propertyGrid Pin
DaveyM694-Aug-09 1:43
professionalDaveyM694-Aug-09 1:43 
AnswerRe: how to hide properties in propertyGrid Pin
Patrick Fox28-Jul-09 10:06
Patrick Fox28-Jul-09 10:06 
QuestionCreate an embeded aplication Pin
rick055626-Jul-09 21:24
rick055626-Jul-09 21:24 
AnswerRe: Create an embeded aplication Pin
King Julien27-Jul-09 3:47
King Julien27-Jul-09 3:47 
QuestionHow to convert structure from rows to columns !!!??? very strange ! Pin
Feras Mazen Taleb26-Jul-09 21:06
Feras Mazen Taleb26-Jul-09 21:06 
Questiontooltip control for win ce app Pin
obalesu26-Jul-09 20:43
obalesu26-Jul-09 20:43 
QuestionSlow Multicast Delegates ? Pin
sneusse26-Jul-09 9:00
sneusse26-Jul-09 9:00 
AnswerRe: Slow Multicast Delegates ? Pin
PIEBALDconsult26-Jul-09 15:00
mvePIEBALDconsult26-Jul-09 15:00 
AnswerRe: Slow Multicast Delegates ? Pin
Luc Pattyn26-Jul-09 19:25
sitebuilderLuc Pattyn26-Jul-09 19:25 
AnswerRe: Slow Multicast Delegates ? Pin
DaveyM6927-Jul-09 1:45
professionalDaveyM6927-Jul-09 1:45 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.