Restrict Application Closing Even From Task Manager?
Oct 23, 2011
I have created an application in VB2010 and deployed it such a way that it will start automatically when a user logins.I want user to restrict closing the application, so i disabled the close button also in the forms.But still users are able to close the application from Task Manager. Is there any option to restrict application closing even from task manager...?
View 19 Replies
ADVERTISEMENT
Jan 26, 2012
Why does my vb.net win-forms app continue to run after press the Windows Close button (red X).Here is the code from the form closing event[code]...
View 11 Replies
Oct 10, 2011
have you of any ideas in why does my software in vb 2010 still exist in the task manager (process tab), after i closed the program? i noticed it when i want to delete the .exe file.
View 10 Replies
Jul 21, 2009
I was wondering if there is a way to log into a database when an application was killed using the task manager?
View 13 Replies
Apr 9, 2009
I create a form and set the border style to FixedSingle , this form dosen't have (control box) and when i want to unload this form i should press ALT+CRLT+DEl and cancel it form process tab ( not Applications tab) how can i set my program in application tab in task manager?(show in taskbar is true)
View 7 Replies
Jun 13, 2011
My exe (vb.net) only show in Task Manager (Process), but not show in Task Manager (application). How can i fix it?
View 1 Replies
Nov 26, 2011
I am making a application that shows the current applications running. So far, I have made this code that shows the processes that are running:
vbcode
Imports System.Diagnostics
Public Class Form1
Public Sub New()
InitializeComponent()
[Code]...
However I only want to show the list of applications. Anyway to do this?
View 7 Replies
Apr 14, 2011
In my application, the user can create a word document from a word template with dynamically added text and data to it. This happens on a backgroundworker so that the application doesn't hang during the process. This all works fine and the word document opens correctly when finished. Now if the user leaves the application to do something else, in most cases when they come back to it, it has frozen. It's still responding/running in task manager but the interface is frozen. In debug mode, it never freezes and so I can't catch the exact moment when the freeze occurs. My backgroundworker is disposed of when complete and I close everything related to the word object.
View 1 Replies
Apr 5, 2011
I have written an application in Visual Basic 2010 that I would like to hide from the Task Manager Application Tab, if possible. It's fine if it is listed in the Processes tab.
The purpose of the application is to allow users to postpone a restart following software update installations that require restarts. The application includes a form the user's must interact with so it can't be permanently hidden from view on the desktop. I am basically looking to mimic the WSUS Windows Update dialog which allows users to postpone restarts.
VB6 has app.taskvisible which is no longer included in VB 2010. I have seen a lot of discussion around this topic but no real solutions.
View 1 Replies
Jan 6, 2011
I'm going to create an application that will act as some sort of task manager. For stability reasons I will not use threads but processes instead. I have to deal with several third party libraries and/of COM servers that are not always that stable and can produce severe crashes sometimes. This may (of course) not affect the task manager
Problem with using processes is how to communicate with them? The process must f.e. give a status back of what it's doing every x seconds.
I was thinking of using TCP over a separate port per process, but is this the best way of doing this?
View 5 Replies
Jun 8, 2011
i dont no much about vb.net ..i am php developer i have just developed a mini application in vb.net i wanted to know how to hide our application from appearing in task manager...
View 2 Replies
Oct 3, 2011
how can i stop ctrl alt delete f4 windows task manager in my application
View 6 Replies
Dec 20, 2010
anyone knows the equivalent code for App.TaskVisible in VB.net? App.TaskVisible is from VB6 which hides the application in the applications list in task manager and not in the processes list tab.
View 1 Replies
Jun 7, 2012
I am currently creating a task manager. But there is a problem : After killing the processes, it still remains in my list box (list of processes).I don't want to use a timer to clear the list and add the list of processes again because this will cause the list to blink.[code]
View 7 Replies
Oct 19, 2011
Need to know what processes are runnuning n other Pc in my Network.
View 2 Replies
Oct 27, 2011
how to get application User Name from task manager (in Processes Tab) ?
View 3 Replies
Jun 22, 2010
How do I make my app have a description in the Processes tab of the Task Manager? Changing the assembly description doesn't do it apparently. Right now the description is just it's name.
View 1 Replies
Jun 28, 2009
Im new here and i want learn more about visualbasic8..so my friend and me working on RAT ( most of work he coded ) so i want only to know a source codes to disable/enable task manager so im asking can someone post it here & thank you !
View 4 Replies
Sep 29, 2010
How can I get all of the Image names (processes) from the task manager and stor it in a list view or somthing like this ?
using VB.net ,,
View 2 Replies
Feb 15, 2011
I am trying to get one of the information inside the Users at the Task Manager.[code]...
I want to know in .Net coding how to get that information?
View 2 Replies
Feb 27, 2011
I want to get the name (image name on task manager) of the process that is active (foreground) and only when this process is foreground do something.
get the name of the foreground proces?
I already have this code
Dim procList() As Diagnostics.Process = Diagnostics.Process.GetProcesses()
Dim i As Integer
For i = 0 To 20 - 1 Step i + 1
[Code].....
View 5 Replies
Jul 25, 2007
I'm writing a small App that mimic's the Task Manager and I can get all the running processes images names and physical Memory usage but can't seem to figure out how to get the CPU usage Percent for each process.
opps forgot and as well as the indivdual process usage percent, so the precent each process is using....
VB.net 2003
View 4 Replies
Aug 27, 2009
how do i check in vb if a file is already open / in use? and is it possible to hide a process from task manager?
View 1 Replies
Jun 8, 2011
How Can i hide my program From Task Manager in Windows 7 ?
View 1 Replies
Mar 21, 2009
I am making a security program in visual basic 2008, and am wondering is there anyway i can stop the program appearing in the applications tab in task manager. Theres the option to close the program via the taskbar with a password, I just don't want anyone to be able to just end it from task manager. I know you can stop it somehow cause other programs manage to but how?
View 15 Replies
Nov 17, 2006
This works for XP, VB.NET 2003/2005/2008. This example does not work on Windows Vista.
Add a ListView, and Timer to a form.
{Timer must have the Elapsed Event}
Code:
Public Class Form1
Const WM_COMMAND As Int32 = &H111
Const MF_ENABLED As Int32 = &H0
Const MF_GRAYED As Int32 = &H1
Const LVM_FIRST As Int32 = &H1000
[Code] .....
View 14 Replies
Oct 29, 2009
in the right direction on how to get the list of applications showing in the applications tab in task manager? I am able to get the processes listed in the task manager, but I need to get the applications listed in the applications tab in task manager
View 5 Replies
Feb 3, 2010
[code].....
View 8 Replies
Apr 10, 2009
Back when i used vb i used an unload form command which allowed me to completely close it. but now i cant use it in 2008 [code]...
View 3 Replies
Aug 14, 2006
I can use task manager to kill explorer.exe, case use following code to restart it
[Code]...
View 14 Replies