Click here to Skip to main content
15,916,835 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: dialog, top level vs mdiparent Pin
jkirkerx11-Dec-14 13:48
professionaljkirkerx11-Dec-14 13:48 
GeneralRe: dialog, top level vs mdiparent Pin
Dave Kreskowiak11-Dec-14 14:44
mveDave Kreskowiak11-Dec-14 14:44 
GeneralRe: dialog, top level vs mdiparent Pin
jkirkerx11-Dec-14 16:37
professionaljkirkerx11-Dec-14 16:37 
GeneralRe: dialog, top level vs mdiparent Pin
Dave Kreskowiak11-Dec-14 16:58
mveDave Kreskowiak11-Dec-14 16:58 
GeneralRe: dialog, top level vs mdiparent Pin
jkirkerx11-Dec-14 17:35
professionaljkirkerx11-Dec-14 17:35 
GeneralRe: dialog, top level vs mdiparent Pin
Dave Kreskowiak12-Dec-14 16:18
mveDave Kreskowiak12-Dec-14 16:18 
GeneralQuestion Dave Pin
jkirkerx12-Dec-14 7:09
professionaljkirkerx12-Dec-14 7:09 
GeneralRe: Question Dave Pin
Dave Kreskowiak12-Dec-14 16:19
mveDave Kreskowiak12-Dec-14 16:19 
GeneralRe: Question Dave Pin
jkirkerx13-Dec-14 10:23
professionaljkirkerx13-Dec-14 10:23 
GeneralRe: Question Dave Pin
Mycroft Holmes14-Dec-14 13:14
professionalMycroft Holmes14-Dec-14 13:14 
GeneralRe: Question Dave Pin
jkirkerx14-Dec-14 13:59
professionaljkirkerx14-Dec-14 13:59 
GeneralRe: Question Dave Pin
Mycroft Holmes14-Dec-14 14:29
professionalMycroft Holmes14-Dec-14 14:29 
QuestionHow to improve performance of VB.Net 2010 / Word Windows Desktop App? Pin
QuickBooksDev11-Dec-14 8:37
QuickBooksDev11-Dec-14 8:37 
SuggestionRe: How to improve performance of VB.Net 2010 / Word Windows Desktop App? Pin
Maciej Los11-Dec-14 10:29
mveMaciej Los11-Dec-14 10:29 
GeneralRe: How to improve performance of VB.Net 2010 / Word Windows Desktop App? Pin
QuickBooksDev11-Dec-14 10:43
QuickBooksDev11-Dec-14 10:43 
AnswerRe: How to improve performance of VB.Net 2010 / Word Windows Desktop App? Pin
Chris Quinn11-Dec-14 20:49
Chris Quinn11-Dec-14 20:49 
GeneralRe: How to improve performance of VB.Net 2010 / Word Windows Desktop App? Pin
QuickBooksDev12-Dec-14 0:22
QuickBooksDev12-Dec-14 0:22 
GeneralRe: How to improve performance of VB.Net 2010 / Word Windows Desktop App? Pin
Mycroft Holmes14-Dec-14 13:22
professionalMycroft Holmes14-Dec-14 13:22 
GeneralRe: How to improve performance of VB.Net 2010 / Word Windows Desktop App? Pin
QuickBooksDev15-Dec-14 0:24
QuickBooksDev15-Dec-14 0:24 
Questionswitching two items in a list box/combo box Pin
Steve-the-elk11-Dec-14 5:04
Steve-the-elk11-Dec-14 5:04 
AnswerRe: switching two items in a list box/combo box Pin
Richard MacCutchan11-Dec-14 6:45
mveRichard MacCutchan11-Dec-14 6:45 
QuestionHow to test The performance Of a Vb.Net Pc Cleaner Software? Pin
rituz9-Dec-14 1:36
rituz9-Dec-14 1:36 
AnswerRe: How to test The performance Of a Vb.Net Pc Cleaner Software? Pin
Chris Quinn9-Dec-14 2:03
Chris Quinn9-Dec-14 2:03 
AnswerRe: How to test The performance Of a Vb.Net Pc Cleaner Software? Pin
Dave Kreskowiak9-Dec-14 11:00
mveDave Kreskowiak9-Dec-14 11:00 
QuestionIn .Net how can I get a response to WebClient.Open write instead of Stream was not readable Pin
QuickBooksDev5-Dec-14 11:52
QuickBooksDev5-Dec-14 11:52 
I am using VB.2013.

Code :
VB
Dim MydataStream As Stream = Nothing
MydataStream = MyWebClient.OpenWrite(address:=MySend2URL, method:="POST")
Dim postArray As Byte() = Encoding.ASCII.GetBytes(postData)
MydataStream.Write(postArray, 0, postArray.Length)
MydataStream.Close()
Dim reader As New StreamReader(MydataStream)  ' <=== Dies here with "Stream was not readable."


How can I get a response that can be used and not the Stream is not readable error.

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.