Friday, October 14, 2016

Full form of most used Acronyms

GOOGLE: Global Organization Of Oriented Group Language of Earth (ग्लोबल आर्गेनाइजेशन ऑफ़ ओरिएंटेड ग्रुप लैंग्वेज ऑफ़ अर्थ) 


YAHOO: Yet Another Hierarchical Officious Oracle (यट अनेदर हिरार्चीकैल ओफ्फिसियस ओरेकल)

GPRS: General Packet Radio Service (जनरल पैकेट रेडियो सर्विस)


ZIP Code: "Zone Improvement Plan" Code (ज़ोन इम्प्रूवमेंट प्लान कोड)

GPS: Global Positioning System (ग्लोबल पोजिशनिंग सिस्टम)


AM: Anti Meridiem (एंटी मेरिडियम)


PM: Post Meridiem (पोस्ट मेरिडियम) 



ATM: Automated Teller Machine (ऑटोमेटेड टेलर मशीन) 



CTC: Cost To Company (कॉस्ट टू कंपनी) 



USB: Universal Serial Bus (यूनिवर्सल सीरियल बस) 



VIRUS: Vital Information Resources Under Seize (वाइटल इंफॉर्मेशन रिसोर्सस अंडर सेज) 



SIM : Subscriber Identity Module (सब्सक्राइबर आइडेंटिटी मॉड्यूल)

MMS: Multimedia Messaging Service (मल्टीमीडिया मैसेजिंग सर्विस)

SMS: Short Message Service (शॉर्ट मैसेज सर्विस)


WI-FI: Wireless Fidelity (वायरलेस फिडेलिटी)


GSM: Global System for Mobile Communication (ग्लोबल सिस्टम फॉर मोबाइल कम्यूनिकेशन)

CDMA: Code Division Multiple Access. (कोड डिविज़न मल्टिपल एक्सेस)

JPEG: Joint Photographic Expert Group (ज्वाइंट फ़ोटोग्राफिक एक्सपर्ट ग्रुप)


PDF: Portable Document Format (पोर्टेबल डॉक्यूमेंट फॉर्मेट) 


LMAO: Laughing My ASS Off (लाफिंग माई ऐश ऑफ)


LOL: Laughing Out Loud (लाफिंग आउट लाउड)

OK: Oll Korrect ( ऑल कोर्रेक्ट)

PNR: Passenger Name Record (पेसिंजर नेम रिकॉर्ड)

LCD: Liquid Crystal Display (लिक्विड क्रिस्टल डिस्प्ले)

IFSC: Indian Financial System Code (इंडियन फाइनेंसियल सिस्टम कोड)

TRP: Television Rating Point (टेलिविजन रेटिंग प्वाइंट)

LED: Light Emitting Diode (लाइट एमिटिंग डायोड)

UFO- Unidentifiable Flying Object ( अन आईडेंटिफाइेबल फ्लाइंग ऑब्जेक्ट)

Read source: Click here

How to disable taskbar preview thumbnails in Windows 10

In Windows 10, when you hover over a taskbar button of a running app or group of apps, a thumbnail preview appears on the screen. For a single window it shows a single thumbnail, and for multiple windows it shows a number of thumbnail previews in a row. If you wish to disable these thumbnails in Windows 10, I will explain how it can be done with a simple Registry tweak.

To disable taskbar preview thumbnails in Windows 10, do the following:
  1. Open Registry Editor.
  2. Go to the following Registry key:
    HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced
    Tip: You can access any desired Registry key with one click.
  3. Here, create a new 32-bit DWORD value named ExtendedUIHoverTime. Note: If you are running 64-bit Windows 10, you still need to create a 32-bit DWORD. Set its value data to 9000 in decimals. This means it will show the thumbnail after 9000 milliseconds (or 9 seconds) of hovering over any taskbar button. So, with such a high timeout value, you will never see taskbar thumbnail previews. disable taskbar thumbnails in Windows 10
  4. Restart the Explorer shell or sign out and sign in back to Windows 10.
