Why this code works
Dim PctStream As MemoryStream = Await GetSomePct() Me.BackgroundImage = Bitmap.FromStream(PctStream) but this one is not?
Using PctStream As MemoryStream = Await GetSomePct() Me.BackgroundImage = Bitmap.FromStream(PctStream) End Using In the case of Using , a crossed-out rectangle is displayed instead of a picture.