473,806 Members | 2,253 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

overload constructors

How do you overload constructors in VB .net?

thanks

Portroe

Nov 20 '05 #1
7 1540
* portroe <bo*@sleigh.com > scripsit:
How do you overload constructors in VB .net?


\\\
Public Sub New()
...
End Sub

Public Sub New(ByVal Name As String)
...
End Sub
..
..
..
///

--
Herfried K. Wagner [MVP]
<http://www.mvps.org/dotnet>
Nov 20 '05 #2
do you mean something like this? (or a class that inherits and then
overloads?)

Public Class clsColli
Private colID As Integer
Private colNaam As String
Private colPrijs As Double
Private colOms As String

Public Sub New()
colID = 0
colNaam = ""
colOms = ""
colPrijs = 0
End Sub

Public Sub New(ByVal id As Integer)
Me.New()
colID = id

End Sub

Public Sub New(ByVal naam As String, Optional ByVal oms As String = "",
Optional ByVal prijs As Double = 0)
colID = 0
colNaam = naam
colOms = oms
colPrijs = prijs
End Sub
end class

"portroe" <bo*@sleigh.com > wrote in message
news:O9******** *****@TK2MSFTNG P09.phx.gbl...
How do you overload constructors in VB .net?

thanks

Portroe

Nov 20 '05 #3
'my constructor looks like this

Public Sub New(ByVal title As String, ByVal qualification As String,
ByVal age As Integer)

Me.iTitle = title
Me.iQualificati on = qualification
Me.iAge = age

End Sub

' I want to implement multiple constructor overloads under this

thanks

EricJ wrote:
do you mean something like this? (or a class that inherits and then
overloads?)

Public Class clsColli
Private colID As Integer
Private colNaam As String
Private colPrijs As Double
Private colOms As String

Public Sub New()
colID = 0
colNaam = ""
colOms = ""
colPrijs = 0
End Sub

Public Sub New(ByVal id As Integer)
Me.New()
colID = id

End Sub

Public Sub New(ByVal naam As String, Optional ByVal oms As String = "",
Optional ByVal prijs As Double = 0)
colID = 0
colNaam = naam
colOms = oms
colPrijs = prijs
End Sub
end class

"portroe" <bo*@sleigh.com > wrote in message
news:O9******** *****@TK2MSFTNG P09.phx.gbl...
How do you overload constructors in VB .net?

thanks

Portroe



Nov 20 '05 #4
then you can do as i said :)
you yust have to keep in mind you can't have 2 constructors w the same type
of parameters

ex.

public sub new(x as integer, y as string)
xke= x
yke= y
end sub
public sub new(x as integer, z as string) ' will give an error, you are
passing an integer and a string 2 times the program won't know w one you
mean
xke= x
zke= y
end sub

'you can do this
public sub new(z as string, x as integer)
xke= x
zke= y
end sub

"portroe" <bo*@sleigh.com > wrote in message
news:u0******** ******@TK2MSFTN GP10.phx.gbl...
'my constructor looks like this

Public Sub New(ByVal title As String, ByVal qualification As String,
ByVal age As Integer)

Me.iTitle = title
Me.iQualificati on = qualification
Me.iAge = age

End Sub

' I want to implement multiple constructor overloads under this

thanks

Nov 20 '05 #5
"portroe" <bo*@sleigh.com > schrieb
How do you overload constructors in VB .net?


Like other methods.

And, no, constructors are not inherited.
--
Armin

http://www.plig.net/nnq/nquote.html
http://www.netmeister.org/news/learn2quote.html

Nov 20 '05 #6
'Overloaded ' ***** Signatures must be different

Public Sub New( ByVal title As String, ByVal qualification As String) '
only two parameters

End Sub

'AND

Public Sub New( ByVal title As String ) ' only one parameters

End Sub

'AND

Public Sub New( ) ' Zero parameters

End Sub
Now your Constructor can be any of the above.

*** Note - here you are overloading constructors. Dont forget, if you
override a constructor, remember to call MyBase.New() from the overridden
constrcutor.

Regards - OHM


portroe wrote:
'my constructor looks like this

Public Sub New(ByVal title As String, ByVal qualification As String,
ByVal age As Integer)

Me.iTitle = title
Me.iQualificati on = qualification
Me.iAge = age