This will disable taskbar thumbnail previews in Windows 10. See screenshots below.
Before:
single window preview Windows 10
After:
single window preview Windows 10 disabled It is possible to disable taskbar thumbnails only for a group of opened windows i.e.multiple instances of the app. Once this is done, Windows 10 will show a list of windows instead of thumbnails. The list makes it easier to identify them from a group instead of mostly similar looking thumbnails. To do this, follow these instructions:
  1. Go to the following Registry key:
    HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Taskband
  2. Create a new 32-bit DWORD value named NumThumbnails. Leave its value as 0. Note: If you are running 64-bit Windows 10, you still need to create a 32-bit DWORD value. disable taskbar preview thumbnails in Windows 10
  3. Restart the Explorer shell or sign out and sign in back to Windows 10.


Or simply try this software

Winaero Tweaker

If you would like to avoid Registry editing, here is good news for you. In the past, I created a freeware tool called Winaero Tweaker, One of its options is "Taskbar Thumbnails". It can tweak and change many hidden secret taskbar thumbnail parameters which cannot be changed via the Windows 10 GUI.
Winaero Tweaker taskbar thumbnails It can control all mentioned parameters in the article and many more. Using this tool, you will be able:
  • Adjust thumbnail size.
  • Adjust number of grouped application thumbnail windows.
  • Adjust horizontal spacing between the thumbnails.
  • Adjust vertical spacing between the thumbnails.
  • Adjust thumbnail's caption position.
  • Adjust thumbnail's top margin.
  • Adjust thumbnail's bottom margin.
  • Adjust thumbnail's left margin.
  • Adjust thumbnail's right margin.
  • Completely disable taskbar thumbnails.
To run it in Windows 10, download Winaero Tweaker from here. It works in Windows 10, Windows 8 and Windows 7 without issues.

Friday, August 19, 2016

How to remove trailing spaces from cells in Microsoft Excel?

Sometime we may add unwanted spaces in Excel cells, which are not easy to find out but affect sorting, calculating, or others. This article will introduce several methods to remove trailing spaces after text strings of cells in Microsoft Excel.

arrow blue right bubble Remove trailing spaces from cells in Excel with VBA


Using the Trim function is easy to remove the trailing space in one cell, but time-consuming to remove trailing spaces in many cells. Here provides a macro to remove all trailing spaces of all cells in a selection.
Step 1: Select the range in which you want to remove trailing spaces from cells.
Step 2: Hold down the ALT + F11 keys, and it opens the Microsoft Visual Basic for Applications window.
Step 3: Click Insert > Module, and paste the following macro in the Module Window.
Sub NoSpaces()
Dim c As Range
For Each c In Selection.Cells
c = Trim(c)
Next
End Sub
Step 4: Press the F5 key to run this macro. And all of the trailing spaces of the selection will be removed.

arrow blue right bubble Remove trailing spaces from cells in Excel with Kutools for Excel

Maybe you are not familiar with Microsoft Excel's Macros, and need time to study it. Please do not worry about it. The second method is provided by a third-party add-in, Kutools for Excel. Its Remove Spaces tool can help you remove trailing spaces from cells quickly.
Kutools for Excel includes more than 120 handy Excel tools. Free to try with no limitation in 30 days. Get it Now.
Step 1: Select the range in which you want to remove all trailing spaces from cells.
Step 2: Click the Kutools > Text Tools > Remove Spaces. See screenshot:
doc-remov-trailing-spaces1
Step 3: In Remove Spaces dialog box, check the Trailing Spaces option in Spaces Type section. See screenshot:
doc-remov-trailing-spaces2
Step 4: Click OK or Apply. And all the trailing spaces after the text string have been removed. See screenshot:
doc-remov-trailing-spaces3 -2 doc-remov-trailing-spaces4
Kutools for Excel's Remove Spaces tool makes it possible to delete all kinds of spaces from strings in cells, including all extra spaces, leading spaces, trailing spaces, or all spaces. Click to know more...



Saturday, August 13, 2016

The Save As dialog box appears two times when you try to save a file in Word 2010 or in Word 2007

SYMPTOMS
When you click Save or Save As to save a file in Microsoft Word 2010 or in Microsoft Word 2007, the Save As dialog box appears two times.

Save as window appears twice
CAUSE
This problem occurs because the Normal.dotm template is corrupted.
RESOLUTION
To resolve this problem, create a new Normal.dotm file by changing the name of the old file. To do this, follow these steps: 
  1. Start Windows Explorer, type %appdata%\Microsoft\Templates in the address bar, and then press Enter.

    Templates folder
  2. Right-click Normal.dotm, and then click Rename.

    Normal.dotm file
  3. Change the file name to Normal.old.dotm.

    Changing to Normal.old.dotm
  4.  Restart Word. A Normal.dotm template is automatically generated.


    new template file
  5. Try to save a file to check whether the problem is resolved.

