Click here to Skip to main content
15,912,507 members
Home / Discussions / C#
   

C#

 
Questiondata bound problem Pin
gus_br18-Sep-06 4:16
gus_br18-Sep-06 4:16 
AnswerRe: data bound problem Pin
wheelerbarry18-Sep-06 4:48
wheelerbarry18-Sep-06 4:48 
GeneralRe: data bound problem Pin
gus_br18-Sep-06 5:10
gus_br18-Sep-06 5:10 
GeneralRe: data bound problem Pin
wheelerbarry18-Sep-06 5:23
wheelerbarry18-Sep-06 5:23 
QuestionWhat is the VB.NET equivalent of this code? Pin
TJO118-Sep-06 4:16
TJO118-Sep-06 4:16 
AnswerRe: What is the VB.NET equivalent of this code? Pin
farshad.A18-Sep-06 4:38
farshad.A18-Sep-06 4:38 
AnswerRe: What is the VB.NET equivalent of this code? Pin
Ed.Poore18-Sep-06 5:39
Ed.Poore18-Sep-06 5:39 
AnswerRe: What is the VB.NET equivalent of this code? Pin
Dave Doknjas18-Sep-06 13:06
Dave Doknjas18-Sep-06 13:06 
The first reply was close...but no cigar. VB equivalents regarding events can be tricky. You'll need (especially note the hidden "MyItemClickedEvent" variable):

Private Sub MenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MenuItem.Click
Dim item As MenuItem
If Not MyItemClickedEvent Is Nothing Then
Dim filename As String
filename = _itemMap(item).ToString()
RaiseEvent MyItemClicked(Me, New MyItemClickedEventArgs(filename))
End If
End Sub


David Anton
www.tangiblesoftwaresolutions.com
Instant C#: VB to C# converter
Instant VB: C# to VB converter
Instant C++: C# to C++ converter, VB to C++ converter
Clear VB: Cleans up VB.NET code
C# Code Metrics: Quick metrics for C#

GeneralRe: What is the VB.NET equivalent of this code? Pin
TJO118-Sep-06 13:44
TJO118-Sep-06 13:44 
GeneralRe: What is the VB.NET equivalent of this code? Pin
TJO118-Sep-06 17:10
TJO118-Sep-06 17:10 
GeneralRe: What is the VB.NET equivalent of this code? Pin
Dave Doknjas18-Sep-06 17:28
Dave Doknjas18-Sep-06 17:28 
GeneralRe: What is the VB.NET equivalent of this code? Pin
TJO118-Sep-06 17:40
TJO118-Sep-06 17:40 
QuestionBuild Comment Web Page in VS 2005 Pin
Alper Camel18-Sep-06 4:12
Alper Camel18-Sep-06 4:12 
AnswerRe: Build Comment Web Page in VS 2005 Pin
scott_hackett18-Sep-06 20:20
scott_hackett18-Sep-06 20:20 
GeneralRe: Build Comment Web Page in VS 2005 Pin
Alper Camel19-Sep-06 1:08
Alper Camel19-Sep-06 1:08 
AnswerRe: Build Comment Web Page in VS 2005 Pin
Stefan Troschuetz18-Sep-06 21:30
Stefan Troschuetz18-Sep-06 21:30 
Questioncreate windows service Pin
abdallahziad18-Sep-06 3:53
abdallahziad18-Sep-06 3:53 
AnswerRe: create windows service Pin
Jun Du18-Sep-06 4:14
Jun Du18-Sep-06 4:14 
QuestionHOWTO Capture Downloads in webBrowser-Control Pin
JobeXXL18-Sep-06 3:39
JobeXXL18-Sep-06 3:39 
Questionwant to avoid scrollbars Pin
kalaveer18-Sep-06 3:32
kalaveer18-Sep-06 3:32 
AnswerRe: want to avoid scrollbars Pin
wheelerbarry18-Sep-06 3:43
wheelerbarry18-Sep-06 3:43 
QuestionRe: want to avoid scrollbars Pin
kalaveer18-Sep-06 3:55
kalaveer18-Sep-06 3:55 
QuestionDateTimePicker opening Pin
**Genius**18-Sep-06 3:11
**Genius**18-Sep-06 3:11 
AnswerRe: DateTimePicker opening Pin
Glen Harvy18-Sep-06 11:52
Glen Harvy18-Sep-06 11:52 
GeneralRe: DateTimePicker opening Pin
**Genius**18-Sep-06 21:16
**Genius**18-Sep-06 21:16 

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.