Sponsored Links

Interview Questions



INTERVIEW QUESTIONS MICROSOFT VB.NET DETAILS

Question: How do you define a read only property in a class module?

Answer: Declare Only Get function of the property.

Category VB.NET Interview Questions & Answers - Exam Mode / Learning Mode
Rating (0.3) By 6767 users
Added on 11/22/2012
Views 74000
Rate it!

Question: How do you define a read only property in a class module?

Answer:

Declare Only Get function of the property. Source: CoolInterview.com

Answered by: Roopa | Date: 1/23/2008 | Contact Roopa Contact Roopa

Public Class YourClass
Private yourName As String
Private yourNumber As Decimal

Public Sub New(breed As String)
yourName = breed
End Sub

Public ReadOnly Property Name() As String
Get
Return yourName
End Get
End Property

Source: CoolInterview.com

Answered by: RajeeVenkat | Date: 1/28/2008 | Contact RajeeVenkat Contact RajeeVenkat

we can create a read only property by using the keyword "Read only" before the syntax .
e.g
Read only property Property_name([args]) as type
get
[statement]
end get
end property
Source: CoolInterview.com

Answered by: Ateev | Date: 1/28/2008 | Contact Ateev Contact Ateev

Don't use Set block only use Get block in the property. Source: CoolInterview.com

Answered by: Sachin Bhalerao | Date: 1/29/2008 | Contact Sachin Bhalerao Contact Sachin Bhalerao

Read-only is a variable.
It can't change by user.It can change itself
EX-
class a
{
datetime dt=new datetime();
dt.now();
}
Source: CoolInterview.com

Answered by: praveen Kumar | Date: 2/7/2008 | Contact praveen Kumar Contact praveen Kumar

To Define a read only property in a class module you have to specify the "ReadOnly" Access Identifier in the Property Definition.

The example below will explain it better.

Public Class clsConnection

Public ReadOnly Property strConnString() As String
Get
strConnString = "Some Connection String here"
Return strConnString = ""

End Get
End Property
End Class Source: CoolInterview.com

Answered by: Ravindra Gautam | Date: 3/6/2008 | Contact Ravindra Gautam Contact Ravindra Gautam

Just enter the object name which is to be read only and after placing period select read only option from context menu and make it true

Textbox tb = new Textbox()
tb.readonly = true Source: CoolInterview.com

Answered by: D.R.DILIP | Date: 3/14/2008 | Contact D.R.DILIP Contact D.R.DILIP

Option Strict On

Public Class YourClass
Private yourName As String
Private yourNumber As Decimal

Public Sub New(breed As String)
yourName = breed
End Sub

Public ReadOnly Property Name() As String
Get
Return yourName
End Get
End Property

Public Property Number() As Decimal
Get
Return yourNumber
End Get

Set
yourNumber = CDec(value)
End Set
End Property

Public Sub ShowInfo()
Console.WriteLine("This " & yourName & " weighs " & yourNumber & " pounds.")
End Sub
End Class

Public Class Tester
Public Shared Sub Main()
Dim mal As New YourClass("A")

mal.Number = 130
ChangeYourClassInfo(mal)
mal.ShowInfo
CompletelyChangeYourClassInfo(mal)
mal.ShowInfo
End Sub

Public Shared Sub ChangeYourClassInfo(ByVal aYourClass As YourClass)
aYourClass.Number = 125
End Sub

Public Shared Sub CompletelyChangeYourClassInfo(ByVal aYourClass As YourClass)
Dim newf As New YourClass("Newfoundland")
aYourClass = newf
End Sub
End Class


Source: CoolInterview.com

Answered by: SORNALAKSHMI S.K. | Date: 3/16/2008 | Contact SORNALAKSHMI S.K. Contact SORNALAKSHMI S.K.


If you have the better answer, then send it to us. We will display your answer after the approval.
Rules to Post Answers in CoolInterview.com:-
  • There should not be any Spelling Mistakes.
  • There should not be any Gramatical Errors.
  • Answers must not contain any bad words.
  • Answers should not be the repeat of same answer, already approved.
  • Answer should be complete in itself.
Name :*
Email Id :*
Answer :*
Verification Code Code Image - Please contact webmaster if you have problems seeing this image code Not readable? Load New Code
Process Verification Enter the above shown code: *
Inform me about updated answers to this question

Related Questions
View Answer
what is the difference between string and stringbuilder?
View Answer
what is non_deterministic finalization?
View Answer
Differences between VB.Net and C#, related to OOPS concepts

View Answer
What is different between Web.Config and Machine.Config and Where it will be ?

View Answer
How to store and retrieve images in SQL server database through VB.NET?

View Answer
1)What is the difference between vb and vb.net ?
2)How to insert row by row data in datagrid ?
3) How to work with repeater controls and give small example program ?


View Answer
What do you mean by 'Option Strict On' ?

View Answer
What are Jagged Arrarys ?

View Answer
What are Satellite Assemblies?

View Answer
How can we remove Handlers at Run time ?

View Answer
What is .net?


View Answer
Can any body tell me the code procedure for preparing parameterized cristel reports.the report should be generated by taking to or more parameters.
example: report should be genarated FROM DATE to TODATE

View Answer
Please list some final year projects that can be done using vb.net in the application level.

View Answer
What is the base class of .net?

View Answer
How does CLR solves dll hell?
How does it achieves Profiling and debugging services and Simplified deployment and versioning?