source: https://support.microsoft.com/en-in/kb/2637570

Wednesday, March 9, 2016

Count The Number of Cells With Specific Cell Color By Using VBA

Here the steps to create the count cell color UDF:

  1. Open Microsoft Excel then press Alt+F11 to show Visual Basic Editor window.
  2. On Insert menu, select Module to create a module. Then write the following script:
    Function CountCcolor(range_data As range, criteria As range) As Long
        Dim datax As range
        Dim xcolor As Long
    xcolor = criteria.Interior.ColorIndex
    For Each datax In range_data
        If datax.Interior.ColorIndex = xcolor Then
            CountCcolor = CountCcolor + 1
        End If
    Next datax
    End Function
  3. Close VBE window and back to Excel.
  4. To test the UDF, create some example data, or you can download this example file here.
  5. At cell D3, write the function: =CountCcolor(range_data,criteria)
    in range_data argumen, select cell C2 to C51
    in criteria argumen, select cell F1

  6. Press Enter and in cell F2 the result is 6. It means the number of cells with Blue cell color is 6 cells.

  7. You can also test another color. Change the color in cell F1 with any color you want from the data by using Format Painter to get same color.

  8. You can also pack the UDF, so that function can be used in another workbook and machine. Please following this steps :


    Step 1: Save The Workbook

    1. Fill the name that you want named to at the File Name box. Here I name it Count Cell Color.
    2. For the file type, choose Excel Add-In (.xlam) format.



      Note: You can save your Add-In file anywhere you want. But if you want it to be listed on Excel built-in, you should save it into the default location. On my computer with Windows 7 operating system, the default location for any versions of Microsoft Excel is: C:\Users\RADDINI\AppData\Roaming\Microsoft\AddIns


    Step 2: Install the Add-In
    1. Open Microsoft Excel on computer that you want install the Add-In. Open Add-Ins dialog box by clicking Add-In on the Developer tab.
    2. On the Add-In dialog box, click Browse button so Browse dialog box is displayed.

    3. Go to file location that Add-In file is saved. Choose the file and then click Open.
    4. On the Add-Ins dialog box make sure the add-in checkbox is unchecked. Then click OK.

Now the Count Cell Color UDF has installed and ready to use.

source:https://support.microsoft.com/en-us/kb/2815384

Monday, February 1, 2016

Engineering vs engineering technology

Engineering and engineering technology are separate but closely related professional areas that differ in:

  • Curricular Focus – Engineering programs often focus on theory and conceptual design, while engineering technology programs usually focus on application and implementation. Engineering programs typically require additional, higher-level mathematics, including multiple semesters of calculus and calculus-based theoretical science courses, while engineering technology programs typically focus on algebra, trigonometry, applied calculus, and other courses that are more practical than theoretical in nature.
  • Career Paths – Graduates from engineering programs are called engineers and often pursue entry-level work involving conceptual design or research and development. Many continue on to graduate-level work in engineering. Graduates of four-year engineering technology programs are called technologists, while graduates of two-year engineering technology programs are called technicians. These professionals are most likely to enter positions in sectors such as construction, manufacturing, product design, testing, or technical services and sales. Those who pursue further study often consider engineering, facilities management, or business administration.

There is much overlap between the fields. Engineers may pursue MBAs and open their own consulting firms, while technologists may spend their entire careers in design capacities.

For ABET accreditation, engineering and engineering technology programs are reviewed and accredited by two separate accreditation commissions, using two separate sets of accreditation criteria: the Engineering Accreditation Commission and the Engineering Technology Accreditation Commission.

source:http://www.abet.org/accreditation/new-to-accreditation/engineering-vs-engineering-technology/

What is the difference between engineering and engineering technology?

I spend quite a bit of time talking with prospective students and their families about engineering technology and the programs available here at NMU during their campus visit (see www.nmu.edu/visit for more information about the campus visit program).  One topic I typically spend a lot of time on during these visits is the difference between engineering and engineering technology.  I look at it from 4 different perspectives; 1) Academically, how the classes and curriculum differ between the two types of programs, 2) Employment opportunities and types of work for each degree, 3) Registration as a Professional Engineer, and 4) What types of individuals are best suited for each type of program.  Each of these perspectives is expanded upon below.  Some universities offer both engineering and engineering technology (ET) degrees, and some universities offer either only engineering, or only ET.  Here at NMU we offer only the ET degree. 

