Index: trunk/BNC/bncwindow.cpp
===================================================================
--- trunk/BNC/bncwindow.cpp	(revision 3782)
+++ trunk/BNC/bncwindow.cpp	(revision 3783)
@@ -386,5 +386,5 @@
   _pppSPPComboBox = new QComboBox();
   _pppSPPComboBox->setEditable(false);
-  _pppSPPComboBox->addItems(QString("Realtime-PPP,Realtime-SPP,Post-Processing").split(","));
+  _pppSPPComboBox->addItems(QString(",Realtime-PPP,Realtime-SPP,Post-Processing").split(","));
   int ik = _pppSPPComboBox->findText(settings.value("pppSPP").toString());
   if (ik != -1) {
@@ -961,5 +961,5 @@
   _teqcActionComboBox = new QComboBox();
   _teqcActionComboBox->setEditable(false);
-  _teqcActionComboBox->addItems(QString("Edit, Analyze").split(","));
+  _teqcActionComboBox->addItems(QString(",Edit,Analyze").split(","));
   ik = _teqcActionComboBox->findText(settings.value("teqcAction").toString());
   if (ik != -1) {
@@ -1656,8 +1656,22 @@
 }
 
-// Retrieve Data
+// Start It!
 ////////////////////////////////////////////////////////////////////////////
 void bncWindow::slotStart() {
   slotSaveOptions();
+  if      ( _pppSPPComboBox->currentText() == "Post-Processing" ) {
+    startPostProcessingPPP();
+  }
+  else if ( !_teqcActionComboBox->currentText().isEmpty() ) {
+    startPostProcessingTeqc();
+  }
+  else {
+    startRealTime();
+  }
+}
+
+// Start Real-Time (Retrieve Data etc.)
+////////////////////////////////////////////////////////////////////////////
+void bncWindow::startRealTime() {
 
   _bncFigurePPP->reset();
