Showing posts with label display. Show all posts
Showing posts with label display. Show all posts

Tuesday, December 20, 2016

Display the file size information in Folder Tips using Folder Options the Registry and Regdevelop

Display the file size information in Folder Tips using Folder Options the Registry and Regdevelop


When you move the mouse cursor to a certain folder, by default,  windows displays the file size information as shown below:

display.filesize

Let’s study how its made using the folder option and Windows registry.

unchecked

We’ll unchecked the option at Folder Options window and you’ll see the results that the folders file size information was remove at the Info Tip.

donotdisplay.filesize

Windows Registry Location

HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced

Registry Value Name: FolderContentsInfoTip

The default value is 1 and when the option was unchecked, it gives a value of 0 and 1 for the option is enabled.

Next, Let’s recreate the said tweak using Regdevelop for our own application using the values above:

regdevelop

Drag and drop the checkbox control into the form and change the configuration details and pattern them to the registry information above.

Caption

Display the File Size Information for Folders

RegKeyPath1

HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced

Value_Name1

FolderContentsInfoTip

ValueData1

1

ValueType1

DWORD

DeleteWhenUnchecked

False

RegKeyPath2

HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced

Value_Name2

FolderContentsInfoTip

ValueData2

0

ValueType2

DWORD

Click the Start Button to test the program and afterwards, the Build Now Button to finish creating the application using RegDevelop.

From the tip above, Regdevelop lets you create program in minutes using Windows Registry information. Create your own TweakUI program – Using the development tool Regdevelop Tweakui functions can be duplicated and enhance.

Thanks for reading the tip!


Go to link Download

Read more »

Sunday, December 18, 2016

Display Driver Uninstaller 12 3

Display Driver Uninstaller 12 3


Display Driver Uninstaller 12.3 Portable

Display Driver Uninstaller is a driver removal utility that can help you completely

uninstall AMD/NVIDIA graphics card drivers and packages from your system, without leaving

leftovers behind (including registry keys, folders and files, driver store).

The AMD/NVIDIA video drivers can normally be uninstalled from the Windows Control panel,

this driver uninstaller program was designed to be used in cases where the standard driver

uninstall fails, or anyway when you need to thoroughly delete NVIDIA and ATI video card

drivers.


latest version 12.3

Changelog




-Disabled DDU CleanUP if AMD Enduro Laptop is Detected until DDU correctly support its

removal.

-Nvidia cleanup order reorganisation

-Workaround to not let the O.S rebooting infinitely into safemode when the normal procedure

fail to set it back to normal.

-Some tiny leftover Nvidia removal

Installation

install the setup

This is a portable version no need to activate

enjoy......................





DOWNLAOD     HERE:>

Go to link Download

Read more »

Saturday, October 15, 2016

Display Blogger Labels In A Drop Down Menu Gadget

Display Blogger Labels In A Drop Down Menu Gadget


A labels widget displays your post labels. Each label is linked to a page containing posts which fall under that label. Usually as your posts increases, so will your labels. If you don’t limit them, sooner or later your labels widget will take over your sidebar :)

Regain control of your sidebar, shrink the widget -by converting it into a dropdown (or is it a pulldown?) menu. Your labels widget size will be reduced to just one line! And only expand into a full list when you click it.

  

Before applying this hack, you must already have a Label widget installed.
If you don’t have one, go to Design > Page Elements and add it.
Now let’s make the dropdown:

How To Create Dropdown Menu For Labels Widget

  • 1. Go to Dashboard > Design > Edit HTML.
  • 2. Back up your template.
  • 3. Make sure you DO NOT tick the Expand Widget Templates checkbox.
  • 4. Look for the following lines in your HTML code:
<b:widget id=Label1 locked=false 
title=Labels type=Label/>

  • 5. Replace that line with this code:
<b:widget id=Label1 locked=false 
title=Categories type=Label>
<b:includable id=main>
<b:if cond=data:title>
<h2><data:title/></h2>
</b:if>
<div class=widget-content>
<select style=width:100%
onchange=location=this.options[this.selectedIndex].value;>
<option>Click To Choose a Category</option>
<b:loop values=data:labels var=label>
<option expr_value=data:label.url><data:label.name/>
(<data:label.count/>)
</option>
</b:loop>
</select>
<b:include name=quickedit/>
</div>
</b:includable>
</b:widget>
  • 6. If you want change the width of the drop down menu then change this value width:100% to any percentage, or pixel (px).
  • 7. To change the phrase “Click To Choose a Category” then find this line Click To Choose a Category  and replace it with your preferred phrase.
  • 8. If you do not want to show post count at the end of each label then delete this line (<data:label.count/>) .


Go to link Download

Read more »

Thursday, October 6, 2016

Display problems Philips 42PF9631D37

Display problems Philips 42PF9631D37






Go to link Download

Read more »

Saturday, September 24, 2016

Display and Always Show Menus like File Edit View and Tools at Windows and Internet Explorer

Display and Always Show Menus like File Edit View and Tools at Windows and Internet Explorer


If your already accustomed with the standard Menu bar - File, Edit, View and Tools, and you don’t know where to look for the options, here’s how to display and use the menus like old times at Internet Explorer and Windows Explorer.

To display the menu bar temporarily

Open the Internet Explorer or Windows Explorer and Press ALT.

Permanently display the menu bar at Internet Explorer

rightclick_menubar

Right click any portion of the topmost area of IE and choose menu bar.

Folder options - Windows Explorer Menu Bar

folderoption

“Always show menus” tweak at Folder options can do the job well, It’s easy – press Alt + O to access while the explorer is active or has focus. Also, you can access the window through Start Search by typing “folder option” and afterwards, go to View Tab, and click to check the option and press the apply button.

Registry Locations

The registry setting is by case to case basis, find the registry folder as shown below:

Internet Explorer 9 at Windows 7

HKEY_CURRENT_USERSoftwareMicrosoftInternet ExplorerMINIE

Internet Explorer 8 at Windows Vista

HKEY_CURRENT_USERSoftwareMicrosoftInternet ExplorerMain

Windows Explorer

HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced

Look for AlwaysShowMenus name and put 1 to display the menu bar and 0 to hide.

That’s it! Thanks for reading the article!


Go to link Download

Read more »