Click here to Skip to main content
15,892,059 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionVB.NET to C++.NET VS2005 Pin
jbmckim13-Feb-08 10:27
jbmckim13-Feb-08 10:27 
QuestionHow do you delete a row from a datagrid when using a typed dataset Pin
imonfiredammit13-Feb-08 8:44
imonfiredammit13-Feb-08 8:44 
AnswerRe: How do you delete a row from a datagrid when using a typed dataset Pin
Mycroft Holmes13-Feb-08 16:24
professionalMycroft Holmes13-Feb-08 16:24 
QuestionERROR MESSAGE Pin
Member 367504713-Feb-08 5:03
Member 367504713-Feb-08 5:03 
GeneralRe: ERROR MESSAGE Pin
Paddy Boyd13-Feb-08 5:05
Paddy Boyd13-Feb-08 5:05 
GeneralRe: ERROR MESSAGE Pin
Member 367504713-Feb-08 5:56
Member 367504713-Feb-08 5:56 
GeneraldeflateStream reading from stream and writing to a buffer Pin
Ed Hill _5_13-Feb-08 3:42
Ed Hill _5_13-Feb-08 3:42 
GeneralRe: deflateStream reading from stream and writing to a buffer Pin
Guffa13-Feb-08 8:46
Guffa13-Feb-08 8:46 
The Read method doesn't have to read all data that you request. It returns the number of bytes actually read, so you have to loop until you have filled the buffer or until the method returns zero.

Dim offset As Integer = 0
Dim bytesRead As Integer
Do
   bytesRead = stream.Read(buffer, offset, buffer.Length - offset)
   offset += bytesRead
Loop Until bytesRead = 0 Or offset = buffer.Length
Return offset


Experience is the sum of all the mistakes you have done.

Questioncreate webservice in vb.net and invoke it in vb 6.0 Pin
jamesrajesh13-Feb-08 1:57
jamesrajesh13-Feb-08 1:57 
GeneralRe: create webservice in vb.net and invoke it in vb 6.0 Pin
Dave Kreskowiak13-Feb-08 7:12
mveDave Kreskowiak13-Feb-08 7:12 
GeneralRe: create webservice in vb.net and invoke it in vb 6.0 Pin
User 27100913-Feb-08 7:22
User 27100913-Feb-08 7:22 
GeneralVB reads Excel Pin
Bulky Fellow13-Feb-08 1:06
Bulky Fellow13-Feb-08 1:06 
GeneralRe: VB reads Excel Pin
Dave Kreskowiak13-Feb-08 7:06
mveDave Kreskowiak13-Feb-08 7:06 
GeneralRe: VB reads Excel Pin
Bulky Fellow13-Feb-08 18:26
Bulky Fellow13-Feb-08 18:26 
GeneralRe: VB reads Excel Pin
Dave Kreskowiak14-Feb-08 2:10
mveDave Kreskowiak14-Feb-08 2:10 
GeneralWebbrowser control need help Pin
King of Kingz12-Feb-08 23:38
King of Kingz12-Feb-08 23:38 
GeneralRe: Webbrowser control need help Pin
Paddy Boyd13-Feb-08 5:08
Paddy Boyd13-Feb-08 5:08 
QuestionHow to put a button inside a dataGridView textBox column? Pin
Benny_Lava12-Feb-08 21:50
Benny_Lava12-Feb-08 21:50 
GeneralRe: How to put a button inside a dataGridView textBox column? Pin
Dave Kreskowiak13-Feb-08 7:08
mveDave Kreskowiak13-Feb-08 7:08 
Generalgrid view in .net2.0 Pin
judyashma12-Feb-08 21:33
judyashma12-Feb-08 21:33 
GeneralRe: grid view in .net2.0 Pin
Mycroft Holmes13-Feb-08 16:33
professionalMycroft Holmes13-Feb-08 16:33 
Generalif i delete a record Pin
sathyan_829412-Feb-08 21:09
sathyan_829412-Feb-08 21:09 
GeneralRe: if i delete a record Pin
Christian Graus13-Feb-08 9:51
protectorChristian Graus13-Feb-08 9:51 
GeneralRe: if i delete a record Pin
sathyan_829413-Feb-08 18:12
sathyan_829413-Feb-08 18:12 
GeneralOpen applicaiton Pin
Kumaran21cen12-Feb-08 19:57
Kumaran21cen12-Feb-08 19:57 

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.