Showing posts with label App Store (iOS). Show all posts
Showing posts with label App Store (iOS). Show all posts

28 March, 2018

Make App Disappear From Taskbar On Minimize

Screenshot showing Windows 8's ability to pin ...
Screenshot showing Windows 8's ability to pin apps and show different wallpapers on different monitors, as well as displaying the new Explorer file browser interface, Task Manager, and multi-monitor taskbar (in "Duplicated on all taskbars" mode). (Photo credit: Wikipedia)
28-March-2018

I wanted to completely hide an application after it is minimized. Hide() is not enough. [ShowInTaskbar = false] did the trick.

Well, I could say that I struggled a bit finding out what would really make the application disappear from the taskbar.

I used Hide(). Didn't work. I also tried Visible = false. Also did not work. I combined both, but still, it did not work. I combined both Hide() and Visible = false, and even then, I still did not see the job done. App icon still shows in the taskbar when it was minimized.

I should mention that I already have the application creating an icon in the System Tray as I have previously created a NotifyIcon to handle that. And what I am adding now is to minimize the window via code, which also requires the app icon to be not shown in the Taskbar.

I couldn't find many articles that provided help. What came up usually just mentioned Hide() or Visible, and some of the old stuff about adding a NotifyIcon function. I found one that did mention about making use of the property ShowInTaskbar. So I grabbed that one-liner code, tried it, and it worked!

So now my program is complete! Now I can hide an application after it is minimized. Thanks to ShowInTaskbar, I could declare it a holiday!

Till then!

[Late posting; drafted on 04-October-2017]


08 July, 2017

How To Remove Cleanserp.net Search Engine Hijacker From Chrome

Logo used from the start of the Chrome project...
Logo used from the start of the Chrome project until March 2011 (Photo credit: Wikipedia)
July 8, 2017


Recently I was plagued by cleanserp.net search engine taking over Google. I do a search and out comes cleanserp.net taking over Google.com, and that is even when you type Google.com in the web address!

I let this happen for a couple of days, until I got fed up. I was thinking that it was a bit difficult to remove this search engine browser hijacker, but my curiosity got the better of me.

So I did a search, and guess what? It is easy enough, easier than I expected, even if it were to be done manually.

I'm not telling anything anymore about what cleanserp.net is, of how it got into your computer, and what it does, and more.

So here are the steps:

1. Check the browser shortcut by doing right-click on it, then Properties. If after the .exe it shows "http://cleanserp.net", remove that. Then click on OK.

2. Change your startup page, it must not be "http://cleanserp.net".

3. Uninstall any program that may be related to anything rogue or questionable. Since you know your computer better, you know what you are installing, and anything that doesn't look like a legit program, you uninstall these.

Specific to Google Chrome, if changing the search engine throws out “This setting is enforced by your administrator”, try the following (this is what fixed my problem):

1. Open %WINDIR%\System32\GroupPolicy folder (just copy that path and paste into the address bar of Windows Explorer). Delete the contents of that folder.

2. Next, open %WINDIR%\System32\GroupPolicyUsers and delete all of its contents.

3. Finally, restart your computer.

There is a possibility that a few more minutes will be added than before to your computer's restart process, but that is just the first time reboot after doing the change. it would return to normal afterwards.

Some more info can be got here: How to Remove Cleanserp.net [Chrome, Firefox, IE, Edge]

Hope this helps.

Thank you, and till then!

16 November, 2014

How to log USB transactions?

English: A Sandisk-brand USB thumb drive, SanD...
English: A Sandisk-brand USB thumb drive, SanDisk Cruzer Micro, 4GB. (Photo credit: Wikipedia)
16-Nov-2014


I am looking at the possibility of logging USB thumb drive transactions, like copy to and fro, delete, format, etc. This, unfortunately, I cannot find anything on the world wide web.

Can anybody help me?

I don't even find it in CodeProject.com repository. Or maybe I am just not looking hard enough?

At any rate, I am curious how this works, if ever.

I need help. Anybody, if you know, or if you can direct me to some other articles that has the answer, please feel free to let me know.

Thank you!