The primary academic difference is that ET classes are typically more “hands-on” and more application focused than engineering classes.  Most ET classes will have labs associated with them in which the students apply the concepts learned in class to an actual application.  Some examples of classes that would typically be offered in an ET program that would not be found in an engineering program would be; basic manufacturing processes (machine shop), fluid power (hydraulics), and basic circuits (circuit board construction/soldering).  Engineering classes are typically more math intensive and theory based than ET classes.  A smaller percentage of engineering classes will have lab components.  Some examples of classes that are found in most engineering curriculums but not in many ET programs are; Calculus II and III, Differential Equations, and Chemistry II.  Another difference is the math used in the engineering classes is often calculus-based and algebra is used in most ET classes.

When I graduated from college I went to work as an engineer at a large automotive manufacturer.  At this company a significant differentiation was made between engineering graduates and ET graduates.  The ET students filled technician jobs.  They set up vehicles with instrumentation and actually took the vehicles out and did the testing, and depending upon their ability, did some data analysis.  The engineering students got jobs as project engineers.  They would specify what tests are done, assign the tasks to the technicians, analyze the data, write reports, and give presentations to management.  In talking with many of my colleagues that worked at other large companies, the job divisions and classifications were very similar to my experience.  Later in my career, I took a job at a small supplier (~600 employees) to the diesel engine industry.  At this company new employees were treated the same and got similar job assignments whether they had an engineering degree, or an ET degree.  In a number of cases ET degreed personnel moved into management positions and oversaw people with engineering degrees.  At this company you were assigned projects and moved up in the company based upon your job performance and the degree was irrelevant.  In my experience, and with discussions with many former NMU ET graduates, it seems that most smaller companies adapt this philosophy.

Another difference between engineering and ET degrees is the ability to get licensed as a professional engineer.  Registration as a professional engineer is required for engineers making final decisions that can have an impact on the health and welfare of the general public.  A large majority of the mechanical and electrical engineers across the country are not licensed professional engineers.  It is most common in the civil engineering disciplines.  Engineers working in the building design and consulting fields often find it beneficial to be licensed.  In Michigan the process to become licensed is; 1. Graduate from an accredited engineering program, 2. Pass the Fundamentals of Engineering Exam, 3. Work in industry for a minimum of 7 years under the guidance of a professional engineer, 4. Pass the Practice of Engineering Exam.  Notice the first step was to graduate from an engineering program.  An ET degree does not meet the requirements in Michigan.  Each state has their own specific requirements and procedure for obtaining licensure in that state.  About two thirds of the states, including Wisconsin, accept an ET degree from an accredited program as satisfying the formal education requirements.  Both the Mechanical Engineering Technology and Electronics Technology programs at NMU have been accredited by ABET, therefore meeting the initial requirements for professional engineer licensure in these states.  Accreditation means that an independent evaluation of the program was done and the program was approved as having met the requirements of the accrediting body.  Engineering and ET programs in the US are accredited by ABET (www.ABET.org).   Therefore, in the majority of states, whether you have an engineering or an ET degree has no impact on your ability to become licensed as a professional engineer.

The last perspective I usually review is that of the student.  What type of individual is best suited for each degree?  In general, those most suited for the ET program are the “hands-on” type of individual.  This may be the student who took small engines, or machine shop in high school, or the person who likes tinkering on their snowmobile or dirt bike on the weekends.  The very academic student, the one who took AP calculus in high school, who gets a 28 or 29 on the ACT, and who would rather mess around on their computer than mess around in the garage, may find an appropriate fit in an engineering degree program.

Hopefully this has been a helpful summary of some of the differences between engineering and engineering technology.  If you have any questions about these differences or anything else related to the programs offered here at NMU, feel free to contact me at my direct office line (906-227-1179), or even better, plan a visit to NMU by contacting the campus visit office (906-227-1709) and you will be get an appointment to talk directly with myself or one of my colleagues.  No matter what your decision, you are exploring a degree program that will serve you well and provide yourself a gainful career.  Good luck in your education!!
Source:https://www.nmu.edu/engineeringtechnology/engineering-tech-vs-engineering

Blogger Tips And Tricks|Latest Tips For Bloggers Free Backlinks