Run A Process Every X Minutes Or At Time Of Day
Aug 12, 2010
What is the best way to run a process say every 30 minutes? Or at 0900?
I have an app which does quite a few things, and want to add something that will run every 30 minutes. Don't want to use windows scheduler as i want to keep it all in the one app.
Is the only way to run a thread.sleep for 1800000? If so, can i run 2 background workers on the 1 app?
View 5 Replies
ADVERTISEMENT
Feb 13, 2012
I have a code here that the result is set to expire in 15 days. (This code was shared to me by Cor Ligthert)
Dim expirationDate = CDate(registeredDate).AddDays(15)
If expirationDate < Now Then MessageBox.Show("Expired")
I want to change it to expire it in 5 minutes, how would i do that? Like this?
Dim expirationDate = CDate(registeredDate).AddMinutes(5)
If expirationDate < Now Then MessageBox.Show("Expired")
View 4 Replies
Feb 16, 2010
How can I extract the interval time into minutes and second. I can set the interval where 1000 is a second. I don't know how to capture and display in a textbox seconds or minutes counting down or up.
View 2 Replies
Sep 6, 2011
i am working on a time limiter application, and i need to work out how to convert a time i.e. 01:19:15 into minutes.
View 2 Replies
Sep 7, 2008
In Microsoft Access I use: Hours(time) minute(time) function to get current time hour and minute. I then use loop to add to the minutes until it ends in a 5 or 0 to round it up to the next 5 minutes. e.g. 13:43 rounded up to 13:45 I use IF statement to make sure the minute does not exceed 60 to start the hour. I want to use that time to add hours or minutes to easier e.g. add 15minutes, add 1 hour ect.
[Code]...
View 1 Replies
May 29, 2012
How can use numericUpDown to set the Time (Hours : minutes : seconds).I want to use one numericUpDown.
View 1 Replies
Jan 26, 2011
I've created txt file on vb. I need time function that every 30 minutes create file and filename will be date and time that file was created.
View 4 Replies
Mar 10, 2009
have another problem regarding with time again. After getting a user input time in "H:mm", in what way can I add like an additional 15 minutes to it? Something like this:
1 - User inputs the time in textbox
2 - Adding 15 mins(which is in an array) to the time
[Code]...
View 4 Replies
Sep 1, 2009
I am writing a program and have run into an issue. The program requires a conversion of time (e.g. hours,minutes,seconds) to a hexadecimal value of no more than 4 bytes (e.g. FFFF). I have no idea how this is done. Can anyone point me to a tutorial or give a quick explanation. Sample code would be great as well.
View 2 Replies
May 6, 2009
in one textbox i have 10:00 PM and in another textbox i have 12:00 PM....i want to subtract 10:00 PM from 12:00 PM and get result ie 2 hours...how can i perform that?
DateTime.TryParse(TextBox1.Text, d1)
DateTime.TryParse(TextBox2.Text, d2)
the code is to convert the text into time.
[code].....
View 7 Replies
Feb 27, 2010
I have a problem in detecting the 30 minutes interval in time scheduling like for example i have a combobox(starting_time) and combobox2(endtime) and I select there 9:30-10:00 it has 30 minutes I want to show a message box that I should be 1 hour.
View 12 Replies
Jul 21, 2009
I am looking for formula that is accurate in converting Minutes to Decimal Minutes i.e 30 minutes is 50 Minutes in Decimals so 1.3 hours is 1.50 and not 1.5 i have used Minutes/60 but it is not accurate as some times i have to Multiply the result by 100 and some time 1000 to get correct results based on single digit Try 1/60, 10/60 99/60 or 100/60.What would be the most efficient and correct way to Convert the time into Minutes ?
View 10 Replies
Jun 28, 2011
how i can use progress bar and updated with progress time. i mean for example if i make some process by click button ( copy file or search or) process that take alot of time, i want to see the progress bar change depend in the process. i know how to use it with a timer, this i don't wanted, because i don't know the time require for process event.
View 5 Replies
Dec 10, 2011
I have an .exe console application that when run, will do its thing and then close.
Q1: How can I time that run? (accurate, in milliseconds)
Q2: How can I see how much memory was used? (accurate, in bytes)
If MyPost Is Helpful Then MarkAsHelpful() ElseIf MyPost Is Answer Then MarkAsAnswer()
View 2 Replies
Mar 10, 2010
check how long a process has been running? I'm using the below code to check whether these programs are running.
Is there a way to see how long they've been running?
Private Sub tmrKillJoy_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles tmrKillJoy.Tick
Dim local As Process() = Process.GetProcesses
[Code].....
View 1 Replies
Apr 14, 2011
I have an application that provides a countdown for 60 minutes and I'm currently using the win form timer and it updates some labels and a progressbar. Now I have to change this to be a countdown for 360 minutes. Will the win form timer be sufficient or should I implement a Timers.Timer instead?
View 6 Replies
May 17, 2012
In a single table i want to save three records in at a time. with a single query. how i can do? can u give a simple example?
View 5 Replies
Dec 18, 2011
In my program I have two listbox and a button, it has the function of "check" that the two listbox have the same "count" items, but it takes some time before the action ends, the program then crashes until it ends, how can I use a progressbar using the processing time of the action button?
View 5 Replies
Jul 2, 2009
I have a data bound DataGridView. The final column of this is for the last change date to see how new the data is. I also have a hidden label on my form that has the current system time and date. I am wondering how do I take the date that is on the label and insert it into the column for the last change date on the datagridview when ever a new row is added. This way it automates the process of putting the exact time that row was added.
View 15 Replies
Jan 27, 2011
I have some old VBscript code to kill a windows process but am having trouble gettign it working. here is the code
[Code]...
View 6 Replies
May 11, 2009
I have a form that I will be using to copy directories of photos from memory cards to locations on a computer. I would like to add a progress bar to the application to show the progress of the copying in real time. This is the code that I use to copy the directory in the first place
Dim SourceDir As String = SourceTextBox.Text
Dim DestinationDir As String = DestinationTextbox.Text
If System.IO.Directory.Exists(DestinationDir) Then
My.Computer.FileSystem.CopyDirectory(SourceDir, DestinationDir,)
Else
My.Computer.FileSystem.CreateDirectory(Destination Dir)
My.Computer.FileSystem.CopyDirectory(SourceDir, DestinationDir)
View 3 Replies
Jul 25, 2011
i've the need to upload two files in the same time, with the same functions with the component backgroundWorker in multithreading.
That is, i'll use a function to launch the upload fase of two files in the same time, trought the backgroundWorket component.
My question is: how can i differentiate the manage of the two upload fases in the
backgroundWorker DoWork process?
View 4 Replies
Jun 28, 2009
It is my previous problem in vb6, its hard to multithread using vb6 so I migrate my codes to vb.Net.How can I multithread this two loops so that this process is running at the same time.Because when I start my second Loop, my first loop stop in executing. It will start again when my 2nd loop finished.
[code]...
I have 2 connected GSM Modem in usb port.That codes will send SMS in all contacts in my ListBox.
View 27 Replies
Jun 4, 2009
I have written a windows service that is meant to launch a notepad when a specific action happens. The problem i have is that even though the service launches notepad, the actual notepad it self is NOT visible. I know that it has been launced because i can see the process in the task manager. By the way the process is listed as a SYSTEM process rather than a process under my user name (i believe that is because my process is a "LocalSystem" one).
View 4 Replies
May 31, 2012
I thought I postet this yesterday but I can't find my thread so if this is a duplicate please point me at the original one. Background: I need to create a user account and Modify it's registry before the user logs on the first time. Creating the account is done by using the Winnt provider (works great). To create the profile I'm trying to use Process.start to launch a process as the newly created user. With the use of loaduserprofile property the users profile gets created and i can do my regwrites without problem.
[Code]...
View 11 Replies
Jun 27, 2011
Is there a way to have VB to use all available RAM in less than 3 minutes? say on a system with 4gb
View 4 Replies
Mar 15, 2012
I'm creating a feature for my software that bans the user for 10 minutes if he/she has failed to login thrice.
The problem is, I don't know how to code that. I got ideas on how to do it but I don't know what predefined classes or functions to use.
what classes or functions to use to code this feature?
View 8 Replies
Dec 10, 2010
I'm totally new to threading. I've got a Sub (no parameters) that I need to call every 7 minutes.
View 3 Replies
Sep 6, 2009
I have an ASP.NET application with a SQL Server back end. I am storing all my dates in UTC format and doing the appropriate conversions to the local time zone of the browser viewing it. One of the pages asks for a start date and end date (no times).
I am taking the start date and setting the time to 00:00:00 hours (midnight) and I'm taking the End time and adding a time of 23:59:59, so that the date range covers the whole day. Now what I'm trying to do is do a SQL query to do a search for records in this date range. The problem is, the data in SQL is in UTC time and the user is typing their dates and times in their local date and times. My quickest solution was to convert the date and time to UTC, then search the records. However, by doing this, I am to believe ASP.NET converts the given time and date to UTC based on the server time zone. How can I convert a date and time to UTC time based on the time zone of the user?
View 5 Replies
Mar 23, 2012
I want my vb.net dll to get the data sent from c++ project(exe).Can any body help on in what form this void pointer can be sent via pipe. The void pointer corresponds to enums or structures. I have to get this structures/enums on the vb.net dll end. I have mentioned about using pipe. My question is as what type the pointed to data can be send over the pipe so that I can easily handle the received data at the vb.net dll end.
View 1 Replies