Click here to Skip to main content
15,890,579 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: What's difference between Visual Basic and VB.NET Pin
tmalbon22-Apr-10 17:28
tmalbon22-Apr-10 17:28 
QuestionHow to create a web application of a VB Program. Pin
Razanust17-Apr-10 16:17
Razanust17-Apr-10 16:17 
AnswerRe: How to create a web application of a VB Program. Pin
Eddy Vluggen17-Apr-10 23:51
professionalEddy Vluggen17-Apr-10 23:51 
Questionrunning a winapp with parameters from AutoCad Pin
MacIntyre16-Apr-10 7:25
MacIntyre16-Apr-10 7:25 
AnswerRe: running a winapp with parameters from AutoCad Pin
Eddy Vluggen18-Apr-10 0:00
professionalEddy Vluggen18-Apr-10 0:00 
QuestionSome help... Pin
Adam Wike16-Apr-10 4:10
Adam Wike16-Apr-10 4:10 
AnswerRe: Some help... Pin
Luc Pattyn16-Apr-10 4:24
sitebuilderLuc Pattyn16-Apr-10 4:24 
AnswerRe: Some help... Pin
Andy_L_J17-Apr-10 16:51
Andy_L_J17-Apr-10 16:51 
Module Module1

    Sub Main()

    Dim txt As String = ""
    Dim arr() As Double = {20, 11, 34, 25, 55, 89}
    Dim tot As Double = 0

    For i As Integer = 0 To 5
      If i < 5 Then
        txt &= arr(i).ToString("0")
        txt &= "+"
        tot += arr(i)

      Else

        txt &= arr(i)
        txt &= "="
        tot += arr(i)
        txt &= tot.ToString("0")
      End If



    Next

    Console.WriteLine("Output: {0}", txt)
    Console.Read()
    End Sub

End Module

I don't speak Idiot - please talk slowly and clearly

'This space for rent'

Driven to the arms of Heineken by the wife

QuestionVB.NET 8 (2005) modules have a colon and number after them. Why? Pin
QuickBooksDev15-Apr-10 13:26
QuickBooksDev15-Apr-10 13:26 
AnswerRe: VB.NET 8 (2005) modules have a colon and number after them. Why? Pin
programmervb.netc++19-Apr-10 8:20
programmervb.netc++19-Apr-10 8:20 
QuestionA new introduction video Pin
moroandrea15-Apr-10 3:26
moroandrea15-Apr-10 3:26 
AnswerRe: A new introduction video Pin
Dave Kreskowiak15-Apr-10 6:44
mveDave Kreskowiak15-Apr-10 6:44 
AnswerRe: A new introduction video Pin
LloydA11115-Apr-10 14:44
LloydA11115-Apr-10 14:44 
Questiondisable users mailbox account from exchange server 2007 using vb.net Pin
myms.net15-Apr-10 2:48
myms.net15-Apr-10 2:48 
AnswerRe: disable users mailbox account from exchange server 2007 using vb.net Pin
Michel Godfroid15-Apr-10 7:36
Michel Godfroid15-Apr-10 7:36 
QuestionSELECT & COMPARE database column entries ! Pin
jeshra27915-Apr-10 1:06
jeshra27915-Apr-10 1:06 
AnswerRe: SELECT & COMPARE database column entries ! Pin
Simon_Whale15-Apr-10 1:10
Simon_Whale15-Apr-10 1:10 
AnswerRe: SELECT & COMPARE database column entries ! Pin
Michel Godfroid15-Apr-10 1:11
Michel Godfroid15-Apr-10 1:11 
AnswerRe: SELECT & COMPARE database column entries ! Pin
Kschuler15-Apr-10 7:51
Kschuler15-Apr-10 7:51 
QuestionAdvice: stored procedure parameters, lists of sqlparameters or using sqlparametercollections Pin
Simon_Whale15-Apr-10 0:19
Simon_Whale15-Apr-10 0:19 
AnswerRe: Advice: stored procedure parameters, lists of sqlparameters or using sqlparametercollections Pin
Dave Kreskowiak15-Apr-10 6:40
mveDave Kreskowiak15-Apr-10 6:40 
GeneralRe: Advice: stored procedure parameters, lists of sqlparameters or using sqlparametercollections Pin
Ray Cassick15-Apr-10 8:38
Ray Cassick15-Apr-10 8:38 
GeneralRe: Advice: stored procedure parameters, lists of sqlparameters or using sqlparametercollections Pin
Simon_Whale15-Apr-10 11:55
Simon_Whale15-Apr-10 11:55 
GeneralRe: Advice: stored procedure parameters, lists of sqlparameters or using sqlparametercollections Pin
Dave Kreskowiak15-Apr-10 12:31
mveDave Kreskowiak15-Apr-10 12:31 
JokeRe: Advice: stored procedure parameters, lists of sqlparameters or using sqlparametercollections Pin
Luc Pattyn15-Apr-10 6:57
sitebuilderLuc Pattyn15-Apr-10 6: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.