Monday, March 24, 2014

List of Government website in Kuwait



List of Government website in Kuwait:




Name
Website
Ministry of Interior 
Ministry of Information 
Ministry of Finance 
Ministry of Justice 
Ministry of Foreign Affairs 
Ministry of Energy (Oil) 
Ministry of Information 
Ministry of Commerce and Industry 
www.moci.gov.kw/
Ministry of Labor and Social Affairs  & Electricity and Water
Ministry of Public Works & Housing Affairs 
Ministry of Public Health 
Ministry of Planning & Administrative Development Affairs
Ministry of Communications 
Ministry of Defense
Ministry of State for Cabinet Affairs
www.mod.gov.kw
Ministry of State for National Assembly Affairs 

Tuesday, March 18, 2014

Excel Macro for getting file list in a folder


Mesmerized of how to get list of filenames in folder, try this out.
Just follow these simple steps:
File – Option – Customize the Ribbon –Main Tabs –
Click on Developer - Click on Add.
Now click on the home, there you can find Developer option in the ribbon.

Now click on Visual Basic.
Click on insert - Module.
Paste this code below:

Option Explicit
Sub GetFileNames()
Dim xRow As Long
Dim xDirect$, xFname$, InitialFoldr$
InitialFoldr$ = "C:\" '<<< Startup folder to begin searching from
With Application.FileDialog(msoFileDialogFolderPicker)
.InitialFileName = Application.DefaultFilePath & "\"
.Title = "Please select a folder to list Files from"
.InitialFileName = InitialFoldr$
.Show
If .SelectedItems.Count <> 0 Then
xDirect$ = .SelectedItems(1) & "\"
xFname$ = Dir(xDirect$, 7)
Do While xFname$ <> ""
ActiveCell.Offset(xRow) = xFname$
xRow = xRow + 1
xFname$ = Dir
Loop
End If
End With
End Sub


Now click on Run.

Your Macro is now ready.
Now close the file, save as type Excelmacro-enabled workbook.
Now again open it.
Go to developer tab.
Click on macro.
Select your macro and press run.

Download Excel.



Thank You.









Sunday, March 16, 2014

Instant Eyedropper Color Picker

Instant Eyedropper Is A System Tray Based Tool To View HTML RGB HEX Color Codes





Download


 Instant Eyedropper is a system tray based application which allows you to view color values and automatically copy the values to clipboard in multiple formats, without having to access any interface. More on Instant Eyedropper after the break.After installation, the application can be accessed from the system tray. The way it works is that, to view the code of any color, left-click its system tray icon and drag your mouse on top of any item on your desktop to view its color code. For instance, if you want to view the color code of any pixel in the Windows logo on your desktop, left click the system tray icon and drag it over to the required pixel. A small window will popup along side the cursor, displaying the code of color in real-time. The popup window also has a built-in pixel magnifier that helps you to locate the code of the exact color that you are looking for.


After installation, the application can be accessed from the system tray. The way it works is that, to view the code of any color, left-click its system tray icon and drag your mouse on top of any item on your desktop to view its color code. For instance, if you want to view the color code of any pixel in the Windows logo on your desktop, left click the system tray icon and drag it over to the required pixel. A small window will popup along side the cursor, displaying the code of color in real-time. The popup window also has a built-in pixel magnifier that helps you to locate the code of the exact color that you are looking for.

Just paste the color code through ctrl + v anywhere you want.Keep it simple!!



Right-click the system tray icon to change the format of color values. Instant Eyedropper supports HTML, Hex, Delphi Hex, VB Hex, RGB and HSB color codes.