Index: /trunk/BNC/bncwindow.cpp
===================================================================
--- /trunk/BNC/bncwindow.cpp	(revision 3468)
+++ /trunk/BNC/bncwindow.cpp	(revision 3469)
@@ -483,4 +483,12 @@
   connect(_cmbTable, SIGNAL(itemSelectionChanged()), 
           SLOT(slotBncTextChanged()));
+
+  _cmbMethodComboBox = new QComboBox();
+  _cmbMethodComboBox->setEditable(false);
+  _cmbMethodComboBox->addItems(QString("Single-Epoch,Filter").split(","));
+  int im = _cmbMethodComboBox->findText(settings.value("cmbMethod").toString());
+  if (im != -1) {
+    _cmbMethodComboBox->setCurrentIndex(im);
+  }
 
   // Upload Results
@@ -984,4 +992,6 @@
   connect(addCmbRowButton, SIGNAL(clicked()), this, SLOT(slotAddCmbRow()));
   cmbLayout->addWidget(delCmbRowButton,2,3);
+  cmbLayout->addWidget(new QLabel("Method"), 3, 3);
+  cmbLayout->addWidget(_cmbMethodComboBox,             3, 4, Qt::AlignRight);
   cmbLayout->addWidget(new QLabel("Maximal Residuum"), 4, 3);
   cmbLayout->addWidget(_cmbMaxresLineEdit,             4, 4, Qt::AlignRight);
@@ -1471,4 +1481,5 @@
   }
   settings.setValue("cmbMaxres", _cmbMaxresLineEdit->text());
+  settings.setValue("cmbMethod", _cmbMethodComboBox->currentText());
 
   if (!uploadMountpointsOut.isEmpty()) {
Index: /trunk/BNC/bncwindow.h
===================================================================
--- /trunk/BNC/bncwindow.h	(revision 3468)
+++ /trunk/BNC/bncwindow.h	(revision 3469)
@@ -204,4 +204,5 @@
     QTableWidget* _cmbTable;
     QLineEdit*    _cmbMaxresLineEdit;
+    QComboBox*    _cmbMethodComboBox;
 
     QTableWidget* _uploadTable;
