Logoff, Sleep, Restart Codes In VB?
Mar 10, 2012Is there a VB.NET code that I can use to make the computer sleep, restart, logoff, and maybe switch user too?
View 3 RepliesIs there a VB.NET code that I can use to make the computer sleep, restart, logoff, and maybe switch user too?
View 3 RepliesWhat i wish to find is a message or the like that I can use to detect between specific 'shutdown' like events, ie: I wish to be able to find the difference between a shutdown, restart, logoff and sleep initiation.
The problem i have found (as displayed below) is using oClosingEvent.CloseReason the return types provide no further information other then the WindowsShutDown constant (the others are obviously irrelevant in this case).
Private Sub frmMain_FormClosing(ByVal sender As Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles Me.FormClosing
Dim oClosingEvent As System.Windows.Forms.FormClosingEventArgs
[Code]....
Currently I'm using System.Threading.Thread.Sleep(5000) to let my app pause/sleep for some time. This works great but I can't open my app anymore when it's sleeping and it uses about 25% of my CPU. I guess there must be a better way to do this. I also tried using a timer but that didn't work out to well for me..
View 5 RepliesDear Experts modify UPDATE codes according to INSERT codes Style.
[Code].....
I need update codes as there are insert codes
This is the code I am working with...
[Code]...
I have a distributed print control application that is done in a combination VB6 and Visual C++. The application launches at startup on a workstation and waits for a user to login. Once that happens, we track time in the session, along with how many print jobs the guy performs.
We have separate session SW that allows a person to add money to their accounts. The problem is that if there's an active session, typically due to the individual being logged into one of the above mentioned workstations, I can no longer ensure updates to the DB will be atomic.
I would like to have the money terminal send a log off command to the remote workstation session if it detects a user is currently logged in elsewhere. But I'm not sure if there's an existing API for this.
I am trying to write a code on auto logoff for an application after certain perioed of time. But not sure how should i start on it. But I got below code, but there is an error (example:
System.Windows.Interop.
System.Windows.Interop is not a member of Windows and System.Windows.Threading is not doesn't contain any public member) and i wonder how should it get fix and merge into my application code
Imports System
Imports System.Collections.Generic
Imports System.Linq
[code]....
I am trying to capture SHUTDOWN and LOGOFF Events, so that I can be alerted when my process stops. The below code works in detecting these events. I am trying to get it to release the monitoring of the system events after the email has been sent, Being newer to VB, I am not sure how to do this. I copied this code from another google forum.
[Code]...
I have an application that starts from Sub Main and I need to run a sub when the system is about to shut down, restart or logoff so it can save it's settings. I found some code on google:
Imports Microsoft.Win32
Public Sub Main
AddHandler SystemEvents.SessionEnding, AddressOf OnShuttingdown
[code].....
I'm making a screensaver with the added option of shutting down/oggingoff/hibernating/sleeping at a user-defined time. Now, I'm fine for all my code except for the scripts for these events.
View 1 Repliesi want to capture the system logoff time and i have to store the time in .txt file. when ever the user logging in and logging off i have to capture the time and store the time in .txt file.i konw how to use windows services.but how to capture the log off time and log on time?
View 7 RepliesI want to create a windows service which will record the time when a user Logs in or logs Off from his machine.If i am able to track the events that are fired when a user logs in and logs off then i think i will be able to solve the problem.
View 5 RepliesI have an application that starts from Sub Main and I need to run a sub when the system is about to shut down, restart or logoff so it can save it's settings. I found some code on google:
Imports Microsoft.Win32
Public Sub Main
AddHandler SystemEvents.SessionEnding, AddressOf OnShuttingdown
[Code]....
But it doesn't seem to work, Windows shuts down yes but when I re-start the vm and run the app it opens with the old settings, not the ones that I changed before I shut down the vm. Anyone know of a way to do this or to fix the code above, I don't think my OnShuttingdown event is being handled.
is there anyway to sleep a thread for a "tick". i.e. the tick in StopWatch.ElapsedTick. right now the best i could achieve is this thread.sleep(1). i need it faster
View 13 RepliesI want to listen to events in my windows forms .NET application for the following system wide events :
[Code]...
I have used the following code to shutdown the system but it will perform logoff windows
Private Const EWX_LogOff = 0
Private Const EWX_SHUTDOWN = 1
Private Const EWX_REBOOT = 2
P[code].....
I currently trying to write a simple visual basic 2008 code referring to:
[URL]
However, I getting an Error on: Dim wup As New WakeUPTimer.WakeUP
Imports System.Collections.Generic
Imports System.ComponentModel
Imports System.Data
[Code].....
How can i restart the a frm?
View 4 Repliesi want to check if the computer is in sleep mode or not...Suppose my project is in normal state..I change the state to sleep mode,I want that now when the computer wakes from sleep mode,I want that my project is in minimized state..How to check dat?
View 3 RepliesI want to check if the computer is in sleep mode or not...Suppose my project is in normal state..I change the state to sleep mode,I want that now when the computer wakes from sleep mode,I want that my project is in minimized state.[code]....
View 14 RepliesI wanna sleep a second thread of BackgroundWorker. I tried to use Me.Dispatcher.Thread.Sleep(500) in DoWork event, but it fails.
View 3 RepliesIs there a sleep method in vb.net(2003).
View 5 RepliesI wish to prevent windows from going to sleep while my program is running.
I did allot of searching and found in MSDN the "SetThreadExecutionState" but could not find a way to make it work.
example code for preventing the sleep?
I am using windows 7 and vb 2008.
Im having a problem with putting a thread to sleep...
othread.sleep(system.threading.timeout.indefinite)
The error is :"Access of shared member, constant member or enum member or nested type through an instance, qualifying expression will not be evaluated"
The code is:
Code:
Imports System.IO
Imports System.Threading
Public Class In_Process
[code].....
I have a multi-threaded report engine application. I know that if I want to pause a thread for an interval I can use Thread.Sleep. What I need however, is to be able to suspend the entire process including all threads for a set period of time. In the past, I've used the Sleep API from kernel32.
It appears though that it's only "sleeping" my current thread and not the entire process which is not what I expected (now that I've read the documentation I realize that Thread.Sleep is probably the managed implementation of this API which is why it behaves as it does). So, my question, how do I force the entire application (and all of its threads) to pause the for the interval and not just the thread calling it? Private Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Int32)
I know there is always better ways of doing things. Normally when you create a thread and I want it to pause/sleep for a set amount of time I use the <Object>.Sleep(1000) but this is frowned upon in .Net2+.
[Code]...
How can i wake up pc from sleep? i found this project [URL] in c# but i can not convert it, i tried but it has error, can someone conver this code in vb.net?
View 8 RepliesI have a For..Each loop which loops trough all grid's rectangles and changes the fill of them randomly. I change the fill with a color animation. Here's my code:
Dim rand as new random
Dim changeColor As New Animation.ColorAnimation
changeColor.Duration = TimeSpan.FromSeconds(0.5)
[code]....
The problem is that the loop doesn't sleep. I want to trigger the animation, then wait until the rectangle fill is changed and then continue with the rest, but it seems that all of the rectangles fill are changed in the same time.
If I had a command button and I wanted it to shutdown or restart there computer when they want to.can I just use a simple shell command?
View 2 RepliesThis is what i have so far, but i just wanted to how to execute this on a remote pc.[code]
View 5 Replies