2000-10-26 17:08:45 +00:00
|
|
|
|
/*************************************************************************
|
|
|
|
|
*
|
|
|
|
|
* $RCSfile: paramdialog.src,v $
|
|
|
|
|
*
|
2001-08-07 14:15:34 +00:00
|
|
|
|
* $Revision: 1.17 $
|
2000-10-26 17:08:45 +00:00
|
|
|
|
*
|
2001-08-07 14:15:34 +00:00
|
|
|
|
* last change: $Author: kz $ $Date: 2001-08-07 15:15:34 $
|
2000-10-26 17:08:45 +00:00
|
|
|
|
*
|
|
|
|
|
* The Contents of this file are made available subject to the terms of
|
|
|
|
|
* either of the following licenses
|
|
|
|
|
*
|
|
|
|
|
* - GNU Lesser General Public License Version 2.1
|
|
|
|
|
* - Sun Industry Standards Source License Version 1.1
|
|
|
|
|
*
|
|
|
|
|
* Sun Microsystems Inc., October, 2000
|
|
|
|
|
*
|
|
|
|
|
* GNU Lesser General Public License Version 2.1
|
|
|
|
|
* =============================================
|
|
|
|
|
* Copyright 2000 by Sun Microsystems, Inc.
|
|
|
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
|
|
|
|
*
|
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
|
* License version 2.1, as published by the Free Software Foundation.
|
|
|
|
|
*
|
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
|
* MA 02111-1307 USA
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* Sun Industry Standards Source License Version 1.1
|
|
|
|
|
* =================================================
|
|
|
|
|
* The contents of this file are subject to the Sun Industry Standards
|
|
|
|
|
* Source License Version 1.1 (the "License"); You may not use this file
|
|
|
|
|
* except in compliance with the License. You may obtain a copy of the
|
|
|
|
|
* License at http://www.openoffice.org/license.html.
|
|
|
|
|
*
|
|
|
|
|
* Software provided under this License is provided on an "AS IS" basis,
|
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING,
|
|
|
|
|
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
|
|
|
|
|
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
|
|
|
|
|
* See the License for the specific provisions governing your rights and
|
|
|
|
|
* obligations concerning the Software.
|
|
|
|
|
*
|
|
|
|
|
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
|
|
|
|
|
*
|
|
|
|
|
* Copyright: 2000 by Sun Microsystems, Inc.
|
|
|
|
|
*
|
|
|
|
|
* All Rights Reserved.
|
|
|
|
|
*
|
|
|
|
|
* Contributor(s): _______________________________________
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
|
|
#ifndef _DBAUI_PARAMDIALOG_HRC_
|
|
|
|
|
#include "paramdialog.hrc"
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef _DBU_RESOURCE_HRC_
|
|
|
|
|
#include "dbu_resource.hrc"
|
|
|
|
|
#endif
|
|
|
|
|
|
2001-06-07 14:09:39 +00:00
|
|
|
|
#define LIST_WIDTH 100
|
|
|
|
|
#define LIST_HEIGHT 50
|
|
|
|
|
#define BUTTON_WIDTH 50
|
|
|
|
|
#define BUTTON_HEIGHT 14
|
|
|
|
|
|
2000-10-26 17:08:45 +00:00
|
|
|
|
ModalDialog DLG_PARAMETERS
|
|
|
|
|
{
|
|
|
|
|
OutputSize = TRUE ;
|
|
|
|
|
SVLook = TRUE ;
|
2001-06-07 14:09:39 +00:00
|
|
|
|
Size = MAP_APPFONT ( 6 + LIST_WIDTH + 3 + 6 + BUTTON_WIDTH + 6, 98 ) ;
|
2000-10-26 17:08:45 +00:00
|
|
|
|
Moveable = TRUE ;
|
|
|
|
|
Closeable = TRUE ;
|
|
|
|
|
Text = "Parameter-Eingabe" ;
|
|
|
|
|
|
2001-06-07 14:09:39 +00:00
|
|
|
|
FixedLine FL_PARAMS
|
2000-10-26 17:08:45 +00:00
|
|
|
|
{
|
2001-06-07 14:09:39 +00:00
|
|
|
|
Pos = MAP_APPFONT ( 4 , 3 ) ;
|
|
|
|
|
Size = MAP_APPFONT ( 3 + LIST_WIDTH + 3 , 8 ) ;
|
2000-10-26 17:08:45 +00:00
|
|
|
|
Text = "~Parameter";
|
|
|
|
|
Text [ ENGLISH ] = "~Parameters";
|
|
|
|
|
Text[ english_us ] = "~Parameters";
|
|
|
|
|
Text[ portuguese ] = "~Par<61>metros";
|
2000-11-15 20:12:21 +00:00
|
|
|
|
Text[ russian ] = "~<7E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
|
|
|
|
|
Text[ greek ] = "~<7E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
|
2001-06-15 20:58:07 +00:00
|
|
|
|
Text[ dutch ] = "~Parameter";
|
2001-06-21 20:47:52 +00:00
|
|
|
|
Text[ french ] = "Param<61>tres";
|
2000-10-26 17:08:45 +00:00
|
|
|
|
Text[ spanish ] = "~Par<61>metros";
|
|
|
|
|
Text[ italian ] = "~Parametri";
|
|
|
|
|
Text[ danish ] = "Parametre";
|
2000-11-15 20:12:21 +00:00
|
|
|
|
Text[ swedish ] = "~Parametrar";
|
2000-10-26 17:08:45 +00:00
|
|
|
|
Text[ polish ] = "Parametr";
|
|
|
|
|
Text[ portuguese_brazilian ] = "~Parameters";
|
2001-08-07 14:15:34 +00:00
|
|
|
|
Text[ japanese ] = "パラメータ(~P)";
|
|
|
|
|
Text[ korean ] = "파라미터(~P)";
|
|
|
|
|
Text[ chinese_simplified ] = "参数(~P)";
|
|
|
|
|
Text[ chinese_traditional ] = "參數(~P)";
|
2000-10-26 17:08:45 +00:00
|
|
|
|
Text[ arabic ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
|
|
|
|
|
Text[ turkish ] = "Parametre";
|
|
|
|
|
Text[ language_user1 ] = " ";
|
2001-05-04 19:09:43 +00:00
|
|
|
|
Text[ catalan ] = "~Par<61>metros";
|
2001-05-10 05:04:32 +00:00
|
|
|
|
Text[ finnish ] = "~Parametrit";
|
2000-10-26 17:08:45 +00:00
|
|
|
|
};
|
|
|
|
|
ListBox LB_ALLPARAMS
|
|
|
|
|
{
|
2001-06-07 14:09:39 +00:00
|
|
|
|
Pos = MAP_APPFONT ( 7 , 12 ) ;
|
|
|
|
|
Size = MAP_APPFONT ( LIST_WIDTH , LIST_HEIGHT ) ;
|
2000-10-26 17:08:45 +00:00
|
|
|
|
Border = TRUE;
|
|
|
|
|
SVLook = TRUE;
|
|
|
|
|
};
|
2001-06-07 14:09:39 +00:00
|
|
|
|
FixedText FT_VALUE
|
2000-10-26 17:08:45 +00:00
|
|
|
|
{
|
2001-06-07 14:09:39 +00:00
|
|
|
|
Pos = MAP_APPFONT ( 7 , 12 + LIST_HEIGHT + 4 ) ;
|
|
|
|
|
Size = MAP_APPFONT ( LIST_WIDTH , 8 ) ;
|
2000-10-26 17:08:45 +00:00
|
|
|
|
Text = "~Wert";
|
|
|
|
|
Text [ ENGLISH ] = "~Value";
|
|
|
|
|
Text[ english_us ] = "~Value";
|
|
|
|
|
Text[ portuguese ] = "~Valor";
|
|
|
|
|
Text[ russian ] = "~<7E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
|
|
|
|
|
Text[ greek ] = "<22><><EFBFBD><EFBFBD>";
|
|
|
|
|
Text[ dutch ] = "~Waarde";
|
2001-06-21 20:47:52 +00:00
|
|
|
|
Text[ french ] = "Valeur";
|
2000-10-26 17:08:45 +00:00
|
|
|
|
Text[ spanish ] = "~Valor";
|
|
|
|
|
Text[ italian ] = "~Valore";
|
|
|
|
|
Text[ danish ] = "V<>rdi";
|
2000-11-09 11:32:27 +00:00
|
|
|
|
Text[ swedish ] = "~V<>rde";
|
2001-05-30 18:57:50 +00:00
|
|
|
|
Text[ polish ] = "Warto<74><6F>";
|
2000-10-26 17:08:45 +00:00
|
|
|
|
Text[ portuguese_brazilian ] = "~Value";
|
2001-08-07 14:15:34 +00:00
|
|
|
|
Text[ japanese ] = "値(~V)";
|
|
|
|
|
Text[ korean ] = "값(~V)";
|
|
|
|
|
Text[ chinese_simplified ] = "数值(~V)";
|
|
|
|
|
Text[ chinese_traditional ] = "數值(~V)";
|
2000-10-26 17:08:45 +00:00
|
|
|
|
Text[ arabic ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
|
|
|
|
|
Text[ turkish ] = "De<44>er";
|
|
|
|
|
Text[ language_user1 ] = " ";
|
2001-05-04 19:09:43 +00:00
|
|
|
|
Text[ catalan ] = "~Valor";
|
2001-05-10 05:04:32 +00:00
|
|
|
|
Text[ finnish ] = "~Arvo";
|
2000-10-26 17:08:45 +00:00
|
|
|
|
};
|
|
|
|
|
Edit ET_PARAM
|
|
|
|
|
{
|
|
|
|
|
Border = TRUE ;
|
2001-06-07 14:09:39 +00:00
|
|
|
|
Pos = MAP_APPFONT ( 7 , 12 + LIST_HEIGHT + 4 + 8 + 3 ) ;
|
|
|
|
|
Size = MAP_APPFONT ( LIST_WIDTH , 12 ) ;
|
2000-10-26 17:08:45 +00:00
|
|
|
|
TabStop = TRUE ;
|
|
|
|
|
};
|
|
|
|
|
PushButton BT_TRAVELNEXT
|
|
|
|
|
{
|
2001-06-07 14:09:39 +00:00
|
|
|
|
Pos = MAP_APPFONT ( 4 + 3 + LIST_WIDTH + 3 + 6 , 12 + LIST_HEIGHT + 4 + 8 + 3 + ( 12 - BUTTON_HEIGHT ) / 2) ;
|
|
|
|
|
Size = MAP_APPFONT ( BUTTON_WIDTH , BUTTON_HEIGHT ) ;
|
2000-10-26 17:08:45 +00:00
|
|
|
|
Text = "~n<>chster";
|
|
|
|
|
Text [english] = "~next";
|
|
|
|
|
TabStop = TRUE ;
|
2001-03-09 19:46:24 +00:00
|
|
|
|
Text[ english_us ] = "~Next";
|
2000-10-26 17:08:45 +00:00
|
|
|
|
Text[ portuguese ] = "~seguinte";
|
|
|
|
|
Text[ russian ] = "~<7E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
|
|
|
|
|
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD>~<7E><>";
|
|
|
|
|
Text[ dutch ] = "~volgende";
|
|
|
|
|
Text[ french ] = "~suivant";
|
|
|
|
|
Text[ spanish ] = "~siguiente";
|
2000-11-15 20:12:21 +00:00
|
|
|
|
Text[ italian ] = "Successi~vo";
|
2000-10-26 17:08:45 +00:00
|
|
|
|
Text[ danish ] = "n<>ste";
|
|
|
|
|
Text[ swedish ] = "~n<>sta";
|
|
|
|
|
Text[ polish ] = "~nast<73>pny";
|
|
|
|
|
Text[ portuguese_brazilian ] = "~next";
|
2001-08-07 14:15:34 +00:00
|
|
|
|
Text[ japanese ] = "次へ(~N)";
|
|
|
|
|
Text[ korean ] = "다음(~N)";
|
|
|
|
|
Text[ chinese_simplified ] = "下一个(~N)";
|
|
|
|
|
Text[ chinese_traditional ] = "下一個(~N)";
|
2000-10-26 17:08:45 +00:00
|
|
|
|
Text[ arabic ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
|
|
|
|
|
Text[ turkish ] = "Sonraki";
|
2001-05-04 19:09:43 +00:00
|
|
|
|
Text[ catalan ] = "~siguiente";
|
2001-05-10 05:04:32 +00:00
|
|
|
|
Text[ finnish ] = "~seuraava";
|
2000-10-26 17:08:45 +00:00
|
|
|
|
};
|
|
|
|
|
OKButton BT_OK
|
|
|
|
|
{
|
2001-06-07 14:09:39 +00:00
|
|
|
|
Pos = MAP_APPFONT ( 4 + 3 + LIST_WIDTH + 3 + 6 , 3 ) ;
|
|
|
|
|
Size = MAP_APPFONT ( BUTTON_WIDTH , BUTTON_HEIGHT ) ;
|
2000-10-26 17:08:45 +00:00
|
|
|
|
TabStop = TRUE ;
|
|
|
|
|
DefButton = TRUE ;
|
|
|
|
|
};
|
|
|
|
|
CancelButton BT_CANCEL
|
|
|
|
|
{
|
2001-06-07 14:09:39 +00:00
|
|
|
|
Pos = MAP_APPFONT ( 4 + 3 + LIST_WIDTH + 3 + 6 , 3 + BUTTON_HEIGHT + 3 ) ;
|
|
|
|
|
Size = MAP_APPFONT ( BUTTON_WIDTH , BUTTON_HEIGHT ) ;
|
2000-10-26 17:08:45 +00:00
|
|
|
|
TabStop = TRUE ;
|
|
|
|
|
};
|
|
|
|
|
Text [ ENGLISH ] = "Parameter input" ;
|
2000-11-15 20:12:21 +00:00
|
|
|
|
Text [ english_us ] = "Parameter Input" ;
|
2000-10-26 17:08:45 +00:00
|
|
|
|
Text [ portuguese_brazilian ] = "Eingabe des Parameterwertes" ;
|
2000-11-15 20:12:21 +00:00
|
|
|
|
Text [ swedish ] = "Parameterinmatning" ;
|
2000-10-26 17:08:45 +00:00
|
|
|
|
Text [ danish ] = "Parameter-input" ;
|
|
|
|
|
Text [ italian ] = "Specifica parametro" ;
|
|
|
|
|
Text [ spanish ] = "Entrada de par<61>metro" ;
|
|
|
|
|
Text [ french ] = "Saisie de param<61>tre" ;
|
|
|
|
|
Text [ dutch ] = "Parameter aangeven" ;
|
2000-11-15 20:12:21 +00:00
|
|
|
|
Text [ portuguese ] = "Entrada de par<61>metros" ;
|
2001-08-07 14:15:34 +00:00
|
|
|
|
Text[ chinese_simplified ] = "输入参数值";
|
2000-10-26 17:08:45 +00:00
|
|
|
|
Text[ russian ] = "<22><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
|
2000-11-09 11:32:27 +00:00
|
|
|
|
Text[ polish ] = "Wpisanie parametru";
|
2001-08-07 14:15:34 +00:00
|
|
|
|
Text[ japanese ] = "パラメータの入力";
|
|
|
|
|
Text[ chinese_traditional ] = "輸入參數值";
|
2000-10-26 17:08:45 +00:00
|
|
|
|
Text[ arabic ] = "<22><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
|
|
|
|
|
Text[ greek ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
|
2001-08-07 14:15:34 +00:00
|
|
|
|
Text[ korean ] = "파라미터 입력";
|
2000-10-26 17:08:45 +00:00
|
|
|
|
Text[ turkish ] = "Parametre giri<72>i";
|
|
|
|
|
|
|
|
|
|
String STR_COULD_NOT_CONVERT_PARAM
|
|
|
|
|
{
|
|
|
|
|
Text = "Die Eingabe konnte nicht in einen g<>ltigen Wert f<>r die Spalte \"$name$\" umgewandelt werden";
|
|
|
|
|
Text [ english ] = "The given input could no be converted into a valid value for column \"$value$\".";
|
|
|
|
|
Text [ english_us ] = "The entry could not be converted to a valid value for the \"$name$\"column";
|
|
|
|
|
Text[ portuguese ] = "Foi imposs<73>vel converter a entrada indicada num valor v<>lido para a coluna \"$name$\".";
|
|
|
|
|
Text[ russian ] = "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> \"$name$\" <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.";
|
2000-11-15 20:12:21 +00:00
|
|
|
|
Text[ greek ] = "<22><><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> \"$name$\".";
|
2000-10-26 17:08:45 +00:00
|
|
|
|
Text[ dutch ] = "De ingevoerde gegevens konden niet worden geconverteerd in een geldige waarde voor de kolom \"$name$\".";
|
|
|
|
|
Text[ french ] = "Impossible de convertir la saisie en une valeur correcte pour la colonne \"$name$\".";
|
|
|
|
|
Text[ spanish ] = "La entrada no se pudo convertir en un valor v<>lido para la columna \"$name$\".";
|
2000-11-15 20:12:21 +00:00
|
|
|
|
Text[ italian ] = "Impossibile convertire la voce in un valore valido per la colonna \"$name$\".";
|
2000-10-26 17:08:45 +00:00
|
|
|
|
Text[ danish ] = "Det var ikke muligt at konvertere inputtet til en gyldig v<>rdi for kolonne \"$name$\".";
|
|
|
|
|
Text[ swedish ] = "Inmatningen kunde inte omvandlas till ett giltigt v<>rde f<>r kolumnen \"$name$\".";
|
2001-05-30 18:57:50 +00:00
|
|
|
|
Text[ polish ] = "Nie mo<6D>na by<62>o zamieni<6E> wpisu na wa<77>n<EFBFBD> warto<74><6F> kolumny \"$name$\".";
|
2000-10-26 17:08:45 +00:00
|
|
|
|
Text[ portuguese_brazilian ] = "The given input could no be converted into a valid value for column \"$value$\".";
|
2001-08-07 14:15:34 +00:00
|
|
|
|
Text[ japanese ] = "入力値は <$name$> 列で有効な値に変換できませんでした。";
|
|
|
|
|
Text[ korean ] = "입력은 열\"$name$\"의 유효한 값으로 변환될 수 없었습니다.";
|
|
|
|
|
Text[ chinese_simplified ] = "输入的内容无法转换成一个用于列\"$name$\"的有效数值。";
|
|
|
|
|
Text[ chinese_traditional ] = "這個輸入值無法轉換成欄\"$name$\"的有效值。";
|
2000-10-26 17:08:45 +00:00
|
|
|
|
Text[ arabic ] = "<22><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> \"$name$\".";
|
|
|
|
|
Text[ turkish ] = "Giri<72>, \"$name$\" s<>tunu i<>in ge<67>erli bir de<64>ere d<>n<EFBFBD><6E>t<EFBFBD>r<EFBFBD>lemedi.";
|
2001-05-04 19:09:43 +00:00
|
|
|
|
Text[ catalan ] = "La entrada no se pudo convertir en un valor v<>lido para la columna \"$name$\".";
|
2001-05-10 05:04:32 +00:00
|
|
|
|
Text[ finnish ] = "Merkint<6E><74> ei voitu muuttaa sarakkeen $name$ kelvolliseksi arvoksi";
|
2000-10-26 17:08:45 +00:00
|
|
|
|
};
|
2001-05-04 19:09:43 +00:00
|
|
|
|
Text[ catalan ] = "Entrada de par<61>metro";
|
2001-05-10 05:04:32 +00:00
|
|
|
|
Text[ finnish ] = "Parametrin sy<73>tt<74>";
|
2000-10-26 17:08:45 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|
* history:
|
|
|
|
|
* $Log: not supported by cvs2svn $
|
2001-08-07 14:15:34 +00:00
|
|
|
|
* Revision 1.16 2001/07/13 21:36:17 kz
|
|
|
|
|
* Merge SRC638: 13.07.01 - 23:36:00
|
|
|
|
|
*
|
2001-07-13 20:36:17 +00:00
|
|
|
|
* Revision 1.15 2001/06/29 02:15:11 kz
|
|
|
|
|
* Merge SRC633: 29.06.01 - 04:14:48
|
|
|
|
|
*
|
2001-06-29 01:15:11 +00:00
|
|
|
|
* Revision 1.14 2001/06/21 21:47:52 kz
|
|
|
|
|
* Merge SRC633: 21.06.01 - 23:47:15
|
|
|
|
|
*
|
2001-06-21 20:47:52 +00:00
|
|
|
|
* Revision 1.13 2001/06/15 21:58:06 kz
|
|
|
|
|
* Merge SRC633: 15.06.01 - 23:58:26
|
|
|
|
|
*
|
2001-06-15 20:58:07 +00:00
|
|
|
|
* Revision 1.12 2001/06/13 22:38:22 kz
|
|
|
|
|
* Merge SRC633: 14.06.01 - 00:38:33
|
|
|
|
|
*
|
2001-06-13 21:38:22 +00:00
|
|
|
|
* Revision 1.11 2001/06/07 15:09:39 fs
|
|
|
|
|
* #87912# redesigned the dialog
|
|
|
|
|
*
|
2001-06-07 14:09:39 +00:00
|
|
|
|
* Revision 1.10 2001/05/30 19:57:50 kz
|
|
|
|
|
* Merge SRC633: 30.05.01 - 21:56:52
|
|
|
|
|
*
|
2001-05-30 18:57:50 +00:00
|
|
|
|
* Revision 1.9 2001/05/16 15:48:13 kz
|
|
|
|
|
* Merge SRC632: 16.05.01 - 17:48:17 (NoBranch)
|
|
|
|
|
*
|
2001-05-16 14:48:13 +00:00
|
|
|
|
* Revision 1.8 2001/05/10 06:04:32 kz
|
|
|
|
|
* Merge SRC631: 10.05.01 - 08:04:54 (NoBranch)
|
|
|
|
|
*
|
2001-05-10 05:04:32 +00:00
|
|
|
|
* Revision 1.7 2001/05/04 20:09:43 rt
|
|
|
|
|
* Merge SRC630: 04.05.01 - 22:09:57 (NoBranch)
|
|
|
|
|
*
|
2001-05-04 19:09:43 +00:00
|
|
|
|
* Revision 1.6 2001/03/09 20:46:24 avy
|
|
|
|
|
* Merge SRC624: 03/09/01 - 21:46:05 (NoBranch)
|
|
|
|
|
*
|
2001-03-09 19:46:24 +00:00
|
|
|
|
* Revision 1.5 2001/02/09 20:22:33 kz
|
|
|
|
|
* Merge SWT614: 02/09/01 - 21:22:03
|
|
|
|
|
*
|
2001-02-09 19:22:33 +00:00
|
|
|
|
* Revision 1.4 2000/11/27 07:48:12 kz
|
|
|
|
|
* Merge SRC614: 27.11.00 - 08:47:45 (NoBranch)
|
|
|
|
|
*
|
2000-11-27 06:48:12 +00:00
|
|
|
|
* Revision 1.3 2000/11/15 21:12:21 kz
|
|
|
|
|
* Merge SRC613: 11/15/00 - 22:12:01 (NoBranch)
|
|
|
|
|
*
|
2000-11-15 20:12:21 +00:00
|
|
|
|
* Revision 1.2 2000/11/09 12:32:27 kz
|
|
|
|
|
* Merge SRC612: 09.11.00 - 13:32:04 (NoBranch)
|
|
|
|
|
*
|
2000-11-09 11:32:27 +00:00
|
|
|
|
* Revision 1.1 2000/10/26 18:07:04 fs
|
|
|
|
|
* initial checkin - parameter dialog
|
|
|
|
|
*
|
2000-10-26 17:08:45 +00:00
|
|
|
|
*
|
|
|
|
|
* Revision 1.0 26.10.00 15:14:44 fs
|
|
|
|
|
************************************************************************/
|
|
|
|
|
|
2001-06-13 21:38:22 +00:00
|
|
|
|
|
2001-06-15 20:58:07 +00:00
|
|
|
|
|
2001-06-21 20:47:52 +00:00
|
|
|
|
|
2001-06-29 01:15:11 +00:00
|
|
|
|
|
2001-07-13 20:36:17 +00:00
|
|
|
|
|
2001-08-07 14:15:34 +00:00
|
|
|
|
|