An Apple a Day Keeps Doctor Away !!!
The most awaited apple season have knocked the market. This delicious, juicy fruit is my favorite hence I would like share with you its benefits through this video Benefits of Apple
An Apple a Day Keeps Doctor Away !!!
The most awaited apple season have knocked the market. This delicious, juicy fruit is my favorite hence I would like share with you its benefits through this video Benefits of Apple
1. Open the Microsoft Registry Editor regedit
2. Navigate to —
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\
WindowsUpdate\Auto Update
3. Double click AUOptions
4. Here change the Value data to 2
5. Click Ok
This will change the Important Updates setting to — Check for updates but let me choose whether to download and install them (more…)
Dim fullPath() As String
Dim wbIndex As Long
Dim wbName as String
Dim wbAddr as String
‘ Wbaddr holds the full path for example: ” D:\Documents and Settings\Desktop\Preeti\macro\Input.xls”
fullPath() = Split(wbAddr, “\”) ‘Put Parts of the path into the array fullPath()
wbIndex = UBound(fullPath) ‘wbIndex holds the largest subscript
wbName = fullPath(wbIndex) ‘wbName holds the filename i.e. Input.xls
Here, through Split( ) we have stored the srings separated by “\”. The UBound( ) gives the maximum subscript value through which we get the filename.
Hello Friends,
There’s a common proverb –
If wealth is lost nothing is lost, but
If HEALTH is lost everything is lost.
But there are 90% people in this world who are suffering from different health disorders. Just turn around and see, 9 out of every 10 persons are contracted with minor ailments like obesity, hair falling, dandruff, pimples, greying of hair at an early age, allergic to pollution, or to water. Another major part of population is affected by fatal diseases. And the credit for this goes to the food we eat. See yourself, are you fit?
There can be many common reasons to all these problems, like
Through this post I want to empower you with the knowledge and tools you need to change your lifestyle today to live healthier and longer.
No doubt our average life span have increased but its filled with different kind of health disorders. The question is,
Do you want a quality life and to reach old age free of disability and disease?
Do you want to live a healthy life?
Do you want to be happy and enjoy the life to the fullest?
If the answers to all these question is yes, then you have come to the right place. This post is provides you the guidelines to living healthier lifestyle.
Guidlines to lead a healthy life:
Here are some of the tips which I have heard from Swami Ramdev while watching his pranayam on TV :

Avoid eating burgers, pizzas, ice-creams, pastries, soft drinks, buiscuits, chips, kurkure and other junk food. Junk food is very tasty but the bonus which comes along with it ( fat on the stomach ) is too difficult to get rid of.
- Bhastrika Pranayam – Relievs you from depression, stress, anxiety. Respiratory diseases are cured. Lungs becomes strong. Cures migrain.
- Kapalbhati Pranayam – Very effective for weight loss. Cures any type of stomach problem.
- Baharya Pranayam – Good for hernia and stomach related problems.
- Ujjahi Pranaya – This is the only cure of thyroid. Do it 7 – 11 times.
- Anulom Vilom Pranayam – Cures asthama, arithritis, sinus, allergy problems, paralysis. I have heard in shivir from people that continous pracitice leads to increase the eye sight. Even the spectacles can be done away with. Ear problems can be cured.
- Bhramri Pranayam-
- Udgeeth Pranayam –
Hi Friends,
In last one decade, the demand for patanjali products have accelarated. This indigenous brand, led by Acharya Balkrishna, has been a great challenge for many foreign brands. Its a sense of great pride for all our fellow Indians.
As proclaimed by Baba Ramdev, most of the ailments can be cured by pranayam and yoga asanas only (doing it with right method, correct timing and concentration), however for certain diseases we can take disease specific medicines. One of the best thing about these medicines is that they are made of herbs and do not have any side effect, still one should always take under medical supervision.
Many FMCG such as skin care, hair care, dental care, food products like biscuits, candy, dalia, flours, sauces, pickels, papad etc., aastha pooja essentials, bhajan CDs and DVDs, books and many more products are availble at different patanjali stores.
One can buy these products online at https://www.patanjaliayurved.net
Checkout the Patanjali Chikitsalaya and Megastores nearest to your locations from the following links –
To delete a sheet from the workbook without the user being prompted for confirmations, here is the code:
Sub DeleteSheet ( )
Dim SheetName As String
‘ deletes a sheet named SheetName in the active workbook
Application.DisplayAlerts = False
Sheets(SheetName).Delete
End Sub
Macro to delete the default sheets(remember there has to be atleast 1 sheet in the workbook, you cannot delete all.) :
Worksheets(“Sheet1”).Delete or Worksheets(1).Delete
Worksheets(“Sheet2”).Delete or Worksheets(2).Delete
Worksheets(“Sheet3”).Delete or Worksheets(3).Delete

Hello Friends,
We all know that the global financial meltdown has reduced the placments this year. Students who are in their final leg of studies or qualified who are looking for placement in reputed organizations should prepare thoroughly for the personal interview rounds. Because these days companies look for candidates having good communication skill besides technical skill.
You all would be in your best attire but you are judged when you start speaking. Most of the students are selected in written but they get eliminated when they are interviewed. You have to give your best in each round specially in HR. So what are you looking for!!!!!
Start now.You can visit the link below.The site includes some of the common questions asked in the HR interview. Go ahead and all the best. 🙂
Sub CreateFile ( )
If fso.FileExists(wbAddr + “Output.xls”) Then
Set wkOut = Workbooks.Open(wbAddr + “Output.xls”)
Set wkOut = Workbooks(“Output.xls”)
wkOut.Close
fso.DeleteFile wbAddr + “Output.xls”
End If
Set wkOut = Workbooks.Add
wkOut.SaveAs filename:=wbAddr + “Output.xls”
Set wkOut = Workbooks.Open(wbAddr + “Output.xls”)
Set wkOut = Workbooks(“Output.xls”)
End Sub
What The Code Does?
Each time you execute the program the file, ” Output.xls” is created if it do not exist otherwise it’s deleted and then created. In the If part to delete the file I have closed it because any open workbook cannot be deleted. Also before closing I have opened it because a wokbook is closed only when it is open. If the workbook is already open no error will occur if you again open it. Set wkOut = Workbooks.Open(wbAddr + “Output.xls”) is done only to make sure the workbook is open before closing it.
Sub CreateNewFile ()
Dim wkOut as Workbook
Dim wbAddr as string
Dim fso
‘wbAddr holds the path where the file needs to be created
‘like wbAddr=”D:\VbaCodes”
Set fso = CreateObject(“Scripting.FileSystemObject”)
Set wkOut = Workbooks.Add
‘Output.xls is the file to be created. A file or workbook is same.
wkOut.SaveAs filename:=wbAddr + “Output.xls”
Set wkOut = Workbooks.Open(wbAddr + “Output.xls”)
Set wkOut = Workbooks(“Output.xls”)
End Sub