End Sub

' I want to implement multiple constructor overloads under this

thanks

EricJ wrote:
do you mean something like this? (or a class that inherits and then
overloads?)

Public Class clsColli
Private colID As Integer
Private colNaam As String
Private colPrijs As Double
Private colOms As String

Public Sub New()
colID = 0
colNaam = ""
colOms = ""
colPrijs = 0
End Sub

Public Sub New(ByVal id As Integer)
Me.New()
colID = id

End Sub

Public Sub New(ByVal naam As String, Optional ByVal oms As
String = "", Optional ByVal prijs As Double = 0)
colID = 0
colNaam = naam
colOms = oms
colPrijs = prijs
End Sub
end class

"portroe" <bo*@sleigh.com > wrote in message
news:O9******** *****@TK2MSFTNG P09.phx.gbl...
How do you overload constructors in VB .net?

thanks

Portroe


Best Regards - OHMBest Regards - OHM On**********@BT Internet.Com
Nov 20 '05 #7
* portroe <bo*@sleigh.com > scripsit:
'my constructor looks like this

Public Sub New(ByVal title As String, ByVal qualification As String,
ByVal age As Integer)
Me.iTitle = title
Me.iQualificati on = qualification
Me.iAge = age

End Sub

' I want to implement multiple constructor overloads under this


What's the problem? Notice that the different overloads must have a
different signature (number of parameters, type of parameters).

--
Herfried K. Wagner [MVP]
<http://www.mvps.org/dotnet>
Nov 20 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
1613
by: Wolfgang Jeltsch | last post by:
Hello, consider the following code: #include <iostream.h> template < typename T > int f( T v ) { return 0; }
4
1897
by: Chiller | last post by:
Ok, thanks to some good assistance/advice from people in this group I've been able to further develop my Distance class. Since previous posts I've refined my code to accept the unit measurement as a char rather than incorrectly representing it as an int. I've done this because I want to develop the class so that it will be able to convert between values, ie if I add 500 m to 1 km I'd like a correct result given in metres (1500 m in this...
7
4676
by: Sean | last post by:
Can someone help me see why the following "operator=" overloading doesn't work under g++? and the error message is copied here. I see no reason the compiler complain this. Thanks, $ g++ copyconstructor1.cpp #copyconstructor1.cpp: In function `int main()': #copyconstructor1.cpp:86: no match for `sample& = sample' operator #copyconstructor1.cpp:53: candidates are: sample sample::operator=(sample&) ...
10
2679
by: Benny Raymond | last post by:
I'm trying to change the way a treeview works just a bit, i'm pretty new to C# and now i'm running into overloading. I tried the following code and it's yelling at me saying that no overload method takes 0 arguments. #region tViewNodeCollection public class tViewNodeCollection : TreeNodeCollection { private tView _owner; private tViewNode _parent; /// <summary>
2
3300
by: sparks | last post by:
I had the bright idea of using if/else to call different constructors based on a web form and what the user entered. ======================================= IF I DECLARE this here everything works fine... ====>>>> Member member = new Member(); ======================================= public void Button1_Click(object sender,System.EventArgs e) { if (ContractNumber.Text =="")
7
2193
by: Raghu | last post by:
Hello All, I need some help regarding overloading operation. Is there any way to overload typecasting? I mean if i have a piece of code as below. int a = 2: float b; b = (float)a;
3
8300
by: needin4mation | last post by:
The code is taken from the book Professional C#: abstract class GenericCustomer { private string name; public GenericCustomer(string name) { this.name = name; }...
9
2318
by: Anthony Williams | last post by:
Hi, Should the following compile, and what should it print? #include <memory> #include <iostream> void foo(std::auto_ptr<intx) { std::cout<<"copy"<<std::endl;
1
1756
by: fabian.lim | last post by:
Hi all, Im having a problem with my code. Im programming a vector class, and am trying to overload the () operator in 2 different situations. The first situation is to assign values, e.g. Y = X(1,2), the elements 1 and 2 of X gets assigned to Y. In this case, the operator () overload should create a copy that is unmodifiable. In the 2nd case, I want do assign values to elements 1 and 2, e.g. X(1,2) = Y. Then in this case, the values...
0
9718
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10617
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10370
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9186
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7649
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6876
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5545
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5678
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
3008
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.