View Answer
Whats the difference bt. .dll extension and .exe extension files?

View Answer
How to send xml file on server using HTTP protocol?

View Answer
How VB Implements the Disonnected Architecture as like VB.Net?

View Answer
How can i extract the formated word(bold,italic,underline,font,color etc) from the msword file.

View Answer
Differences between VB.Net and C#, related to OOPS concepts

View Answer

Please Note: We keep on updating better answers to this site. In case you are looking for Jobs, Pls Click Here Vyoms.com - Best Freshers & Experienced Jobs Website.

View All VB.NET Interview Questions & Answers - Exam Mode / Learning Mode



User Options
India News Network

Latest 20 Questions
Payment of time- barred debt is: (a) Valid (b) Void (c) Illegal (d) Voidable
Consideration is defined in the Indian Contract Act,1872 in: (a) Section 2(f) (b) Section 2(e) (c) Section 2(g) (d) Section 2(d)
Which of the following is not an exception to the rule, "No consideration, No contract": (a) Natural love and affection (b) Compensation for involuntary services (c) Completed gift (d) Agency
Consideration must move at the desire of: (a) The promisor (b) The promisee (c) The promisor or any other party (d) Both the promisor and the promisee
An offer which is open for acceptance over a period of time is: (a) Cross Offer (b) Counter Offer (c) Standing Offer (d) Implied Offer
Specific offer can be communicated to__________ (a) All the parties of contract (b) General public in universe (c) Specific person (d) None of the above
_________ amounts to rejection of the original offer. (a) Cross offer (b) Special offer (c) Standing offer (d) Counter offer
A advertises to sell his old car by advertising in a newspaper. This offer is caleed: (a) General Offer (b) Special Offer (c) Continuing Offer (d) None of the above
In case a counter offer is made, the original offer stands: (a) Rejected (b) Accepted automatically (c) Accepted subject to certain modifications and variations (d) None of the above
In case of unenforceable contract having some technical defect, parties (a) Can sue upon it (b) Cannot sue upon it (c) Should consider it to be illegal (d) None of the above
If entire specified goods is perished before entering into contract of sale, the contract is (a) Valid (b) Void (c) Voidable (d) Cancelled
______________ contracts are also caled contracts with executed consideration. (a) Unilateral (b) Completed (c) Bilateral (d) Executory
A offers B to supply books @ Rs 100 each but B accepts the same with condition of 10% discount. This is a case of (a) Counter Offer (b) Cross Offer (c) Specific Offer (d) General Offer
_____________ is a game of chance. (a) Conditional Contract (b) Contingent Contract (c) Wagering Contract (d) Quasi Contract
There is no binding contract in case of _______ as one's offer cannot be constructed as acceptance (a) Cross Offer (b) Standing Offer (c) Counter Offer (d) Special Offer
An offer is made with an intention to have negotiation from other party. This type of offer is: (a) Invitation to offer (b) Valid offer (c) Voidable (d) None of the above
When an offer is made to the world at large, it is ____________ offer. (a) Counter (b) Special (c) General (d) None of the above
Implied contract even if not in writing or express words is perfectly _______________ if all the conditions are satisfied:- (a) Void (b) Voidable (c) Valid (d) Illegal
A specific offer can be accepted by ___________. (a) Any person (b) Any friend to offeror (c) The person to whom it is made (d) Any friend of offeree
An agreement toput a fire on a person's car is a ______: (a) Legal (b) Voidable (c) Valid (d) Illegal



Fresher Jobs | Experienced Jobs | Government Jobs | Walkin Jobs | Company Profiles | Interview Questions | Placement Papers | Companies In India | Consultants In India | Colleges In India | Exams In India | Latest Results | Notifications In India | Call Centers In India | Training Institutes In India | Job Communities In India | Courses In India | Jobs by Keyskills | Jobs by Functional Areas

Testing Articles | Testing Books | Testing Certifications | Testing FAQs | Testing Downloads | Testing Interview Questions | Testing Jobs | Testing Training Institutes

Gate Articles | Gate Books | Gate Colleges | Gate Downloads | Gate Faqs | Gate Jobs | Gate News | Gate Sample Papers | Gate Training Institutes

MBA Articles | MBA Books | MBA Case Studies | MBA Business Schools | MBA Current Affairs | MBA Downloads | MBA Events | MBA Notifications | MBA FAQs | MBA Jobs
MBA Job Consultants | MBA News | MBA Results | MBA Courses | MBA Sample Papers | MBA Interview Questions | MBA Training Institutes

GRE Articles | GRE Books | GRE Colleges | GRE Downloads | GRE Events | GRE FAQs | GRE News | GRE Training Institutes | GRE Sample Papers

IAS Articles | IAS Books | IAS Current Affairs | IAS Downloads | IAS Events | IAS FAQs | IAS News | IAS Notifications | IAS UPSC Jobs | IAS Previous Question Papers
IAS Results | IAS Sample Papers | IAS Interview Questions | IAS Training Institutes | IAS Toppers Interview

SAP Articles | SAP Books | SAP Certifications | SAP Companies | SAP Study Materials | SAP Events | SAP FAQs | SAP Jobs | SAP Job Consultants
SAP Links | SAP News | SAP Sample Papers | SAP Interview Questions | SAP Training Institutes |




Copyright ©2003-2024 CoolInterview.com, All Rights Reserved.
Privacy Policy | Terms and Conditions