Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
Prevent application from closing from Task Manager using VB.NET.
The only way to definitively prevent your application from being closed would be to run it under an account where the current user (using Task Manager) doesn't have rights to modify the application.
If it's running under your user's account, they will be able to kill it via Task Manager.
Otherwise, the only real option is to handle the Closing events on your forms, and request that they don't close. That will prevent the normal "close application" from shutting down your application.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 1 year ago.
Improve this question
I am using the HexChat client on my local machine. I have been using an unregistered nick, eg. foobar. When my connection has dropped I get a message when I try to reconnect:
foobar is already in use. Retrying with foobar01...
foobar01 is already in use. Retrying with foobar02...
This has been like this for weeks. My actual username I am trying to use is not something anyone wold be using so it seems it is locked. Obviously I cannot register the nick because I can't connect with it.
What's the solution?
If you are saying it is happening only temporarily after disconnecting that is often referred to as a ghost and your old connection just hasn't timed out. If you register the nick you can forcefully disconnect it otherwise you wait.
If it is always happening and another user is actually using it /whois $thenick then there is nothing you can do about that since you didn't register it.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about programming within the scope defined in the help center.
Closed 8 years ago.
Improve this question
I've an app that has been 6 days since I committed last time, I want to commit a new version as soon as it has been passed.
There's no email notifies from apple.
I have to check every several hours.
How to determine or monitor apple itune app review has passed or rejected?
Log into iTunes connect (https://itunesconnect.apple.com) and click on Manage Your Apps:
From there you can choose from your apps to determine the status.
https://itunes.apple.com/us/app/itunes-connect/id376771144?mt=8 Good and perfect for me I just found
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I have to write logs for windows installer set up which is built using WIX.
Can we write log for each component and feature..?
I am struggling to find out a way to do this any one help me please.
Thanks
Naresh
Have a look at MsiLogging and MsiLogFileLocation. You can set these properties in your MSI to force logging. Setting a logging mode like MsiLogging=icewarmupvo will include the most information in your setup logs. Alternatively, if you have a chainer (eg burn, setup.exe) you can control the logging from there using MsiEnableLog.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
On the production server when xp_readerrorlog cmd is run the size will show approx 500000 daily i have to recycle error logs the errorlogs contains messages of all the successful login and not successfull login details. i need both the information please suggest what i can do.
If you're capturing every single login and failed login into your error log along with all the other stuff that gets written to the error log, then your error log is just going to grow and there's nothing you can do about that.
If you need to capture logins and you're using SQL Server 2008 or better, I'd suggest taking a look at Extended Events. This will output to a different file, which you'll still have to manage, but it won't be filling up your error logs.
For 2005 & earlier you can do similar work with a server-side trace, but it's not as efficient as extended events. Here's an article on how to set up a server-side trace from Gail Shaw.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
Is there an easy way to write to and read from the windows event log in VBA?
Yes, using the standard API calls. See HOWTO: Write to the Windows NT Event Log from Visual Basic This is fairly old but should get you started.
Note, however, that this code uses a default source. (Run the event log to see what I mean by source.) I haven't run tihs code in Access so I don't know what the default source is for Access. In VB6 thuogh it was something generic with VB 6 runtime or some such. If you visit the thread ReportEvent and MessageDLL problem Options it states you need to run an install program with admin privileges to add your app name and path to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog\Application\ So this could get even more complex when it comes to getting a distinguishable source in the event log.