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

Visual Basic

 
Question[Resolved] C# to VB Adaption Problem with Lambda Expressions Pin
Sonhospa1-Jan-12 3:27
Sonhospa1-Jan-12 3:27 
AnswerRe: C# to VB Adaption Problem Pin
Luc Pattyn1-Jan-12 3:47
sitebuilderLuc Pattyn1-Jan-12 3:47 
QuestionRe: C# to VB Adaption Problem Pin
Sonhospa1-Jan-12 3:59
Sonhospa1-Jan-12 3:59 
AnswerRe: C# to VB Adaption Problem Pin
Eddy Vluggen1-Jan-12 6:23
professionalEddy Vluggen1-Jan-12 6:23 
GeneralRe: C# to VB Adaption Problem Pin
Sonhospa1-Jan-12 6:34
Sonhospa1-Jan-12 6:34 
GeneralRe: C# to VB Adaption Problem Pin
Eddy Vluggen1-Jan-12 6:39
professionalEddy Vluggen1-Jan-12 6:39 
GeneralRe: C# to VB Adaption Problem Pin
Sonhospa1-Jan-12 6:58
Sonhospa1-Jan-12 6:58 
AnswerRe: C# to VB Adaption Problem Pin
Eddy Vluggen1-Jan-12 7:36
professionalEddy Vluggen1-Jan-12 7:36 
Michael Schäuble wrote:
I'm afraid I don't understand what you mean

My bad, I thought you were talking about another URL and that it got mixed up. Still recovering from the old year.

Translators don't like lamda's, so you might take that one out before converting the code. Would result in something like below;
VB.NET
	AddHandler worker.ProgressChanged, AddressOf ProgressChanged

	worker.RunWorkerAsync()
	Console.Read()
End Sub
Public Sub ProgressChanged(sender As Object, e As System.ComponentModel.ProgressChangedEventArgs)
	' make sure the figure is written to the
	' same point on screen each time
	Console.SetCursorPosition(1, 0)
	Console.Write(e.ProgressPercentage)
End Sub

Bastard Programmer from Hell Suspicious | :suss:

GeneralRe: C# to VB Adaption Problem Pin
Sonhospa1-Jan-12 7:53
Sonhospa1-Jan-12 7:53 
GeneralRe: C# to VB Adaption Problem Pin
Eddy Vluggen1-Jan-12 8:35
professionalEddy Vluggen1-Jan-12 8:35 
GeneralRe: C# to VB Adaption Problem Pin
Sonhospa1-Jan-12 12:16
Sonhospa1-Jan-12 12:16 
AnswerRe: C# to VB Adaption Problem Pin
Luc Pattyn1-Jan-12 12:33
sitebuilderLuc Pattyn1-Jan-12 12:33 
GeneralRe: C# to VB Adaption Problem Pin
Sonhospa1-Jan-12 12:51
Sonhospa1-Jan-12 12:51 
AnswerRe: C# to VB Adaption Problem Pin
Luc Pattyn1-Jan-12 12:58
sitebuilderLuc Pattyn1-Jan-12 12:58 
GeneralRe: C# to VB Adaption Problem Pin
Sonhospa1-Jan-12 13:14
Sonhospa1-Jan-12 13:14 
GeneralRe: C# to VB Adaption Problem Pin
Eddy Vluggen2-Jan-12 6:34
professionalEddy Vluggen2-Jan-12 6:34 
GeneralRe: C# to VB Adaption Problem Pin
Terence Wallace3-Jan-12 7:32
Terence Wallace3-Jan-12 7:32 
AnswerRe: C# to VB Adaption Problem with Lambda Expressions Pin
Simon_Whale2-Jan-12 12:33
Simon_Whale2-Jan-12 12:33 
GeneralRe: C# to VB Adaption Problem with Lambda Expressions Pin
Sonhospa9-Jan-12 23:09
Sonhospa9-Jan-12 23:09 
GeneralRe: C# to VB Adaption Problem with Lambda Expressions Pin
Simon_Whale9-Jan-12 23:12
Simon_Whale9-Jan-12 23:12 
AnswerRe: C# to VB Adaption Problem with Lambda Expressions Pin
Member 78595873-Jan-12 2:58
Member 78595873-Jan-12 2:58 
GeneralRe: C# to VB Adaption Problem with Lambda Expressions Pin
Sonhospa9-Jan-12 23:15
Sonhospa9-Jan-12 23:15 
AnswerRe: C# to VB Adaption Problem with Lambda Expressions Pin
Estys3-Jan-12 4:03
Estys3-Jan-12 4:03 
GeneralRe: C# to VB Adaption Problem with Lambda Expressions Pin
Sonhospa9-Jan-12 23:19
Sonhospa9-Jan-12 23:19 
GeneralRe: C# to VB Adaption Problem with Lambda Expressions Pin
Estys9-Jan-12 23:50
Estys9-Jan-12 23:50 

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.