Click here to Skip to main content
15,914,795 members
Home / Discussions / Visual Basic
   

Visual Basic

 
Questionhow to PAUSE media player? Pin
campbells15-Mar-06 22:18
campbells15-Mar-06 22:18 
AnswerRe: how to PAUSE media player? Pin
albCode15-Mar-06 22:31
albCode15-Mar-06 22:31 
GeneralRe: how to PAUSE media player? Pin
campbells15-Mar-06 23:51
campbells15-Mar-06 23:51 
Questionhow to write and create a ms word document usign vb 6.0 Pin
whippersnapper7615-Mar-06 21:41
whippersnapper7615-Mar-06 21:41 
AnswerRe: how to write and create a ms word document usign vb 6.0 Pin
Dave Kreskowiak16-Mar-06 4:53
mveDave Kreskowiak16-Mar-06 4:53 
GeneralRe: how to write and create a ms word document usign vb 6.0 Pin
whippersnapper7619-Mar-06 21:34
whippersnapper7619-Mar-06 21:34 
Questiontool strip Pin
Leavashni15-Mar-06 21:11
Leavashni15-Mar-06 21:11 
AnswerRe: tool strip Pin
Dave Kreskowiak16-Mar-06 4:45
mveDave Kreskowiak16-Mar-06 4:45 
Questioni have a stastic method in tha calss, how to invoke constructor, when called with class name Pin
Member 227165515-Mar-06 20:52
Member 227165515-Mar-06 20:52 
AnswerRe: i have a stastic method in tha calss, how to invoke constructor, when called with class name Pin
Member 227165515-Mar-06 20:54
Member 227165515-Mar-06 20:54 
GeneralRe: i have a stastic method in tha calss, how to invoke constructor, when called with class name Pin
Dave Kreskowiak16-Mar-06 2:42
mveDave Kreskowiak16-Mar-06 2:42 
Questionhow to upload files in to webserver Pin
eswarattaluri15-Mar-06 20:31
eswarattaluri15-Mar-06 20:31 
AnswerRe: how to upload files in to webserver Pin
Dave Kreskowiak16-Mar-06 4:33
mveDave Kreskowiak16-Mar-06 4:33 
QuestionDoes any method to get date.now in with minisecond? Pin
cylix200015-Mar-06 19:55
cylix200015-Mar-06 19:55 
AnswerRe: Does any method to get date.now in with minisecond? Pin
sathish s15-Mar-06 20:05
sathish s15-Mar-06 20:05 
AnswerRe: Does any method to get date.now in with minisecond? Pin
Dave Kreskowiak16-Mar-06 4:30
mveDave Kreskowiak16-Mar-06 4:30 
What's a minisecond?? I take it you're talking about a millisecond?

The DateTime structure can only return the time accurate to about 10 milliseconds on an NT Kernel machines and about 55 milliseconds on Win9x, no greater. This is because of system timer limitations, not because of any bug in the .NET Framework.

What are you trying to do with such an accurate time?

You can get the current time, down to the approximate millisecond, with:
Dim currDateTime As DateTime = DateTime.Now()
Debug.WriteLine( String.Format("Current Time: {0}", currDateTime.ToLongTimeString) )
Debug.WriteLine( String.Format("Current Milliseconds: {0}", currDateTime.Millisecond) )



RageInTheMachine9532
"...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome

AnswerRe: wat the use of .top and .left? is it pointer? Pin
Guffa15-Mar-06 21:28
Guffa15-Mar-06 21:28 
QuestionDesigning using oop in vb.net Pin
hisuman10015-Mar-06 19:11
hisuman10015-Mar-06 19:11 
AnswerRe: Designing using oop in vb.net Pin
HimaBindu Vejella16-Mar-06 0:08
HimaBindu Vejella16-Mar-06 0:08 
AnswerRe: Designing using oop in vb.net Pin
Kevin McFarlane16-Mar-06 10:32
Kevin McFarlane16-Mar-06 10:32 
Questionlagging when running becasue too much label?? Pin
campbells15-Mar-06 19:06
campbells15-Mar-06 19:06 
AnswerRe: lagging when running becasue too much label?? Pin
Dave Kreskowiak16-Mar-06 4:19
mveDave Kreskowiak16-Mar-06 4:19 
GeneralRe: lagging when running becasue too much label?? Pin
campbells16-Mar-06 4:56
campbells16-Mar-06 4:56 
GeneralRe: lagging when running becasue too much label?? Pin
Dave Kreskowiak16-Mar-06 11:35
mveDave Kreskowiak16-Mar-06 11:35 
Generalquick urgent~ Pin
campbells19-Mar-06 16:09
campbells19-Mar-06 16:09 

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.