Click here to Skip to main content
15,894,539 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: barcode reader Pin
CKnig24-Jan-08 21:39
CKnig24-Jan-08 21:39 
GeneralRe: barcode reader Pin
Tom John24-Jan-08 22:01
Tom John24-Jan-08 22:01 
GeneralRe: barcode reader Pin
Justin Perez25-Jan-08 3:14
Justin Perez25-Jan-08 3:14 
GeneralRe: barcode reader Pin
Paul Conrad25-Jan-08 3:56
professionalPaul Conrad25-Jan-08 3:56 
GeneralRe: barcode reader Pin
Dave Kreskowiak25-Jan-08 3:44
mveDave Kreskowiak25-Jan-08 3:44 
GeneralRe: barcode reader Pin
Paul Conrad25-Jan-08 3:55
professionalPaul Conrad25-Jan-08 3:55 
Questionproblem with basic timer in vb.net [modified] Pin
Chun224-Jan-08 19:48
Chun224-Jan-08 19:48 
GeneralRe: problem with basic timer in vb.net Pin
CKnig24-Jan-08 21:44
CKnig24-Jan-08 21:44 
Well this timers were never indented to be precise (there are a few "better" timers in the DirectX-SDK).

When I get your question correct all you need to do is still use your timer (let's say with an 500ms interval) and just check the timespan since last run:

Define a

private _lastCallTime as DateTime = DateTime.MinValue

in your form-class and in your Tick-Handler:
<br />
<br />
if DateTime.Now.Substract(_lastCallTime) >= TimeSpan.FromMinutes(30) then<br />
  _lastCallTime = DateTime.Now<br />
  // TODO: call your function here<br />
end if<br />
<br />

GeneralRe: problem with basic timer in vb.net Pin
Chun225-Jan-08 5:36
Chun225-Jan-08 5:36 
GeneralRe: problem with basic timer in vb.net Pin
Dave Kreskowiak25-Jan-08 9:41
mveDave Kreskowiak25-Jan-08 9:41 
Questionhow can calling command prompt ? [modified] Pin
break_day24-Jan-08 18:58
break_day24-Jan-08 18:58 
AnswerRe: how can calling command prompt ? Pin
Dave Kreskowiak25-Jan-08 3:41
mveDave Kreskowiak25-Jan-08 3:41 
QuestionFind text problem Pin
monsieur_jj24-Jan-08 16:14
monsieur_jj24-Jan-08 16:14 
GeneralRe: Find text problem Pin
Johan Hakkesteegt25-Jan-08 1:54
Johan Hakkesteegt25-Jan-08 1:54 
GeneralRe: Find text problem Pin
Luc Pattyn25-Jan-08 4:08
sitebuilderLuc Pattyn25-Jan-08 4:08 
GeneralStreamwriter Pin
Cedrickdeorange24-Jan-08 12:27
Cedrickdeorange24-Jan-08 12:27 
GeneralRe: Streamwriter Pin
John_Adams24-Jan-08 18:31
John_Adams24-Jan-08 18:31 
GeneralRe: Streamwriter Pin
Cedrickdeorange25-Jan-08 14:15
Cedrickdeorange25-Jan-08 14:15 
GeneralReading from a file and using Set methods Pin
Cory Kimble24-Jan-08 7:14
Cory Kimble24-Jan-08 7:14 
GeneralRe: Reading from a file and using Set methods Pin
pmarfleet24-Jan-08 9:29
pmarfleet24-Jan-08 9:29 
GeneralRe: Reading from a file and using Set methods Pin
Cory Kimble25-Jan-08 4:52
Cory Kimble25-Jan-08 4:52 
Generalcustom datagrid problems Pin
Smithers-Jones24-Jan-08 6:28
Smithers-Jones24-Jan-08 6:28 
GeneralRe: custom datagrid problems Pin
Paul Conrad24-Jan-08 6:55
professionalPaul Conrad24-Jan-08 6:55 
GeneralRe: custom datagrid problems [modified] Pin
Smithers-Jones24-Jan-08 10:12
Smithers-Jones24-Jan-08 10:12 
Question[Message Deleted] Pin
zeeshi_2424-Jan-08 0:50
zeeshi_2424-Jan-08 0:50 

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.