My WinEdt version had to be reinstalled and now I can't use PDFTexify or Texify. That wouldn't be a problem since I still can use PDFLaTeX. So I try that, what happens? Now, all \cite{} show [?] and \ref{fig:} and \ref{tab:} show ?. And I dont even get a TOC!
Some example from thesis.tex:
\include{./preamble}
\begin{document}
\tableofcontents
\include{./chapter1}
\include{./bibliography}
\end{document}
The preamble:
\documentclass[12pt,a4paper]{report}
\usepackage[swedish,english]{babel}
\usepackage[T1]{fontenc}
\usepackage[ansinew]{inputenc}
\usepackage[a4paper,
top = 2.5cm,
bottom = 2.5cm,
left = 2.5cm,
right =2.5cm]{geometry}
\usepackage{float, wrapfig, times, graphicx, amsmath, multirow, sidecap,longtable,color, soul, threeparttable, mathtools, amssymb}
\usepackage[toc,page]{appendix}
\setlength{\textfloatsep}{0cm} \setlength{\floatsep}{0cm}
\setlength{\intextsep}{0.4cm}
\AtBeginDocument{%
\captionsenglish % Captions in english
\dateenglish % Date format in english
}
\widowpenalty=10000
\clubpenalty=10000
\newcommand{\HRule}{\rule{\linewidth}{0.3mm}}
The .bib file:
\begin{thebibliography}{99}
\bibitem{}
\end{thebibliography}
chapter 1
just text
The funny thing is, if I put the whole bibliography in the bottom of thesis.tex, the \cite{} works fine.
Btw. First of all, I would love to have texify work without any problems but if you don't know how to fix that, I'd still love it if you could help me with the referencing. Oh, and the TOC, too.

pdflatexneeds at least two runs to get cross-references right. You probably need to set up the quick compilation configs to get the right number of runs (sorry, I'm not a windows user) – henrique Oct 6 '12 at 14:08