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

Visual Basic

 
AnswerRe: how to Convert HTML to MSAccess using VB6.0 Pin
CPallini10-Jan-07 21:38
mveCPallini10-Jan-07 21:38 
QuestionVb Code Pin
KVinoth10-Jan-07 21:17
KVinoth10-Jan-07 21:17 
JokeSure about? Pin
CPallini10-Jan-07 21:18
mveCPallini10-Jan-07 21:18 
QuestionVb Code Pin
KVinoth10-Jan-07 21:12
KVinoth10-Jan-07 21:12 
AnswerRe: Vb Code Pin
Guffa10-Jan-07 21:52
Guffa10-Jan-07 21:52 
Questionreporting by crystal report Pin
Pradip Kishore10-Jan-07 20:30
Pradip Kishore10-Jan-07 20:30 
Questiondifference between shadows and overloads in vb.net. Pin
amaneet10-Jan-07 20:20
amaneet10-Jan-07 20:20 
AnswerRe: difference between shadows and overloads in vb.net. Pin
testy_proconsul10-Jan-07 20:52
testy_proconsul10-Jan-07 20:52 
For example you have a base class:

Public Class Exhibitionist

Public Sub Show()
End Sub

End Class


and another class which derives from the Exhibitionist class:

Public Class SpecializedExhibitionist
Inherits Exhibitionist

---A)
Public Shadows Sub Show()
End Sub


---B)
Public Overload Sub Show( ByVal fullInfo As Boolean)
End Sub

End Class


- with version A) you can call
SpecializedExhibitionist_Instance.Show()

- with version B) you can call
SpecializedExhibitionist_Instance.Show()
SpecializedExhibitionist_Instance.Show( true )


Shadows means, that the Function "Show" of the base class is "cloaked"
Overloads means, that you add a new "Show" function with other parameters

solidIT.de - under construction
Components for Microsoft .Net
audittrail, objectcomparer, deepcopy and much more ...

Questionproblem in vb.net Pin
amaneet10-Jan-07 20:12
amaneet10-Jan-07 20:12 
AnswerRe: problem in vb.net Pin
Christian Graus10-Jan-07 21:04
protectorChristian Graus10-Jan-07 21:04 
GeneralRe: problem in vb.net Pin
amaneet10-Jan-07 21:51
amaneet10-Jan-07 21:51 
GeneralRe: problem in vb.net Pin
Christian Graus11-Jan-07 8:28
protectorChristian Graus11-Jan-07 8:28 
Questiontextbox vb.net Pin
kumar22610-Jan-07 19:20
kumar22610-Jan-07 19:20 
AnswerRe: textbox vb.net Pin
EldieBongers10-Jan-07 21:59
EldieBongers10-Jan-07 21:59 
AnswerRe: textbox vb.net Pin
Johan Hakkesteegt11-Jan-07 3:01
Johan Hakkesteegt11-Jan-07 3:01 
Questiondll in vb.net 2005 Pin
amaneet10-Jan-07 19:18
amaneet10-Jan-07 19:18 
Questiondatabase help Pin
Pradip Kishore10-Jan-07 19:11
Pradip Kishore10-Jan-07 19:11 
AnswerRe: database help Pin
Johan Hakkesteegt11-Jan-07 3:10
Johan Hakkesteegt11-Jan-07 3:10 
GeneralRe: database help Pin
Pradip Kishore11-Jan-07 18:00
Pradip Kishore11-Jan-07 18:00 
GeneralRe: database help Pin
Johan Hakkesteegt11-Jan-07 20:18
Johan Hakkesteegt11-Jan-07 20:18 
Questiondatabase table exist or not. Pin
amaneet10-Jan-07 17:51
amaneet10-Jan-07 17:51 
Questiondiff b/w Object Based & Object oriented techonolgy? Pin
Rahithi10-Jan-07 17:16
Rahithi10-Jan-07 17:16 
AnswerRe: diff b/w Object Based & Object oriented techonolgy? Pin
Christian Graus10-Jan-07 18:14
protectorChristian Graus10-Jan-07 18:14 
GeneralRe: diff b/w Object Based & Object oriented techonolgy? Pin
Rahithi10-Jan-07 18:48
Rahithi10-Jan-07 18:48 
GeneralRe: diff b/w Object Based & Object oriented techonolgy? Pin
Christian Graus10-Jan-07 21:03
protectorChristian Graus10-Jan-07 21:03 

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.