Click here to Skip to main content
15,887,485 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionCheque Printing Pin
hareeshvs17-Jul-07 0:21
hareeshvs17-Jul-07 0:21 
AnswerRe: Cheque Printing Pin
Duncan Edwards Jones17-Jul-07 0:46
professionalDuncan Edwards Jones17-Jul-07 0:46 
GeneralRe: Cheque Printing Pin
hareeshvs17-Jul-07 1:01
hareeshvs17-Jul-07 1:01 
Questionhelp with sum expression Pin
Mr.Kode17-Jul-07 0:21
Mr.Kode17-Jul-07 0:21 
AnswerRe: help with sum expression Pin
Johan Hakkesteegt17-Jul-07 1:22
Johan Hakkesteegt17-Jul-07 1:22 
GeneralRe: help with sum expression Pin
Mr.Kode17-Jul-07 1:26
Mr.Kode17-Jul-07 1:26 
QuestionList Issue Pin
Tauseef A17-Jul-07 0:01
Tauseef A17-Jul-07 0:01 
AnswerRe: List Issue [modified] Pin
Tom Deketelaere17-Jul-07 1:06
professionalTom Deketelaere17-Jul-07 1:06 
the following link will convert c# to vb.net (I use it alot and it works fine(somethimes some adjustments are needed dough)):
http://www.developerfusion.co.uk/utilities/convertcsharptovb.aspx[^]

for you'r code this is the output:
Public Class EmployeeCollection<br />
	Inherits System.Collections.CollectionBase<br />
	Public Default Property Item(ByVal index As Integer) As Employee<br />
		Get<br />
			Return DirectCast(List(index), Employee)<br />
		End Get<br />
		Set<br />
			List(index) = value<br />
		End Set<br />
	End Property<br />
End Class


-- modified at 7:26 Tuesday 17th July, 2007

just noticed the code above will not compile
this will and I think it will work too (hope so Poke tongue | ;-P )

Inherits System.Collections.CollectionBase<br />
<br />
    Public Property employee(ByVal index As Integer)<br />
        Get<br />
            Return MyBase.List(index)<br />
        End Get<br />
        Set(ByVal value)<br />
            MyBase.List(index) = value<br />
        End Set<br />
    End Property

Questioncopy code source in notepad Pin
ilnaz16-Jul-07 23:31
ilnaz16-Jul-07 23:31 
AnswerRe: copy code source in notepad Pin
Vasudevan Deepak Kumar16-Jul-07 23:35
Vasudevan Deepak Kumar16-Jul-07 23:35 
AnswerRe: copy code source in notepad Pin
SHatchard16-Jul-07 23:45
SHatchard16-Jul-07 23:45 
GeneralRe: copy code source in notepad Pin
Tom Deketelaere16-Jul-07 23:59
professionalTom Deketelaere16-Jul-07 23:59 
QuestionAny one know about TreeListView Control? Pin
vurugonda16-Jul-07 23:26
vurugonda16-Jul-07 23:26 
AnswerRe: Any one know about TreeListView Control? Pin
Dave Kreskowiak17-Jul-07 3:56
mveDave Kreskowiak17-Jul-07 3:56 
GeneralRe: Any one know about TreeListView Control? Pin
vurugonda17-Jul-07 6:40
vurugonda17-Jul-07 6:40 
GeneralRe: Any one know about TreeListView Control? Pin
Dave Kreskowiak17-Jul-07 8:31
mveDave Kreskowiak17-Jul-07 8:31 
QuestionHow to create trial version for software Pin
Ajai Chaudhary16-Jul-07 22:52
Ajai Chaudhary16-Jul-07 22:52 
AnswerRe: How to create trial version for software Pin
SHatchard16-Jul-07 23:06
SHatchard16-Jul-07 23:06 
Questionconnecting to remote server Pin
kuromibanana16-Jul-07 22:13
kuromibanana16-Jul-07 22:13 
AnswerRe: connecting to remote server Pin
originSH16-Jul-07 22:17
originSH16-Jul-07 22:17 
GeneralRe: connecting to remote server Pin
kuromibanana17-Jul-07 15:39
kuromibanana17-Jul-07 15:39 
QuestionHow Do i Document a Functional Spec for the Functionality Pin
Vimalsoft(Pty) Ltd16-Jul-07 21:36
professionalVimalsoft(Pty) Ltd16-Jul-07 21:36 
AnswerRe: How Do i Document a Functional Spec for the Functionality Pin
Colin Angus Mackay16-Jul-07 23:53
Colin Angus Mackay16-Jul-07 23:53 
GeneralJust curious... [modified] Pin
Colin Angus Mackay17-Jul-07 0:09
Colin Angus Mackay17-Jul-07 0:09 
GeneralRe: Just curious... Pin
Tom Deketelaere17-Jul-07 1:58
professionalTom Deketelaere17-Jul-07 1:58 

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.