Tento C# kód
stream.End += new EventHandler( SongEnd);
sa vo VB .NET napíše takto:
AddHandler stream.End, AddressOf SongEnd
Ale ako napíše tento kód vo VB .NET ???
stream.Progress += new BASSProgessHandler( Progress);
Ak by som to napísal tak ako v 1. prípade, tak mi to vyhodí "Cross-thread operation not valid: Control 'lblMinutes' accessed from a thread other than the thread it was created on." - Jednoducho potrebujem vytvoriť new BASSProgessHandler a nie new EventHandler.
Poradí mi niekto?