Click here to Skip to main content
16,006,475 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Event Handling of drop down lists inside a Datagrid Problem Pin
Marcus J. Smith13-Feb-07 4:06
professionalMarcus J. Smith13-Feb-07 4:06 
GeneralRe: Event Handling of drop down lists inside a Datagrid Problem Pin
Huvandhuma13-Feb-07 15:47
Huvandhuma13-Feb-07 15:47 
GeneralRe: Event Handling of drop down lists inside a Datagrid Problem Pin
Marcus J. Smith14-Feb-07 3:07
professionalMarcus J. Smith14-Feb-07 3:07 
QuestionConvert to a string Pin
costavo13-Feb-07 2:58
costavo13-Feb-07 2:58 
AnswerRe: Convert to a string Pin
Dave Kreskowiak13-Feb-07 4:22
mveDave Kreskowiak13-Feb-07 4:22 
QuestionUsing "Me." to reference an object Pin
Marcus J. Smith13-Feb-07 2:35
professionalMarcus J. Smith13-Feb-07 2:35 
AnswerRe: Using "Me." to reference an object Pin
Colin Angus Mackay13-Feb-07 3:51
Colin Angus Mackay13-Feb-07 3:51 
AnswerRe: Using "Me." to reference an object Pin
Dave Kreskowiak13-Feb-07 4:13
mveDave Kreskowiak13-Feb-07 4:13 
It's just a programming style. The compiler assumes Me. unless otherwise specified. Some people overuse it to death, putting Me. in front of everything, making the code painfully to read, even more so in the C# world with this.. It just makes your code easier to read in certain situations by taking away some abiguity, like in Property methods:
Public Class SomeClass
 
    Private x As Integer
 
    Public Property X() As Integer
        Get
            Return Me.x
        End Get
        Set(ByVal value As Integer)
            Me.x = value
        End Set
    End Property
End Class





Dave Kreskowiak
Microsoft MVP - Visual Basic


GeneralRe: Using "Me." to reference an object Pin
Marcus J. Smith13-Feb-07 4:22
professionalMarcus J. Smith13-Feb-07 4:22 
GeneralRe: Using "Me." to reference an object Pin
Colin Angus Mackay13-Feb-07 4:22
Colin Angus Mackay13-Feb-07 4:22 
GeneralRe: Using "Me." to reference an object Pin
Dave Kreskowiak13-Feb-07 5:55
mveDave Kreskowiak13-Feb-07 5:55 
Questionpaint event problem? Pin
.NetRams13-Feb-07 1:06
.NetRams13-Feb-07 1:06 
AnswerRe: paint event problem? Pin
Dave Kreskowiak13-Feb-07 4:05
mveDave Kreskowiak13-Feb-07 4:05 
GeneralRe: paint event problem? Pin
.NetRams13-Feb-07 19:17
.NetRams13-Feb-07 19:17 
GeneralRe: paint event problem? Pin
Dave Kreskowiak15-Feb-07 4:19
mveDave Kreskowiak15-Feb-07 4:19 
AnswerRe: paint event problem? Pin
Navneet Hegde14-Feb-07 2:54
Navneet Hegde14-Feb-07 2:54 
QuestionCreating enum at runtime and showing it on a property grid Pin
THEMYTH12-Feb-07 23:30
THEMYTH12-Feb-07 23:30 
AnswerRe: Creating enum at runtime and showing it on a property grid Pin
Dave Kreskowiak13-Feb-07 4:02
mveDave Kreskowiak13-Feb-07 4:02 
AnswerRe: Creating enum at runtime and showing it on a property grid Pin
TwoFaced13-Feb-07 9:20
TwoFaced13-Feb-07 9:20 
QuestionHow to programmatically set Admin privilege for exe (Vista) Pin
sp_ranjan12-Feb-07 22:42
sp_ranjan12-Feb-07 22:42 
AnswerRe: How to programmatically set Admin privilege for exe (Vista) Pin
Colin Angus Mackay13-Feb-07 1:46
Colin Angus Mackay13-Feb-07 1:46 
GeneralRe: How to programmatically set Admin privilege for exe (Vista) Pin
sp_ranjan13-Feb-07 2:25
sp_ranjan13-Feb-07 2:25 
GeneralRe: How to programmatically set Admin privilege for exe (Vista) Pin
Dave Kreskowiak13-Feb-07 2:37
mveDave Kreskowiak13-Feb-07 2:37 
GeneralRe: How to programmatically set Admin privilege for exe (Vista) Pin
sp_ranjan13-Feb-07 2:52
sp_ranjan13-Feb-07 2:52 
GeneralRe: How to programmatically set Admin privilege for exe (Vista) Pin
Dave Kreskowiak13-Feb-07 3:58
mveDave Kreskowiak13-Feb-07 3:58 

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.