Index: /trunk/BNC/bnctabledlg.cpp
===================================================================
--- /trunk/BNC/bnctabledlg.cpp	(revision 398)
+++ /trunk/BNC/bnctabledlg.cpp	(revision 399)
@@ -90,5 +90,9 @@
   //  connect(_buttonSkl, SIGNAL(clicked()), this, SLOT(slotSkl()));
 
+  _buttonWhatsThis = new QPushButton(tr("What's this?"), this);
+  connect(_buttonWhatsThis, SIGNAL(clicked()), this, SLOT(slotWhatsThis()));
+
   _buttonGet = new QPushButton(tr("Get table"), this);
+  _buttonGet->setDefault(true);
   connect(_buttonGet, SIGNAL(clicked()), this, SLOT(slotGetTable()));
  
@@ -101,4 +105,5 @@
   QHBoxLayout* buttonLayout = new QHBoxLayout;
   //  buttonLayout->addWidget(_buttonSkl);
+  buttonLayout->addWidget(_buttonWhatsThis);
   buttonLayout->addStretch(1);
   buttonLayout->addWidget(_buttonGet);
@@ -345,2 +350,8 @@
 }
 
+// Whats This Help
+void bncTableDlg::slotWhatsThis() {
+QWhatsThis::enterWhatsThisMode();
+}
+
+
Index: /trunk/BNC/bnctabledlg.h
===================================================================
--- /trunk/BNC/bnctabledlg.h	(revision 398)
+++ /trunk/BNC/bnctabledlg.h	(revision 399)
@@ -29,4 +29,5 @@
 #include <QtCore>
 #include <QtGui>
+#include <QWhatsThis>
 
 #include "bncconst.h"
@@ -49,4 +50,5 @@
     void slotSkl();
     void slotSelectionChanged();
+    void slotWhatsThis();
 
   private:
@@ -60,4 +62,5 @@
     QPushButton* _buttonCancel;
     QPushButton* _buttonOK;
+    QPushButton* _buttonWhatsThis;
 
     QTableWidget* _table;
Index: /trunk/BNC/bncwindow.cpp
===================================================================
--- /trunk/BNC/bncwindow.cpp	(revision 398)
+++ /trunk/BNC/bncwindow.cpp	(revision 399)
@@ -94,4 +94,10 @@
   _actStop->setEnabled(false);
 
+  _actwhatsthis= new QAction(tr("What's this?"),this);
+  connect(_actwhatsthis, SIGNAL(triggered()), SLOT(slotWhatsThis()));
+
+  _actwhatsthismenu= new QAction(tr("What's this?\tShift+F1"),this);
+  connect(_actwhatsthismenu, SIGNAL(triggered()), SLOT(slotWhatsThis()));
+
   // Create Menus
   // ------------
@@ -105,4 +111,5 @@
   _menuHlp = menuBar()->addMenu(tr("&Help"));
   _menuHlp->addAction(_actHelp);
+  _menuHlp->addAction(_actwhatsthismenu);
   _menuHlp->addAction(_actAbout);
 
@@ -116,4 +123,6 @@
   toolBar->addAction(_actGetData);
   toolBar->addAction(_actStop);
+  toolBar->addWidget(new QLabel("                                   "));
+  toolBar->addAction(_actwhatsthis);
 
   // Canvas with Editable Fields
@@ -249,5 +258,8 @@
           SLOT(slotSelectionChanged()));
 
-  _log = new QTextEdit();
+// Tab changes Focus on Log window Start Perlt
+//  _log = new QTextEdit();
+  _log = new QTextBrowser();
+// Tab changes Focus on Log window Ende Perlt
   _log->setReadOnly(true);
 
@@ -605,2 +617,9 @@
   }
 }
+
+// Whats This Help
+void bncWindow::slotWhatsThis() {
+QWhatsThis::enterWhatsThisMode();
+}
+
+
Index: /trunk/BNC/bncwindow.h
===================================================================
--- /trunk/BNC/bncwindow.h	(revision 398)
+++ /trunk/BNC/bncwindow.h	(revision 399)
@@ -28,4 +28,5 @@
 
 #include <QtGui>
+#include <QWhatsThis>
 
 #include "bncgetthread.h"
@@ -53,4 +54,5 @@
     void slotGetThreadErrors();
     void slotSelectionChanged();
+    void slotWhatsThis();
 
   protected:
@@ -70,4 +72,6 @@
     QAction*   _actAddMountPoints;
     QAction*   _actDeleteMountPoints;
+    QAction*   _actwhatsthis;
+    QAction*   _actwhatsthismenu;
 
     QLineEdit* _proxyHostLineEdit;
