Click here to Skip to main content
15,913,115 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: How to make our form to be executed before running explorer.exe Pin
Christian Graus13-Feb-08 20:18
protectorChristian Graus13-Feb-08 20:18 
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 
I'm having problems understanding why a loop is needed to read from a deflated stream. i've replaced the read all bytes in stream method with the following line, however the data in the output buffer is 1 byte smaller than it was before the data was compressed:
Return stream.Read(buffer, 0, buffer.Length)

used to be:
Dim offset As Integer = 0<br />
        Dim totalCount As Integer = 0<br />
        While True<br />
            Dim bytesRead As Integer = stream.Read(buffer, offset, 100)<br />
            If bytesRead = 0 Then<br />
                Exit While<br />
            End If<br />
            offset += bytesRead<br />
            totalCount += bytesRead<br />
        End While<br />
        Return totalCount


the full code for this is taken from http://msdn2.microsoft.com/en-us/library/system.io.compression.deflatestream(VS.80).aspx[^]
GeneralRe: deflateStream reading from stream and writing to a buffer Pin
Guffa13-Feb-08 8:46
Guffa13-Feb-08 8:46 
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 

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.