Ok, so the combination consists of four digits $(a,b,c,d)$ where each of them is greater than $0$ and $a+b+c+d=10$. Let's assume you are allowed to repeat digits (though you do not say this) and count by brute force.
First note that none of the digits can exceed $7$ (as $8+1+1+1>10$). We'll work from the maximum of the digits.
Case I: Max is $7$. Then the password is $\{7,1,1,1\}$ in some order. There are $4$ places to put the $7$ so we get $\boxed {4}$ cases.
Case II: Max is $6$. Then the password is $\{6,2,1,1\}$ in some order. Now there are $4$ places to put the $6$ and then $3$ places to put the $2$, so $\boxed {12}$ cases.
Case III: Max is $5$. Then we can have $\{5,3,1,1\}$ or $\{5,2,2,1\}$ Each of these gives us $12$ cases so $\boxed {24}$.
Case IV: Max is $4$ We can have $\{4,4,1,1\}$ ($\binom 42=6$ cases) or $\{4,3,2,1\}$ ($4!=24$ cases) or $\{4,2,2,2\}$ ($4$ cases) so $\boxed {34}$.
Case V: Max is $3$. We can have $\{3,3,3,1\}$ ($4$ cases) or $\{3,3,2,2\}$10 ($6$ cases) so $\boxed {10}$
Of course the maximum has to be at least $3$ (as $2+2+2+2<10$) so (barring error) these are all the cases.
Thus the total is $$4+12+24+34+10=\boxed {84}$$
Note: The brute force method is easy to understand but it is error prone. To approach the problem more systematically, you can read about Stars and Bars. From that method we see that the answer is $$\binom {9}3=\boxed {84}$$