Click here to Skip to main content
16,005,682 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: "Too many arguments to Public Sub New()" Pin
Dave Kreskowiak25-Jun-04 11:56
mveDave Kreskowiak25-Jun-04 11:56 
GeneralRe: "Too many arguments to Public Sub New()" Pin
tanstaafl2825-Jun-04 13:25
tanstaafl2825-Jun-04 13:25 
GeneralRe: "Too many arguments to Public Sub New()" Pin
Dave Kreskowiak25-Jun-04 17:18
mveDave Kreskowiak25-Jun-04 17:18 
GeneralRe: "Too many arguments to Public Sub New()" Pin
tanstaafl2825-Jun-04 20:42
tanstaafl2825-Jun-04 20:42 
GeneralMost Commonly Used Classes Pin
tanstaafl2825-Jun-04 9:40
tanstaafl2825-Jun-04 9:40 
GeneralRe: Most Commonly Used Classes Pin
Dave Kreskowiak25-Jun-04 10:25
mveDave Kreskowiak25-Jun-04 10:25 
GeneralRe: Most Commonly Used Classes Pin
tanstaafl2825-Jun-04 10:36
tanstaafl2825-Jun-04 10:36 
GeneralRe: Most Commonly Used Classes Pin
VenkatFor.NET25-Jun-04 11:51
VenkatFor.NET25-Jun-04 11:51 
Namespaces, I would say to categorize a set of classes. Say, you have classes SqlClient, OracleClient. These two belong to Data manipulation. So, they can be a part of the namespace Data. code may go like this

Namespace System.Data
Public Class SqlClient
Sub SqlConnection ()
End Sub
End Class

Public Class OracleClient
Sub OracleConnection()
End Sub
End Class
End Namespace

Here in this case, if you import System.Data you will have access to both SqlClient and OracleClient classes directly.
Else if you just import System Namespace, you will have to refer to these classes as follows

Dim s as Data.SqlClient
Dim o as Data.OracleClient

I would say namespaces or just for the sake of simplicity in code. So, one namespace is a group of multiple classes.




Bhaskara
GeneralRe: Most Commonly Used Classes Pin
tanstaafl2825-Jun-04 13:23
tanstaafl2825-Jun-04 13:23 
GeneralRe: Most Commonly Used Classes Pin
Dave Kreskowiak25-Jun-04 11:53
mveDave Kreskowiak25-Jun-04 11:53 
GeneralRe: Most Commonly Used Classes Pin
tanstaafl2825-Jun-04 13:23
tanstaafl2825-Jun-04 13:23 
GeneralRe: Most Commonly Used Classes Pin
Dave Kreskowiak25-Jun-04 17:18
mveDave Kreskowiak25-Jun-04 17:18 
GeneralRe: Most Commonly Used Classes Pin
tanstaafl2825-Jun-04 20:32
tanstaafl2825-Jun-04 20:32 
GeneralProbs with Faxing Pin
sandeegk7725-Jun-04 8:19
sandeegk7725-Jun-04 8:19 
GeneralCrystal Report Problem Pin
htourne25-Jun-04 7:56
htourne25-Jun-04 7:56 
GeneralRe: Crystal Report Problem Pin
Mekong River26-Jun-04 18:32
Mekong River26-Jun-04 18:32 
Generalreading from a notepad Pin
GaryKoh25-Jun-04 6:36
GaryKoh25-Jun-04 6:36 
GeneralRe: reading from a notepad Pin
Dave Kreskowiak25-Jun-04 7:21
mveDave Kreskowiak25-Jun-04 7:21 
GeneralRe: reading from a notepad Pin
GaryKoh25-Jun-04 16:12
GaryKoh25-Jun-04 16:12 
GeneralRe: reading from a notepad Pin
Dave Kreskowiak26-Jun-04 18:07
mveDave Kreskowiak26-Jun-04 18:07 
GeneralRe: reading from a notepad Pin
GaryKoh27-Jun-04 16:49
GaryKoh27-Jun-04 16:49 
GeneralPutting Controls on MDI Parent Window Pin
gthompson200525-Jun-04 1:52
gthompson200525-Jun-04 1:52 
GeneralRe: Putting Controls on MDI Parent Window Pin
Dave Kreskowiak25-Jun-04 4:19
mveDave Kreskowiak25-Jun-04 4:19 
GeneralRe: Putting Controls on MDI Parent Window Pin
gthompson200525-Jun-04 15:10
gthompson200525-Jun-04 15:10 
GeneralRe: Putting Controls on MDI Parent Window Pin
Dave Kreskowiak25-Jun-04 17:17
mveDave Kreskowiak25-Jun-04 17:17 

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.