Click here to Skip to main content
15,919,434 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: PLEASE PLEASE PLEASE HELP, Embedding images and icons. Pin
Dave Kreskowiak27-Feb-04 3:49
mveDave Kreskowiak27-Feb-04 3:49 
General.NET and EXCEL XP Pin
Raptor Pete27-Feb-04 1:00
Raptor Pete27-Feb-04 1:00 
GeneralRe: .NET and EXCEL XP Pin
John Kuhn27-Feb-04 5:35
John Kuhn27-Feb-04 5:35 
GeneralRe: .NET and EXCEL XP Pin
CSHighCommand13-May-04 5:29
CSHighCommand13-May-04 5:29 
GeneralDataSet Clear() performance problem Pin
Dan Bunea27-Feb-04 0:58
Dan Bunea27-Feb-04 0:58 
GeneralHas anyone deployed Vb.net Application using MDAC then plz help!!! Pin
Het210926-Feb-04 19:27
Het210926-Feb-04 19:27 
Generalobject procedures Pin
jlancaster26-Feb-04 16:00
jlancaster26-Feb-04 16:00 
GeneralRe: object procedures Pin
Dave Kreskowiak26-Feb-04 16:35
mveDave Kreskowiak26-Feb-04 16:35 
The VB compiler natively supports adding descriptions using the Description attribute. These will appear in the Object Browser and below the Properties box in the bottom right corner of the IDE, but will NOT show up in Intellisense. For this, you have to use a plug-in like VBCommenter. You can find that here[^].

An example of the Description attribute:
        <Category("Appearance"), _
         Description("Set the number of LEDs to display."), _
         DefaultValue(4), _
         Bindable(True)> _
        Public Property SizeInBits() As Integer
            Get
                Return m_SizeInBits
            End Get
            Set(ByVal NewValue As Integer)
                If NewValue < 1 Or NewValue > 32 Then
                    Throw New ArgumentOutOfRangeException("SizeInBits", "Value must be between 1 and 32.")
                Else
                    m_SizeInBits = NewValue
                    OnSizeInBitsChanged(EventArgs.Empty)
 
                    If m_Value >= (2 ^ m_SizeInBits) Then
                        m_Value = 0
                        OnValueChanged(EventArgs.Empty)
                    End If
                End If
            End Set
        End Property



RageInTheMachine9532
QuestionSub Main? Pin
Anonymous26-Feb-04 10:19
Anonymous26-Feb-04 10:19 
AnswerRe: Sub Main? Pin
Charlie Williams26-Feb-04 10:45
Charlie Williams26-Feb-04 10:45 
AnswerRe: Sub Main? Pin
John Kuhn26-Feb-04 16:04
John Kuhn26-Feb-04 16:04 
GeneralRe: Sub Main? Pin
Dave Kreskowiak26-Feb-04 16:26
mveDave Kreskowiak26-Feb-04 16:26 
GeneralRe: Sub Main? Pin
John Kuhn26-Feb-04 17:52
John Kuhn26-Feb-04 17:52 
GeneralRe: Sub Main? Pin
Dave Kreskowiak27-Feb-04 3:22
mveDave Kreskowiak27-Feb-04 3:22 
AnswerRe: Sub Main? Pin
gpa20001-Mar-04 20:37
gpa20001-Mar-04 20:37 
GeneralMultiple Monitors Pin
Robert Gronenthal26-Feb-04 3:18
Robert Gronenthal26-Feb-04 3:18 
GeneralRe: Multiple Monitors Pin
Charlie Williams26-Feb-04 6:30
Charlie Williams26-Feb-04 6:30 
GeneralRe: Multiple Monitors Pin
apferreira26-Feb-04 8:02
apferreira26-Feb-04 8:02 
GeneralXP look needed in vb applications Pin
FASTian26-Feb-04 3:06
FASTian26-Feb-04 3:06 
GeneralRe: XP look needed in vb applications Pin
Niels Penneman26-Feb-04 21:42
Niels Penneman26-Feb-04 21:42 
QuestionPassword viewer??? Pin
erikkloeze25-Feb-04 21:37
erikkloeze25-Feb-04 21:37 
AnswerRe: Password viewer??? Pin
Dave Kreskowiak26-Feb-04 2:09
mveDave Kreskowiak26-Feb-04 2:09 
GeneralDeclaring Custom Variables/Properties Pin
Codemonkey8525-Feb-04 13:31
Codemonkey8525-Feb-04 13:31 
GeneralRe: Declaring Custom Variables/Properties Pin
John Kuhn25-Feb-04 14:07
John Kuhn25-Feb-04 14:07 
GeneralRe: Declaring Custom Variables/Properties Pin
Codemonkey8510-Mar-04 12:14
Codemonkey8510-Mar-04 12:14 

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.