Click here to Skip to main content
15,891,372 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralRe: It's just not my day Pin
Gary Wheeler10-Jun-14 6:23
Gary Wheeler10-Jun-14 6:23 
GeneralRe: It's just not my day Pin
OriginalGriff10-Jun-14 6:55
mveOriginalGriff10-Jun-14 6:55 
GeneralRe: It's just not my day Pin
Gary Wheeler10-Jun-14 7:43
Gary Wheeler10-Jun-14 7:43 
GeneralRe: It's just not my day Pin
User 842010-Jun-14 9:31
User 842010-Jun-14 9:31 
GeneralRe: It's just not my day Pin
Rob Philpott10-Jun-14 22:34
Rob Philpott10-Jun-14 22:34 
GeneralRe: It's just not my day Pin
OriginalGriff10-Jun-14 22:55
mveOriginalGriff10-Jun-14 22:55 
GeneralRe: It's just not my day Pin
Simon Lee Shugar10-Jun-14 5:46
Simon Lee Shugar10-Jun-14 5:46 
GeneralVisual Basic needs more credit Pin
Colborne_Greg10-Jun-14 4:42
Colborne_Greg10-Jun-14 4:42 
I think that Visual Basic should be shown off for its beauty and elegance.
Here is a sample of what it can do - that no other language can do:

VB
Private Sub AlbumListPopulate()
    Try
        AlbumsList.ItemsSource = New List(Of Image)

        For Each AlbumName In Pictures.Albums
            Try
                AlbumsList.ItemsSource.Add _
                    (
                        New Image With
                        {
                            .Height = 150,
                            .Width = 150,
                            .Source = RotateStream _
                            (
                                Pictures.Album(AlbumName).Picture,
                                Pictures.Album(AlbumName).Angle
                            )
                        }
                    )
            Catch
            End Try
        Next
    Catch
    End Try
End Sub

GeneralRe: Visual Basic needs more credit Pin
Richard MacCutchan10-Jun-14 4:44
mveRichard MacCutchan10-Jun-14 4:44 
GeneralRe: Visual Basic needs more credit Pin
PIEBALDconsult10-Jun-14 4:47
mvePIEBALDconsult10-Jun-14 4:47 
GeneralRe: Visual Basic needs more credit Pin
Colborne_Greg10-Jun-14 4:48
Colborne_Greg10-Jun-14 4:48 
GeneralRe: Visual Basic needs more credit Pin
Richard Deeming10-Jun-14 4:51
mveRichard Deeming10-Jun-14 4:51 
GeneralRe: Visual Basic needs more credit Pin
Colborne_Greg10-Jun-14 5:07
Colborne_Greg10-Jun-14 5:07 
GeneralRe: Visual Basic needs more credit Pin
Richard Deeming10-Jun-14 5:55
mveRichard Deeming10-Jun-14 5:55 
GeneralRe: Visual Basic needs more credit Pin
Colborne_Greg10-Jun-14 6:07
Colborne_Greg10-Jun-14 6:07 
GeneralRe: Visual Basic needs more credit Pin
Richard Deeming10-Jun-14 6:14
mveRichard Deeming10-Jun-14 6:14 
GeneralMessage Closed Pin
10-Jun-14 6:16
Colborne_Greg10-Jun-14 6:16 
GeneralRe: Visual Basic needs more credit Pin
Adam Tibi10-Jun-14 23:28
professionalAdam Tibi10-Jun-14 23:28 
GeneralRe: Visual Basic needs more credit Pin
Colborne_Greg11-Jun-14 5:41
Colborne_Greg11-Jun-14 5:41 
GeneralRe: Visual Basic needs more credit Pin
Richard Deeming11-Jun-14 5:44
mveRichard Deeming11-Jun-14 5:44 
GeneralRe: Visual Basic needs more credit Pin
Colborne_Greg11-Jun-14 5:54
Colborne_Greg11-Jun-14 5:54 
GeneralRe: Visual Basic needs more credit Pin
richard_k11-Jun-14 7:30
richard_k11-Jun-14 7:30 
GeneralRe: Visual Basic needs more credit Pin
Colborne_Greg11-Jun-14 7:57
Colborne_Greg11-Jun-14 7:57 
GeneralRe: Visual Basic needs more credit Pin
richard_k11-Jun-14 14:31
richard_k11-Jun-14 14:31 
GeneralRe: Visual Basic needs more credit Pin
Colborne_Greg11-Jun-14 15:13
Colborne_Greg11-Jun-14 15:13 

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.