Click here to Skip to main content
15,888,351 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionHow to make first tab as defualt tab in vb6? Pin
method00710-May-07 13:34
method00710-May-07 13:34 
QuestionDrag and drop a file onto form and read at runtime? (vb .net) Pin
daxfrost10-May-07 12:29
daxfrost10-May-07 12:29 
QuestionHow to add clock timer to listview column in vb6? Pin
method00710-May-07 7:36
method00710-May-07 7:36 
AnswerRe: How to add clock timer to listview column in vb6? Pin
nlarson1110-May-07 8:11
nlarson1110-May-07 8:11 
GeneralRe: How to add clock timer to listview column in vb6? Pin
method00710-May-07 9:31
method00710-May-07 9:31 
GeneralRe: How to add clock timer to listview column in vb6? Pin
nlarson1110-May-07 9:36
nlarson1110-May-07 9:36 
GeneralRe: How to add clock timer to listview column in vb6? Pin
method00710-May-07 9:55
method00710-May-07 9:55 
GeneralRe: How to add clock timer to listview column in vb6? Pin
nlarson1110-May-07 10:26
nlarson1110-May-07 10:26 
make a module level variable that will hold to the current ticks

private mStartDate As Double = Now.Ticks


in the timer event routine

Dim s As String = TimeSpan.FromTicks(Now.Ticks - mStartDate).ToString
ListView1.ListItems(1).ListSubItems(4).Text = s.Substring(0, s.IndexOf("."))

GeneralRe: How to add clock timer to listview column in vb6? Pin
method00710-May-07 11:04
method00710-May-07 11:04 
GeneralRe: How to add clock timer to listview column in vb6? Pin
nlarson1110-May-07 11:10
nlarson1110-May-07 11:10 
GeneralRe: How to add clock timer to listview column in vb6? Pin
method00710-May-07 11:18
method00710-May-07 11:18 
GeneralRe: How to add clock timer to listview column in vb6? [modified] Pin
nlarson1111-May-07 11:18
nlarson1111-May-07 11:18 
GeneralRe: How to add clock timer to listview column in vb6? Pin
method00711-May-07 19:48
method00711-May-07 19:48 
GeneralRe: How to add clock timer to listview column in vb6? Pin
nlarson1112-May-07 1:32
nlarson1112-May-07 1:32 
GeneralRe: How to add clock timer to listview column in vb6? Pin
method00712-May-07 1:40
method00712-May-07 1:40 
GeneralRe: How to add clock timer to listview column in vb6? Pin
nlarson1112-May-07 1:45
nlarson1112-May-07 1:45 
GeneralRe: How to add clock timer to listview column in vb6? Pin
method00712-May-07 1:49
method00712-May-07 1:49 
QuestionMilliseconds to Minutes Pin
Stigmurder10-May-07 6:19
Stigmurder10-May-07 6:19 
AnswerRe: Milliseconds to Minutes Pin
Dave Kreskowiak10-May-07 6:33
mveDave Kreskowiak10-May-07 6:33 
GeneralRe: Milliseconds to Minutes Pin
Stigmurder10-May-07 7:19
Stigmurder10-May-07 7:19 
JokeRe: Milliseconds to Minutes Pin
CPallini10-May-07 9:03
mveCPallini10-May-07 9:03 
GeneralRe: Milliseconds to Minutes Pin
Dave Kreskowiak10-May-07 10:42
mveDave Kreskowiak10-May-07 10:42 
QuestionVB6 Int() Function Pin
Marcus J. Smith10-May-07 5:05
professionalMarcus J. Smith10-May-07 5:05 
AnswerRe: VB6 Int() Function Pin
Dave Kreskowiak10-May-07 5:17
mveDave Kreskowiak10-May-07 5:17 
GeneralRe: VB6 Int() Function [modified] Pin
Marcus J. Smith10-May-07 5:26
professionalMarcus J. Smith10-May-07 5:26 

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.