1/************************************************************************* 2 * 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 * 5 * Copyright 2000, 2010 Oracle and/or its affiliates. 6 * 7 * OpenOffice.org - a multi-platform office productivity suite 8 * 9 * This file is part of OpenOffice.org. 10 * 11 * OpenOffice.org is free software: you can redistribute it and/or modify 12 * it under the terms of the GNU Lesser General Public License version 3 13 * only, as published by the Free Software Foundation. 14 * 15 * OpenOffice.org is distributed in the hope that it will be useful, 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 * GNU Lesser General Public License version 3 for more details 19 * (a copy is included in the LICENSE file that accompanied this code). 20 * 21 * You should have received a copy of the GNU Lesser General Public License 22 * version 3 along with OpenOffice.org. If not, see 23 * <http://www.openoffice.org/license.html> 24 * for a copy of the LGPLv3 License. 25 * 26 ************************************************************************/ 27 28#ifndef _DBA_DBACCESS_HELPID_HRC_ 29#include "dbaccess_helpid.hrc" 30#endif 31#ifndef _DBU_DLG_HRC_ 32#include "dbu_dlg.hrc" 33#endif 34#ifndef _DBAUI_SQLMESSAGE_HRC_ 35#include "sqlmessage.hrc" 36#endif 37 38//------------------------------------------------------------------------- 39Image BMP_EXCEPTION_ERROR 40{ 41 ImageBitmap = Bitmap { File = "exerror.bmp"; }; 42 MaskColor = Color { Red = 0xff00 ; Green = 0x0000 ; Blue = 0xff00 ; }; 43}; 44 45Image BMP_EXCEPTION_WARNING 46{ 47 ImageBitmap = Bitmap { File = "exwarning.bmp"; }; 48 MaskColor = Color { Red = 0xff00 ; Green = 0x0000 ; Blue = 0xff00 ; }; 49}; 50 51Image BMP_EXCEPTION_INFO 52{ 53 ImageBitmap = Bitmap { File = "exinfo.bmp"; }; 54 MaskColor = Color { Red = 0xff00 ; Green = 0x0000 ; Blue = 0xff00 ; }; 55}; 56Image BMP_EXCEPTION_ERROR_SCH 57{ 58 ImageBitmap = Bitmap { File = "exerror_sch.bmp"; }; 59 MaskColor = Color { Red = 0xff00 ; Green = 0x0000 ; Blue = 0xff00 ; }; 60}; 61 62Image BMP_EXCEPTION_WARNING_SCH 63{ 64 ImageBitmap = Bitmap { File = "exwarning_sch.bmp"; }; 65 MaskColor = Color { Red = 0xff00 ; Green = 0x0000 ; Blue = 0xff00 ; }; 66}; 67 68Image BMP_EXCEPTION_INFO_SCH 69{ 70 ImageBitmap = Bitmap { File = "exinfo_sch.bmp"; }; 71 MaskColor = Color { Red = 0xff00 ; Green = 0x0000 ; Blue = 0xff00 ; }; 72}; 73 74ModalDialog DLG_SQLEXCEPTIONCHAIN 75{ 76 HelpID = "dbaccess:ModalDialog:DLG_SQLEXCEPTIONCHAIN"; 77 Moveable = TRUE ; 78 Closeable = TRUE ; 79 OutputSize = TRUE ; 80 SVLook = TRUE ; 81 Size = MAP_APPFONT ( 240 , 150 ) ; 82 Text [ en-US ] = "%PRODUCTNAME Base" ; 83 84 FixedLine FL_DETAILS 85 { 86 Pos = MAP_APPFONT ( 6, 3 ) ; 87 Size = MAP_APPFONT ( 228, 8 ) ; 88 Text [ en-US ] = "Details"; 89 }; 90 FixedText FT_ERRORLIST 91 { 92 Pos = MAP_APPFONT ( 12, 12 ) ; 93 Size = MAP_APPFONT ( 85, 10 ) ; 94 Text [ en-US ] = "Error ~list:"; 95 Group = TRUE; 96 }; 97 Control CTL_ERRORLIST 98 { 99 Pos = MAP_APPFONT ( 12, 25 ) ; 100 Size = MAP_APPFONT ( 85, 93 ) ; 101 Border = TRUE; 102 TabStop = TRUE; 103 HelpId = HID_SQLERROR_EXCHAIN_ERRORS; 104 }; 105 FixedText FT_DESCRIPTION 106 { 107 Pos = MAP_APPFONT ( 103, 12 ) ; 108 Size = MAP_APPFONT ( 125, 10 ) ; 109 Text [ en-US ] = "~Description:"; 110 Group = TRUE; 111 }; 112 MultiLineEdit ME_DESCRIPTION 113 { 114 Border = TRUE ; 115 Pos = MAP_APPFONT ( 103 , 25 ) ; 116 Size = MAP_APPFONT ( 125 , 93 ) ; 117 TabStop = TRUE ; 118 VScroll = TRUE ; 119 HelpId = HID_SQLERROR_EXCHAIN_TEXT; 120 }; 121 OKButton PB_OK 122 { 123 Pos = MAP_APPFONT ( 95 , 130 ) ; 124 Size = MAP_APPFONT ( 50 , 14 ) ; 125 TabStop = TRUE ; 126 DefButton = TRUE ; 127 }; 128 129 String STR_EXCEPTION_STATUS 130 { 131 Text [ en-US ] = "SQL Status"; 132 }; 133 String STR_EXCEPTION_ERRORCODE 134 { 135 Text [ en-US ] = "Error code"; 136 }; 137}; 138 139String STR_EXPLAN_STRINGCONVERSION_ERROR 140{ 141 Text [ en-US ] = "A frequent reason for this error is an inappropriate character set setting for the language of your database. Check the setting by choosing Edit - Database - Properties."; 142}; 143 144String STR_EXCEPTION_ERROR 145{ 146 Text [ en-US ] = "Error"; 147}; 148 149String STR_EXCEPTION_WARNING 150{ 151 Text [ en-US ] = "Warning"; 152}; 153 154String STR_EXCEPTION_INFO 155{ 156 Text [ en-US ] = "Information"; 157}; 158 159String STR_EXCEPTION_DETAILS 160{ 161 Text [ en-US ] = "Details"; 162}; 163