I'm not sure how to get $x$ but with my way $x = 39$. The solution for $x$ is 29 though. Could anyone possibly help me with the calculating method?
Mine:
$\gcd(346,105) = 1 \Rightarrow x = a^{-1} \cdot b \pmod m \Rightarrow 346^{-1} \pmod{105} = 61 \Rightarrow (61\cdot49)+1250 \pmod{105} = 39$
The problem is with the way you isolate $x$ in the equation, especially the $1250$ term. Starting from $$346x+1250 \equiv 49\pmod{105},$$ you need first to substract $1250$ on both sides, and only then to multiply both sides by $61$ (the inverse of $346$ modulo $105$). This gives you $$x\equiv (49-1250)\cdot 61\equiv 59\cdot 61\equiv 3599\equiv 29 \pmod{105}.$$
As an aside, you would also probably make your life a bit easier by simply reducing the numbers a little bit. $346\equiv 31\pmod{105}$ and $1250\equiv 95\pmod {105}$, so the equation is equivalent to $$31x+95 \equiv 49\pmod{105}.$$