Click here to Skip to main content
16,004,969 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: add listview like a childnode after all child nodes in a treeview Pin
Dave Kreskowiak21-Feb-06 13:25
mveDave Kreskowiak21-Feb-06 13:25 
Questionpassing parameters to crystal report problem Pin
microuser_200019-Feb-06 23:47
microuser_200019-Feb-06 23:47 
QuestionSystem.Xml.XmlException Pin
DJLarZ19-Feb-06 23:30
DJLarZ19-Feb-06 23:30 
AnswerRe: System.Xml.XmlException Pin
Dave Kreskowiak20-Feb-06 4:58
mveDave Kreskowiak20-Feb-06 4:58 
QuestionAccessing Mainframe from VB Pin
niraj_mall19-Feb-06 23:00
niraj_mall19-Feb-06 23:00 
AnswerRe: Accessing Mainframe from VB Pin
Dave Kreskowiak20-Feb-06 4:53
mveDave Kreskowiak20-Feb-06 4:53 
QuestionVB. Net OO? Pin
MatthysDT19-Feb-06 22:50
MatthysDT19-Feb-06 22:50 
AnswerRe: VB. Net OO? Pin
Roy Heil20-Feb-06 3:24
professionalRoy Heil20-Feb-06 3:24 
Your questions are confusing, but I will give it a try...

It's my understanding that object can be referenced by other objects, does this mean that if it's value changes, other object needn't ask it what it's new value is?

No, it does not mean that. If you have a class C, which has a property x, from which you make an object O, then you can reference that property as O.x. If the value of x changes, and after it changes you reference O.x again, you will get the new value. Technically, you are asking for it's new value when you do this.

If I have a "Public Overridable ReadOnly Property" which is in a class that I did not create, how can I add my code to that property? I can't edit code in a COM control's class, maybe override??

Yes, if the class is overridable, then you can override it. You can define a class C2 which can inherit class C. In C2 you can define a new x method using your own code. Then when you make an object O2 from C2, you can reference O2.x and it will use your new code. However, if you reference some other property that you did not override is C2, say O2.y, then it will use the code from the original C.y.

I hope this helps.


Roy.
QuestionWhy no event handler for Listbox control? Pin
KaKa'19-Feb-06 22:44
KaKa'19-Feb-06 22:44 
AnswerRe: Why no event handler for Listbox control? Pin
Dave Kreskowiak20-Feb-06 4:48
mveDave Kreskowiak20-Feb-06 4:48 
AnswerRe: Why no event handler for Listbox control? Pin
Craster20-Feb-06 4:54
Craster20-Feb-06 4:54 
GeneralRe: Why no event handler for Listbox control? Pin
KaKa'20-Feb-06 15:30
KaKa'20-Feb-06 15:30 
QuestionCompare Two Email in VB.NET Pin
cylix200019-Feb-06 21:42
cylix200019-Feb-06 21:42 
QuestionImplementing BeginUpdate in form? Pin
matsnas19-Feb-06 21:16
matsnas19-Feb-06 21:16 
AnswerRe: Implementing BeginUpdate in form? Pin
Dave Kreskowiak20-Feb-06 4:40
mveDave Kreskowiak20-Feb-06 4:40 
QuestionLoading Command prompt from vb6 Pin
miftha19-Feb-06 20:56
miftha19-Feb-06 20:56 
AnswerRe: Loading Command prompt from vb6 Pin
PremalathaP20-Feb-06 1:16
PremalathaP20-Feb-06 1:16 
AnswerRe: Loading Command prompt from vb6 Pin
Dave Kreskowiak20-Feb-06 4:30
mveDave Kreskowiak20-Feb-06 4:30 
QuestionHELP.. inheriting user controls Pin
john_eight19-Feb-06 16:41
john_eight19-Feb-06 16:41 
Question.net 2005 how to solve warning problem? Pin
ah Chung19-Feb-06 15:16
ah Chung19-Feb-06 15:16 
AnswerRe: .net 2005 how to solve warning problem? Pin
Dave Kreskowiak19-Feb-06 15:35
mveDave Kreskowiak19-Feb-06 15:35 
GeneralRe: .net 2005 how to solve warning problem? Pin
ah Chung19-Feb-06 18:11
ah Chung19-Feb-06 18:11 
QuestionWinforms DataGrid with multi-line column headers - how?! Pin
nzmike19-Feb-06 15:13
nzmike19-Feb-06 15:13 
AnswerRe: Winforms DataGrid with multi-line column headers - how?! Pin
Dave Kreskowiak19-Feb-06 16:51
mveDave Kreskowiak19-Feb-06 16:51 
GeneralRe: Winforms DataGrid with multi-line column headers - how?! Pin
nzmike21-Feb-06 10:48
nzmike21-Feb-06 10:48 

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.