Click here to Skip to main content
15,896,727 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: accept a string and convert the case of the characters Pin
EliottA27-May-09 11:25
EliottA27-May-09 11:25 
AnswerRe: accept a string and convert the case of the characters Pin
Luc Pattyn27-May-09 11:39
sitebuilderLuc Pattyn27-May-09 11:39 
QuestionDate Design Suggestion... Pin
smjunior0927-May-09 7:36
smjunior0927-May-09 7:36 
AnswerRe: Date Design Suggestion... Pin
Dave Kreskowiak27-May-09 7:46
mveDave Kreskowiak27-May-09 7:46 
GeneralRe: Date Design Suggestion... Pin
smjunior0927-May-09 7:53
smjunior0927-May-09 7:53 
GeneralRe: Date Design Suggestion... Pin
Dave Kreskowiak27-May-09 10:22
mveDave Kreskowiak27-May-09 10:22 
QuestionSubclass a Control by UserControl Pin
Samir Ibrahim27-May-09 6:36
Samir Ibrahim27-May-09 6:36 
AnswerRe: Subclass a Control by UserControl Pin
EliottA27-May-09 7:03
EliottA27-May-09 7:03 
Case sensativity, Version is a property and you're using it as a variable, so Version = value wouldn't work, I'm assuming your Version property is referencing m_Version, a private variable that the property Version reflects on.

Samir Ibrahim wrote:
'Me.Version = "1.0" ' Warning 3 Property 'Version' doesn't return a value on all code paths.


will not work, nor should it, you should use
Return m_Version

which is your private variable


Consider the property Version as an interface to your m_Version variable, you do not change the Property but merely what the Property reflects.


GeneralRe: Subclass a Control by UserControl Pin
Samir Ibrahim27-May-09 21:37
Samir Ibrahim27-May-09 21:37 
AnswerRe: Subclass a Control by UserControl Pin
Dave Kreskowiak27-May-09 7:10
mveDave Kreskowiak27-May-09 7:10 
GeneralRe: Subclass a Control by UserControl Pin
Samir Ibrahim27-May-09 21:36
Samir Ibrahim27-May-09 21:36 
GeneralRe: Subclass a Control by UserControl Pin
Dave Kreskowiak28-May-09 2:19
mveDave Kreskowiak28-May-09 2:19 
GeneralRe: Subclass a Control by UserControl Pin
Samir Ibrahim28-May-09 3:46
Samir Ibrahim28-May-09 3:46 
GeneralRe: Subclass a Control by UserControl Pin
Nagy Vilmos28-May-09 3:56
professionalNagy Vilmos28-May-09 3:56 
GeneralRe: Subclass a Control by UserControl Pin
Samir Ibrahim28-May-09 4:19
Samir Ibrahim28-May-09 4:19 
GeneralRe: Subclass a Control by UserControl Pin
Nagy Vilmos28-May-09 4:35
professionalNagy Vilmos28-May-09 4:35 
GeneralRe: Subclass a Control by UserControl Pin
Dave Kreskowiak28-May-09 5:38
mveDave Kreskowiak28-May-09 5:38 
GeneralRe: Subclass a Control by UserControl Pin
Dave Kreskowiak28-May-09 4:21
mveDave Kreskowiak28-May-09 4:21 
GeneralRe: Subclass a Control by UserControl Pin
Trollslayer28-May-09 3:03
mentorTrollslayer28-May-09 3:03 
GeneralRe: Subclass a Control by UserControl Pin
Nagy Vilmos28-May-09 3:20
professionalNagy Vilmos28-May-09 3:20 
GeneralRe: Subclass a Control by UserControl Pin
Samir Ibrahim28-May-09 3:58
Samir Ibrahim28-May-09 3:58 
GeneralRe: Subclass a Control by UserControl Pin
EliottA28-May-09 5:32
EliottA28-May-09 5:32 
GeneralRe: Subclass a Control by UserControl Pin
Nagy Vilmos28-May-09 5:34
professionalNagy Vilmos28-May-09 5:34 
GeneralRe: Subclass a Control by UserControl Pin
Jerry Hammond28-May-09 3:41
Jerry Hammond28-May-09 3:41 
GeneralRe: Subclass a Control by UserControl Pin
Samir Ibrahim28-May-09 4:05
Samir Ibrahim28-May-09 4:05 

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.