1/************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance 9 * with the License. You may obtain a copy of the License at 10 * 11 * http://www.apache.org/licenses/LICENSE-2.0 12 * 13 * Unless required by applicable law or agreed to in writing, 14 * software distributed under the License is distributed on an 15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 * KIND, either express or implied. See the License for the 17 * specific language governing permissions and limitations 18 * under the License. 19 * 20 *************************************************************/ 21 22 23 24#include <selectdbtabledialog.hrc> 25#include <dbui.hrc> 26#include <helpid.h> 27 28ModalDialog DLG_MM_SELECTDBTABLEDDIALOG 29{ 30 OutputSize = TRUE ; 31 SVLook = TRUE ; 32 HelpID = HID_MM_SELECTDBTABLEDDIALOG; 33 Size = MAP_APPFONT ( 250 , 135 ) ; 34 Moveable = TRUE ; 35 36 Text [ en-US ] = "Select Table"; 37 38 FixedText FI_SELECT 39 { 40 Pos = MAP_APPFONT ( 6 , 3 ) ; 41 Size = MAP_APPFONT ( 238 , 24 ) ; 42 WordBreak = TRUE; 43 Text [ en-US ] = "The file you have selected contains more than one table. Please select the table containing the address list you want to use."; 44 }; 45 Control LB_TABLE 46 { 47 Pos = MAP_APPFONT ( 6 , 30 ) ; 48 Size = MAP_APPFONT ( 238 , 50 ) ; 49 Border = TRUE; 50 }; 51 PushButton PB_PREVIEW 52 { 53 HelpID = "sw:PushButton:DLG_MM_SELECTDBTABLEDDIALOG:PB_PREVIEW"; 54 Pos = MAP_APPFONT ( 6 , 84 ) ; 55 Size = MAP_APPFONT ( 50 , 14 ) ; 56 Text [ en-US ] = "~Preview"; 57 }; 58 FixedLine FL_SEPARATOR 59 { 60 Pos = MAP_APPFONT ( 6 , 104 ) ; 61 Size = MAP_APPFONT ( 238 , 8 ) ; 62 }; 63 OKButton PB_OK 64 { 65 Pos = MAP_APPFONT ( 85 , 115 ) ; 66 Size = MAP_APPFONT ( 50 , 14 ) ; 67 }; 68 CancelButton PB_CANCEL 69 { 70 Pos = MAP_APPFONT ( 138 , 115 ) ; 71 Size = MAP_APPFONT ( 50 , 14 ) ; 72 }; 73 HelpButton PB_HELP 74 { 75 Pos = MAP_APPFONT ( 194 , 115 ) ; 76 Size = MAP_APPFONT ( 50 , 14 ) ; 77 }; 78 String ST_NAME 79 { 80 Text [ en-US ] = "Name"; 81 }; 82 String ST_TYPE 83 { 84 Text [ en-US ] = "Type"; 85 }; 86 String ST_TABLE 87 { 88 Text [ en-US ] = "Table"; 89 }; 90 String ST_QUERY 91 { 92 Text [ en-US ] = "Query"; 93 }; 94 95}; 96