Click here to Skip to main content
16,008,010 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Dinamic Chart in Visual Basic 6 Pin
ChandraRam27-Nov-07 22:39
ChandraRam27-Nov-07 22:39 
QuestionResize CrystalReportViewer Control (VB.Net 2003) Pin
paulkeys27-Nov-07 8:10
paulkeys27-Nov-07 8:10 
AnswerRe: Resize CrystalReportViewer Control (VB.Net 2003) Pin
Dave Kreskowiak27-Nov-07 8:36
mveDave Kreskowiak27-Nov-07 8:36 
GeneralRe: Resize CrystalReportViewer Control (VB.Net 2003) Pin
paulkeys27-Nov-07 8:49
paulkeys27-Nov-07 8:49 
GeneralRe: Resize CrystalReportViewer Control (VB.Net 2003) Pin
Dave Kreskowiak27-Nov-07 9:10
mveDave Kreskowiak27-Nov-07 9:10 
GeneralRe: Resize CrystalReportViewer Control (VB.Net 2003) Pin
paulkeys27-Nov-07 9:38
paulkeys27-Nov-07 9:38 
GeneralRe: Resize CrystalReportViewer Control (VB.Net 2003) Pin
Dave Kreskowiak27-Nov-07 9:57
mveDave Kreskowiak27-Nov-07 9:57 
QuestionIExtender - Getting Property to be Visible at Run-Time [modified] Pin
nlarson1127-Nov-07 7:52
nlarson1127-Nov-07 7:52 
I'm trying to use IExtenderProvider to add a property to all the components on a form.
The RFEnabled property shows up in the property window but now where else (code - design time and run time). Is there anyway that I can expose the property to the code?

Imports System.ComponentModel
Imports System.Runtime.InteropServices

<ProvideProperty("RFEnabled", GetType(Control))> _
Public Class EnableChangeComponent
Implements System.ComponentModel.IExtenderProvider

Public Function CanExtend(ByVal extendee As Object) As Boolean Implements System.ComponentModel.IExtenderProvider.CanExtend
If TypeOf (extendee) Is Form Then
Return False
ElseIf TypeOf (extendee) Is Control Then
Return True
End If
End Function

#Region "MonitorForChanges"
<Category("Change Monitoring")> _
<Description("Whether or not to monitor this control for changes")> _
Public Function GetRFEnabled(ByVal ctl As Control) As Boolean
'insert real code here
Return True
End Function

<Category("Change Monitoring")> _
<Description("Whether or not to monitor this control for changes")> _
Public Sub SetRFEnabled(ByVal ctl As Control, ByVal value As Boolean)
'insert real code here
End Sub
#End Region
End Class

Thanks...
Nathan


-- modified at 14:06 Tuesday 27th November, 2007
AnswerRe: IExtender - Getting Property to be Visible at Run-Time Pin
Dave Kreskowiak27-Nov-07 8:28
mveDave Kreskowiak27-Nov-07 8:28 
GeneralRe: IExtender - Getting Property to be Visible at Run-Time Pin
nlarson1127-Nov-07 8:33
nlarson1127-Nov-07 8:33 
QuestionProblem with Service Application Template Pin
jim_taylor27-Nov-07 7:06
jim_taylor27-Nov-07 7:06 
AnswerRe: Problem with Service Application Template Pin
Dave Kreskowiak27-Nov-07 7:47
mveDave Kreskowiak27-Nov-07 7:47 
GeneralRe: Problem with Service Application Template Pin
jim_taylor27-Nov-07 8:45
jim_taylor27-Nov-07 8:45 
GeneralRe: Problem with Service Application Template [modified] Pin
Dave Kreskowiak27-Nov-07 9:05
mveDave Kreskowiak27-Nov-07 9:05 
GeneralRe: Problem with Service Application Template Pin
jim_taylor27-Nov-07 9:17
jim_taylor27-Nov-07 9:17 
GeneralRe: Problem with Service Application Template Pin
jim_taylor27-Nov-07 9:57
jim_taylor27-Nov-07 9:57 
GeneralRe: Problem with Service Application Template Pin
Dave Kreskowiak27-Nov-07 9:58
mveDave Kreskowiak27-Nov-07 9:58 
GeneralRe: Problem with Service Application Template Pin
jim_taylor27-Nov-07 10:04
jim_taylor27-Nov-07 10:04 
GeneralRe: Problem with Service Application Template Pin
Dave Kreskowiak27-Nov-07 10:14
mveDave Kreskowiak27-Nov-07 10:14 
GeneralRe: Problem with Service Application Template Pin
jim_taylor27-Nov-07 11:21
jim_taylor27-Nov-07 11:21 
QuestionSet SSRS Report Datasource using vb.net Pin
Realsirocco27-Nov-07 6:21
Realsirocco27-Nov-07 6:21 
AnswerRe: Set SSRS Report Datasource using vb.net Pin
pmarfleet27-Nov-07 7:11
pmarfleet27-Nov-07 7:11 
QuestionContext-Sensitive Help in VB 2005 Pin
PeterBiddlecombe27-Nov-07 5:30
PeterBiddlecombe27-Nov-07 5:30 
AnswerRe: Context-Sensitive Help in VB 2005 Pin
Dave Kreskowiak27-Nov-07 6:37
mveDave Kreskowiak27-Nov-07 6:37 
QuestionVB.Net macro problem [modified] Pin
smith4306527-Nov-07 5:11
smith4306527-Nov-07 5:11 

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.