181d089aeSAndrew Rist/**************************************************************
2*57b6b03fSmseidel *
381d089aeSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
481d089aeSAndrew Rist * or more contributor license agreements.  See the NOTICE file
581d089aeSAndrew Rist * distributed with this work for additional information
681d089aeSAndrew Rist * regarding copyright ownership.  The ASF licenses this file
781d089aeSAndrew Rist * to you under the Apache License, Version 2.0 (the
881d089aeSAndrew Rist * "License"); you may not use this file except in compliance
981d089aeSAndrew Rist * with the License.  You may obtain a copy of the License at
10*57b6b03fSmseidel *
1181d089aeSAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12*57b6b03fSmseidel *
1381d089aeSAndrew Rist * Unless required by applicable law or agreed to in writing,
1481d089aeSAndrew Rist * software distributed under the License is distributed on an
1581d089aeSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
1681d089aeSAndrew Rist * KIND, either express or implied.  See the License for the
1781d089aeSAndrew Rist * specific language governing permissions and limitations
1881d089aeSAndrew Rist * under the License.
19*57b6b03fSmseidel *
2081d089aeSAndrew Rist *************************************************************/
2181d089aeSAndrew Rist
2281d089aeSAndrew Rist
23cdf0e10cSrcweir
24cdf0e10cSrcweir#ifndef _DBA_DBACCESS_HELPID_HRC_
25cdf0e10cSrcweir#include "dbaccess_helpid.hrc"
26cdf0e10cSrcweir#endif
27cdf0e10cSrcweir#ifndef _DBU_DLG_HRC_
28cdf0e10cSrcweir#include "dbu_dlg.hrc"
29cdf0e10cSrcweir#endif
30cdf0e10cSrcweir#ifndef _DBAUI_SQLMESSAGE_HRC_
31cdf0e10cSrcweir#include "sqlmessage.hrc"
32cdf0e10cSrcweir#endif
33cdf0e10cSrcweir
34cdf0e10cSrcweir//-------------------------------------------------------------------------
35cdf0e10cSrcweirImage BMP_EXCEPTION_ERROR
36cdf0e10cSrcweir{
37*57b6b03fSmseidel	ImageBitmap = Bitmap {File = "exerror.png" ;} ;
38cdf0e10cSrcweir};
39cdf0e10cSrcweir
40cdf0e10cSrcweirImage BMP_EXCEPTION_WARNING
41cdf0e10cSrcweir{
42*57b6b03fSmseidel	ImageBitmap = Bitmap {File = "exwarning.png" ;} ;
43cdf0e10cSrcweir};
44cdf0e10cSrcweir
45cdf0e10cSrcweirImage BMP_EXCEPTION_INFO
46cdf0e10cSrcweir{
47*57b6b03fSmseidel	ImageBitmap = Bitmap {File = "exinfo.png" ;} ;
48cdf0e10cSrcweir};
49cdf0e10cSrcweirImage BMP_EXCEPTION_ERROR_SCH
50cdf0e10cSrcweir{
51*57b6b03fSmseidel	ImageBitmap = Bitmap {File = "exerror_sch.png" ;} ;
52cdf0e10cSrcweir};
53cdf0e10cSrcweir
54cdf0e10cSrcweirImage BMP_EXCEPTION_WARNING_SCH
55cdf0e10cSrcweir{
56*57b6b03fSmseidel	ImageBitmap = Bitmap {File = "exwarning_sch.png" ;} ;
57cdf0e10cSrcweir};
58cdf0e10cSrcweir
59cdf0e10cSrcweirImage BMP_EXCEPTION_INFO_SCH
60cdf0e10cSrcweir{
61*57b6b03fSmseidel	ImageBitmap = Bitmap {File = "exinfo_sch.png" ;} ;
62cdf0e10cSrcweir};
63cdf0e10cSrcweir
64cdf0e10cSrcweirModalDialog DLG_SQLEXCEPTIONCHAIN
65cdf0e10cSrcweir{
66*57b6b03fSmseidel	HelpID = "dbaccess:ModalDialog:DLG_SQLEXCEPTIONCHAIN" ;
67cdf0e10cSrcweir	Moveable = TRUE ;
68cdf0e10cSrcweir	Closeable = TRUE ;
69cdf0e10cSrcweir	OutputSize = TRUE ;
70cdf0e10cSrcweir	SVLook = TRUE ;
71*57b6b03fSmseidel	Size = MAP_APPFONT ( 240, 150 ) ;
72cdf0e10cSrcweir	Text [ en-US ] = "%PRODUCTNAME Base" ;
73cdf0e10cSrcweir
74cdf0e10cSrcweir	FixedLine FL_DETAILS
75cdf0e10cSrcweir	{
76cdf0e10cSrcweir		Pos = MAP_APPFONT ( 6, 3 ) ;
77cdf0e10cSrcweir		Size = MAP_APPFONT ( 228, 8 ) ;
78*57b6b03fSmseidel		Text [ en-US ] = "Details" ;
79cdf0e10cSrcweir	};
80cdf0e10cSrcweir	FixedText FT_ERRORLIST
81cdf0e10cSrcweir	{
82cdf0e10cSrcweir		Pos = MAP_APPFONT ( 12, 12 ) ;
83cdf0e10cSrcweir		Size = MAP_APPFONT ( 85, 10 ) ;
84*57b6b03fSmseidel		Text [ en-US ] = "Error ~list:" ;
85*57b6b03fSmseidel		Group = TRUE ;
86cdf0e10cSrcweir	};
87cdf0e10cSrcweir	Control CTL_ERRORLIST
88cdf0e10cSrcweir	{
89cdf0e10cSrcweir		Pos = MAP_APPFONT ( 12, 25 ) ;
90cdf0e10cSrcweir		Size = MAP_APPFONT ( 85, 93 ) ;
91*57b6b03fSmseidel		Border = TRUE ;
92*57b6b03fSmseidel		TabStop = TRUE ;
93*57b6b03fSmseidel		HelpId = HID_SQLERROR_EXCHAIN_ERRORS ;
94cdf0e10cSrcweir	};
95cdf0e10cSrcweir	FixedText FT_DESCRIPTION
96cdf0e10cSrcweir	{
97cdf0e10cSrcweir		Pos = MAP_APPFONT ( 103, 12 ) ;
98cdf0e10cSrcweir		Size = MAP_APPFONT ( 125, 10 ) ;
99*57b6b03fSmseidel		Text [ en-US ] = "~Description:" ;
100*57b6b03fSmseidel		Group = TRUE ;
101cdf0e10cSrcweir	};
102cdf0e10cSrcweir	MultiLineEdit ME_DESCRIPTION
103cdf0e10cSrcweir	{
104cdf0e10cSrcweir		Border = TRUE ;
105*57b6b03fSmseidel		Pos = MAP_APPFONT ( 103, 25 ) ;
106*57b6b03fSmseidel		Size = MAP_APPFONT ( 125, 93 ) ;
107cdf0e10cSrcweir		TabStop = TRUE ;
108cdf0e10cSrcweir		VScroll = TRUE ;
109*57b6b03fSmseidel		HelpId = HID_SQLERROR_EXCHAIN_TEXT ;
110cdf0e10cSrcweir	};
111cdf0e10cSrcweir	OKButton PB_OK
112cdf0e10cSrcweir	{
113*57b6b03fSmseidel		Pos = MAP_APPFONT ( 95, 130 ) ;
114*57b6b03fSmseidel		Size = MAP_APPFONT ( 50, 14 ) ;
115cdf0e10cSrcweir		TabStop = TRUE ;
116cdf0e10cSrcweir		DefButton = TRUE ;
117cdf0e10cSrcweir	};
118cdf0e10cSrcweir
119cdf0e10cSrcweir	String STR_EXCEPTION_STATUS
120cdf0e10cSrcweir	{
121*57b6b03fSmseidel		Text [ en-US ] = "SQL Status" ;
122cdf0e10cSrcweir	};
123cdf0e10cSrcweir	String STR_EXCEPTION_ERRORCODE
124cdf0e10cSrcweir	{
125*57b6b03fSmseidel		Text [ en-US ] = "Error code" ;
126cdf0e10cSrcweir	};
127cdf0e10cSrcweir};
128cdf0e10cSrcweir
129cdf0e10cSrcweirString STR_EXPLAN_STRINGCONVERSION_ERROR
130cdf0e10cSrcweir{
131*57b6b03fSmseidel	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." ;
132cdf0e10cSrcweir};
133cdf0e10cSrcweir
134cdf0e10cSrcweirString STR_EXCEPTION_ERROR
135cdf0e10cSrcweir{
136*57b6b03fSmseidel	Text [ en-US ] = "Error" ;
137cdf0e10cSrcweir};
138cdf0e10cSrcweir
139cdf0e10cSrcweirString STR_EXCEPTION_WARNING
140cdf0e10cSrcweir{
141*57b6b03fSmseidel	Text [ en-US ] = "Warning" ;
142cdf0e10cSrcweir};
143cdf0e10cSrcweir
144cdf0e10cSrcweirString STR_EXCEPTION_INFO
145cdf0e10cSrcweir{
146*57b6b03fSmseidel	Text [ en-US ] = "Information" ;
147cdf0e10cSrcweir};
148cdf0e10cSrcweir
149cdf0e10cSrcweirString STR_EXCEPTION_DETAILS
150cdf0e10cSrcweir{
151*57b6b03fSmseidel	Text [ en-US ] = "Details" ;
152cdf0e10cSrcweir};
153*57b6b03fSmseidel
154*57b6b03fSmseidel// ********************************************************************** EOF
155