Transfer PF from Prev Company To New Company

Transfer PF from Previous Company To New Company 

I have recently joined new company(CTS). I had opted to transfer the PF to new company while leaving the previous company(TCS). 3 months after joining the new company I requested to transfer the PF accumulations. I find difficult to follow the procedure, so thought of make a note on this,

The situation as per my understanding is this. Previous employer has created a PF account and put money on that account. Also new employer has created a new PF account and added money. New employer will deposit money only to this PF account, will not add money to PF account that created by previous employer. Now after changing company, PF accumulations in previous employer PF account need to be transferred to PF account created by new employer. For this we need to fill form 13 online(http://www.epfindia.gov.in/) and hand over the hard copy to HR of the new employer. The current employer only can transfer the amount from previous company.

I have followed the document http://www.epfindia.com/site_docs/PDFs/OTCP_PDFs/ProcessFlowforMembers.pdf  to complete the process.

Details Required:
PF account details of previous employer and current employer which can be obtained from payslips.
A PF Account number will be associated with previous employer. eg: MH/BAN/XXXXX/XXXXXX
A PF number will be associated with current employer. eg: TN/MAS/XXXXX/XXXXXX

Steps:
1. Register in http://www.epfindia.gov.in/.
2. Check eligibility for PF transfer in PF site(www.epfindia.gov.in ).
3. If eligible for PF transfer, fill necessary details in form 13 online.
4. Take printout of the application and hand over to hr of the current employer.

A Sample VB Console Application

A Sample VB Console Application
 To create a sample visual basic console application, follow below steps,
Open visual studio

File> New Project> Visual Basic> Console Application

Give a name, say ConsoleApplication1, for your application and click OK.

A project will be created and module.vb file will opened as below.



Module Module1

    Sub Main()
     
    End Sub

End Module

To print hello world on console we will add
        Console.WriteLine("Hello World")
inside Main() subroutine.

On running the application, we will get nothing. Actually the code is executed, hello world is printed but console window is closed after this.

To prevent closing of the console window, we will add
 Console.ReadKey()
which will wait for user input.

Module Module1

    Sub Main()
        Console.WriteLine("Hello World")
        Console.ReadKey()
    End Sub

End Module

Now run the application

Secure message feature in Outlook: Send password securely

Secure message feature in Outlook: Send password securely

Sometimes it is unavoidable to share the confidential information like username and password to people through emails. Sending normal email is not recommended for this.Secure message feature can be used to share confidential information. Advantages of this feature are
1. Restricted access to email. Recipient will be authenticated.
2. The mail can not be forwarded further.
3. Email content can not copied or printed.


To use this feature, select the options, Option>Permission


Adding Index Page/Table of Contents to Word Document

Adding Index Page/ Table of Contents to Word Document

I was preparing a word document which should be shared with client. I have to add an index page to the document. I tried to type headings and add page numbers which was very difficult and not looking good. I googled for better option and found a method to add table of contents which is very easy and beautiful.

https://www.youtube.com/watch?v=qmfGeSFB2P8

Step 1: Select the fields to be added in the index page and apply appropriate styles.
Suppose you are doing a word document like below having a main title and many subtitles. Apply Heading1 style to main title and Heading2 style for subtitles.

After applying styles page will be changed according to the style settings. example below.



Step 2: Find a space (Using Insert>Page Break ) to add table of contents.

Step 3: Add Table of Contents using References>Table of Contents>Select any template.Done.