From the dropdown boxes, choose (Overrides) in the left one, then the sub you want to override in the right. Make sure the base sub is marked overridable.
Then, in your new sub, you call MyBase.SubName to run that one, then put your new behaviour afterwards. This is how you extend it.