Okay, so I've been thinking about this question for a long time, and I'm starting to think that there isn't an answer. So please read the question, and if there is an answer, tell how you came to it, and if there isn't, tell me why.
There are a certain number of hands that can be dealt from a deck of 52 cards. Playing five card hands of poker, there are 52*51*50*49*48 possible hands, if I'm not mistaken. The question is, how many hands would you have to deal in order to have dealt every hand at least once? Assume that five cards are dealt, then those cards are shuffled into the deck and another five random cards are dealt. How many times would you have to deal, on average, before having dealt every hamd?
First you need to calculate the correct number of distinct hands. Let's say that suits are always relevant. In that case the number of distinct five-card poker hands is the number of ways of choosing 5 cards from 52, which is
$$\binom{52}{5} = \frac{52!}{5!47!} = \frac{52\cdot 51\cdot 50\cdot 49\cdot 48}{5\cdot4\cdot3\cdot2\cdot1} = 2598960$$
(see here for an explanation)
Now we can ask how long it takes, on average, before you have seen every hand. Let $T_{k,n}$ be the expected number of hands until you have seen all $n$ possible hands, when you have already seen $k$ of the hands. Then we know that $T_{n,n}=0$ (you have already seen all the hands) and we want to find $T_{0,n}$, the expected number of hands to be dealt when we haven't yet seen any hands dealt. The updating rule follows from considering the probabilities of being dealt a new hand, or a hand that we've already seen:
$$T_{k,n} = \frac{n-k}{n} (1 + T_{k+1,n}) + \frac{k}{n} (1 + T_{k,n})$$
which simplifies to
$$T_{k,n} = \frac{n}{n-k} + T_{k+1,n}$$
which we can solve, giving the solution
$$T_{0,n} = n\sum_{i=1}^n \frac{1}{i} = n H_n$$
where $H_n$ is the $n$th Harmonic number.
For the problem you want to consider you have $n=2598960$. The $2598960$th Harmonic number is approximately $15.34784$, which means that you expect to wait for
$$15.34784 \times 2598960 = 39888416$$
or approximately 40 million deals before you have seen every possible five-card poker hand. To put this in perspective, a dealer working at the phenomenal speed of one full hand per second, and never stopping to eat or sleep, would take approximately 1 year and 3 months to deal out every possible poker hand.