xref: /aoo41x/main/sc/source/ui/dbgui/validate.src (revision c9093c9b)
182177cdbSAndrew Rist/**************************************************************
2*c9093c9bSmseidel *
382177cdbSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
482177cdbSAndrew Rist * or more contributor license agreements.  See the NOTICE file
582177cdbSAndrew Rist * distributed with this work for additional information
682177cdbSAndrew Rist * regarding copyright ownership.  The ASF licenses this file
782177cdbSAndrew Rist * to you under the Apache License, Version 2.0 (the
882177cdbSAndrew Rist * "License"); you may not use this file except in compliance
982177cdbSAndrew Rist * with the License.  You may obtain a copy of the License at
10*c9093c9bSmseidel *
1182177cdbSAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12*c9093c9bSmseidel *
1382177cdbSAndrew Rist * Unless required by applicable law or agreed to in writing,
1482177cdbSAndrew Rist * software distributed under the License is distributed on an
1582177cdbSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
1682177cdbSAndrew Rist * KIND, either express or implied.  See the License for the
1782177cdbSAndrew Rist * specific language governing permissions and limitations
1882177cdbSAndrew Rist * under the License.
19*c9093c9bSmseidel *
2082177cdbSAndrew Rist *************************************************************/
2182177cdbSAndrew Rist
2282177cdbSAndrew Rist
23cdf0e10cSrcweir
24cdf0e10cSrcweir#include "validate.hrc"
25cdf0e10cSrcweir
26cdf0e10cSrcweir
27cdf0e10cSrcweirTabDialog TAB_DLG_VALIDATION
28cdf0e10cSrcweir{
29cdf0e10cSrcweir	OutputSize = TRUE ;
30cdf0e10cSrcweir	SVLook = TRUE ;
31*c9093c9bSmseidel	Size = MAP_APPFONT ( 289, 176 ) ;
32cdf0e10cSrcweir	Moveable = TRUE ;
33cdf0e10cSrcweir	TabControl 1
34cdf0e10cSrcweir	{
35cdf0e10cSrcweir		OutputSize = TRUE ;
36*c9093c9bSmseidel		Size = MAP_APPFONT ( 260, 135 ) ;
37cdf0e10cSrcweir		PageList =
38cdf0e10cSrcweir		{
39cdf0e10cSrcweir			PageItem
40cdf0e10cSrcweir			{
41cdf0e10cSrcweir				Identifier = TP_VALIDATION_VALUES ;
42cdf0e10cSrcweir				PageResID = TP_VALIDATION_VALUES ;
43*c9093c9bSmseidel				Text [ en-US ] = "Criteria" ;
44cdf0e10cSrcweir			};
45cdf0e10cSrcweir			PageItem
46cdf0e10cSrcweir			{
47cdf0e10cSrcweir				Identifier = TP_VALIDATION_INPUTHELP ;
48cdf0e10cSrcweir				PageResID = TP_VALIDATION_INPUTHELP ;
49cdf0e10cSrcweir				Text [ en-US ] = "Input Help" ;
50cdf0e10cSrcweir			};
51cdf0e10cSrcweir			PageItem
52cdf0e10cSrcweir			{
53cdf0e10cSrcweir				Identifier = TP_VALIDATION_ERROR ;
54cdf0e10cSrcweir				PageResID = TP_VALIDATION_ERROR ;
55cdf0e10cSrcweir				Text [ en-US ] = "Error Alert" ;
56cdf0e10cSrcweir			};
57cdf0e10cSrcweir		};
58cdf0e10cSrcweir	};
59cdf0e10cSrcweir	Text [ en-US ] = "Validity" ;
60cdf0e10cSrcweir};
61cdf0e10cSrcweir//<!--Added by PengYunQuan for Validity Cell Range Picker
62cdf0e10cSrcweir#define	OFFSET_X	30
63cdf0e10cSrcweir//-->Added by PengYunQuan for Validity Cell Range Picker
64cdf0e10cSrcweirTabPage TP_VALIDATION_VALUES
65cdf0e10cSrcweir{
66*c9093c9bSmseidel	HelpID = "sc:TabPage:TP_VALIDATION_VALUES" ;
67cdf0e10cSrcweir	Hide = TRUE ;
68cdf0e10cSrcweir	SVLook = TRUE ;
69*c9093c9bSmseidel	Size = MAP_APPFONT ( 260, 185 ) ;
70cdf0e10cSrcweir	Text [ en-US ] = "Values" ;
71cdf0e10cSrcweir	FixedText FT_ALLOW
72cdf0e10cSrcweir	{
73*c9093c9bSmseidel		Pos = MAP_APPFONT ( 6, 16 ) ;
74cdf0e10cSrcweir		//<!--Modified by PengYunQuan for Validity Cell Range Picker
75*c9093c9bSmseidel		//Size = MAP_APPFONT ( 70, 8 ) ;
76*c9093c9bSmseidel		Size = MAP_APPFONT ( 70 - OFFSET_X, 8 ) ;
77cdf0e10cSrcweir		//-->Modified by PengYunQuan for Validity Cell Range Picker
78cdf0e10cSrcweir		Text [ en-US ] = "~Allow" ;
79cdf0e10cSrcweir	};
80cdf0e10cSrcweir	ListBox LB_ALLOW
81cdf0e10cSrcweir	{
82*c9093c9bSmseidel		HelpID = "sc:ListBox:TP_VALIDATION_VALUES:LB_ALLOW" ;
83cdf0e10cSrcweir		Border = TRUE ;
84cdf0e10cSrcweir		//<!--Modified by PengYunQuan for Validity Cell Range Picker
85*c9093c9bSmseidel		//Pos = MAP_APPFONT ( 80, 14 ) ;
86*c9093c9bSmseidel		Pos = MAP_APPFONT ( 80 - OFFSET_X, 14 ) ;
87*c9093c9bSmseidel		//-->Modified by PengYunQuan for Validity Cell Range Picker
88*c9093c9bSmseidel		Size = MAP_APPFONT ( 90, 80 ) ;
89cdf0e10cSrcweir		TabStop = TRUE ;
90cdf0e10cSrcweir		DropDown = TRUE ;
91cdf0e10cSrcweir		StringList [ en-US ] =
92cdf0e10cSrcweir		{
93*c9093c9bSmseidel			< "All values" ; SC_VALIDDLG_ALLOW_ANY ;		> ;
94*c9093c9bSmseidel			< "Whole Numbers" ; SC_VALIDDLG_ALLOW_WHOLE ;	> ;
95*c9093c9bSmseidel			< "Decimal" ; SC_VALIDDLG_ALLOW_DECIMAL ;		> ;
96*c9093c9bSmseidel			< "Date" ; SC_VALIDDLG_ALLOW_DATE ;				> ;
97*c9093c9bSmseidel			< "Time" ; SC_VALIDDLG_ALLOW_TIME ;				> ;
98*c9093c9bSmseidel			< "Cell range" ; SC_VALIDDLG_ALLOW_RANGE ;		> ;
99*c9093c9bSmseidel			< "List" ; SC_VALIDDLG_ALLOW_LIST ;				> ;
100*c9093c9bSmseidel			< "Text length" ; SC_VALIDDLG_ALLOW_TEXTLEN ;	> ;
101cdf0e10cSrcweir		};
102cdf0e10cSrcweir	};
103cdf0e10cSrcweir	FixedText FT_VALUE
104cdf0e10cSrcweir	{
105*c9093c9bSmseidel		Pos = MAP_APPFONT ( 6, 58 ) ;
106*c9093c9bSmseidel		//<!--Modified by PengYunQuan for Validity Cell Range Picker
107*c9093c9bSmseidel		//Size = MAP_APPFONT ( 70, 8 ) ;
108*c9093c9bSmseidel		Size = MAP_APPFONT ( 70 - OFFSET_X, 8 ) ;
109cdf0e10cSrcweir		//-->Modified by PengYunQuan for Validity Cell Range Picker
110cdf0e10cSrcweir		Text [ en-US ] = "~Data" ;
111cdf0e10cSrcweir	};
112cdf0e10cSrcweir	ListBox LB_VALUE
113cdf0e10cSrcweir	{
114*c9093c9bSmseidel		HelpID = "sc:ListBox:TP_VALIDATION_VALUES:LB_VALUE" ;
115cdf0e10cSrcweir		Border = TRUE ;
116cdf0e10cSrcweir		//<!--Modified by PengYunQuan for Validity Cell Range Picker
117*c9093c9bSmseidel		//Pos = MAP_APPFONT ( 80, 56 ) ;
118*c9093c9bSmseidel		Pos = MAP_APPFONT ( 80 - OFFSET_X, 56 ) ;
119*c9093c9bSmseidel		//-->Modified by PengYunQuan for Validity Cell Range Picker
120*c9093c9bSmseidel		Size = MAP_APPFONT ( 90, 90 ) ;
121cdf0e10cSrcweir		TabStop = TRUE ;
122cdf0e10cSrcweir		DropDown = TRUE ;
123*c9093c9bSmseidel		//	Reihenfolge entspricht enum ScConditionMode
124cdf0e10cSrcweir		StringList [ en-US ] =
125cdf0e10cSrcweir		{
126*c9093c9bSmseidel			< "equal" ; SC_VALIDDLG_DATA_EQUAL ;						> ;
127*c9093c9bSmseidel			< "less than" ; SC_VALIDDLG_DATA_LESS ;						> ;
128*c9093c9bSmseidel			< "greater than" ; SC_VALIDDLG_DATA_GREATER ;				> ;
129*c9093c9bSmseidel			< "less than or equal" ; SC_VALIDDLG_DATA_EQLESS ;			> ;
130*c9093c9bSmseidel			< "greater than or equal to" ; SC_VALIDDLG_DATA_EQGREATER ;	> ;
131*c9093c9bSmseidel			< "not equal" ; SC_VALIDDLG_DATA_NOTEQUAL ;					> ;
132*c9093c9bSmseidel			< "between" ; SC_VALIDDLG_DATA_BETWEEN ;					> ;
133*c9093c9bSmseidel			< "not between" ; SC_VALIDDLG_DATA_NOTBETWEEN ;				> ;
134cdf0e10cSrcweir		};
135cdf0e10cSrcweir	};
136cdf0e10cSrcweir	FixedText FT_MIN
137cdf0e10cSrcweir	{
138*c9093c9bSmseidel		Pos = MAP_APPFONT ( 6, 76 ) ;
139*c9093c9bSmseidel		//<!--Modified by PengYunQuan for Validity Cell Range Picker
140*c9093c9bSmseidel		//Size = MAP_APPFONT ( 70, 8 ) ;
141*c9093c9bSmseidel		Size = MAP_APPFONT ( 70 - OFFSET_X, 8 ) ;
142cdf0e10cSrcweir		//-->Modified by PengYunQuan for Validity Cell Range Picker
143cdf0e10cSrcweir		Text [ en-US ] = "~Minimum" ;
144cdf0e10cSrcweir	};
145cdf0e10cSrcweir	Edit EDT_MIN
146cdf0e10cSrcweir	{
147*c9093c9bSmseidel		HelpID = "sc:Edit:TP_VALIDATION_VALUES:EDT_MIN" ;
148cdf0e10cSrcweir		Border = TRUE ;
149*c9093c9bSmseidel		//<!--Modified by PengYunQuan for Validity Cell Range Picker
150*c9093c9bSmseidel		//Pos = MAP_APPFONT ( 80, 74 ) ;
151*c9093c9bSmseidel		//Size = MAP_APPFONT ( 174, 12 ) ;
152*c9093c9bSmseidel		Pos = MAP_APPFONT ( 80 - OFFSET_X, 74 ) ;
153*c9093c9bSmseidel		Size = MAP_APPFONT ( 90, 12 ) ;
154cdf0e10cSrcweir		//-->Modified by PengYunQuan for Validity Cell Range Picker
155cdf0e10cSrcweir		TabStop = TRUE ;
156cdf0e10cSrcweir	};
157*c9093c9bSmseidel	MultiLineEdit EDT_LIST
158*c9093c9bSmseidel	{
159*c9093c9bSmseidel		HelpID = "sc:MultiLineEdit:TP_VALIDATION_VALUES:EDT_LIST" ;
160*c9093c9bSmseidel		Border = TRUE ;
161*c9093c9bSmseidel		//<!--Modified by PengYunQuan for Validity Cell Range Picker
162*c9093c9bSmseidel		//Pos = MAP_APPFONT ( 80, 74 ) ;
163*c9093c9bSmseidel		//Size = MAP_APPFONT ( 174, 105 ) ;
164*c9093c9bSmseidel		Pos = MAP_APPFONT ( 80 - OFFSET_X, 74 ) ;
165*c9093c9bSmseidel		Size = MAP_APPFONT ( 174 + OFFSET_X, 105 ) ;
166cdf0e10cSrcweir		//-->Modified by PengYunQuan for Validity Cell Range Picker
167*c9093c9bSmseidel		VScroll = TRUE ;
168*c9093c9bSmseidel		IgnoreTab = TRUE ;
169*c9093c9bSmseidel	};
170cdf0e10cSrcweir	FixedText FT_MAX
171cdf0e10cSrcweir	{
172*c9093c9bSmseidel		Pos = MAP_APPFONT ( 6, 92 ) ;
173*c9093c9bSmseidel		//<!--Modified by PengYunQuan for Validity Cell Range Picker
174*c9093c9bSmseidel		//Size = MAP_APPFONT ( 70, 8 ) ;
175*c9093c9bSmseidel		Size = MAP_APPFONT ( 70 - OFFSET_X, 8 ) ;
176cdf0e10cSrcweir		//-->Modified by PengYunQuan for Validity Cell Range Picker
177cdf0e10cSrcweir		Text [ en-US ] = "Ma~ximum" ;
178cdf0e10cSrcweir	};
179cdf0e10cSrcweir	Edit EDT_MAX
180cdf0e10cSrcweir	{
181*c9093c9bSmseidel		HelpID = "sc:Edit:TP_VALIDATION_VALUES:EDT_MAX" ;
182cdf0e10cSrcweir		Border = TRUE ;
183*c9093c9bSmseidel		//<!--Modified by PengYunQuan for Validity Cell Range Picker
184*c9093c9bSmseidel		//Pos = MAP_APPFONT ( 80, 90 ) ;
185*c9093c9bSmseidel		//Size = MAP_APPFONT ( 174, 12 ) ;
186*c9093c9bSmseidel		Pos = MAP_APPFONT ( 80 - OFFSET_X, 90 ) ;
187*c9093c9bSmseidel		Size = MAP_APPFONT ( 90, 12 ) ;
188cdf0e10cSrcweir		//-->Modified by PengYunQuan for Validity Cell Range Picker
189cdf0e10cSrcweir		TabStop = TRUE ;
190cdf0e10cSrcweir	};
191*c9093c9bSmseidel	CheckBox TSB_ALLOW_BLANKS
192cdf0e10cSrcweir	{
193*c9093c9bSmseidel		HelpID = "sc:CheckBox:TP_VALIDATION_VALUES:TSB_ALLOW_BLANKS" ;
194cdf0e10cSrcweir		//<!--Modified by PengYunQuan for Validity Cell Range Picker
195*c9093c9bSmseidel		//Pos = MAP_APPFONT ( 80, 30 ) ;
196*c9093c9bSmseidel		Pos = MAP_APPFONT ( 80 - OFFSET_X, 30 ) ;
197cdf0e10cSrcweir		//-->Modified by PengYunQuan for Validity Cell Range Picker
198*c9093c9bSmseidel		Size = MAP_APPFONT ( 174, 10 ) ;
199*c9093c9bSmseidel		TabStop = TRUE ;
200*c9093c9bSmseidel		Text [ en-US ] = "Allow ~empty cells" ;
201cdf0e10cSrcweir	};
202*c9093c9bSmseidel	CheckBox CB_SHOWLIST
203*c9093c9bSmseidel	{
204*c9093c9bSmseidel		HelpID = "sc:CheckBox:TP_VALIDATION_VALUES:CB_SHOWLIST" ;
205cdf0e10cSrcweir		//<!--Modified by PengYunQuan for Validity Cell Range Picker
206*c9093c9bSmseidel		//Pos = MAP_APPFONT ( 80, 44 ) ;
207*c9093c9bSmseidel		Pos = MAP_APPFONT ( 80 - OFFSET_X, 44 ) ;
208cdf0e10cSrcweir		//-->Modified by PengYunQuan for Validity Cell Range Picker
209*c9093c9bSmseidel		Size = MAP_APPFONT ( 174, 10 ) ;
210*c9093c9bSmseidel		TabStop = TRUE ;
211*c9093c9bSmseidel		Text [ en-US ] = "Show selection ~list" ;
212*c9093c9bSmseidel	};
213*c9093c9bSmseidel	CheckBox CB_SORTLIST
214*c9093c9bSmseidel	{
215*c9093c9bSmseidel		HelpID = "sc:CheckBox:TP_VALIDATION_VALUES:CB_SORTLIST" ;
216cdf0e10cSrcweir		//<!--Modified by PengYunQuan for Validity Cell Range Picker
217*c9093c9bSmseidel		//Pos = MAP_APPFONT ( 90, 58 ) ;
218*c9093c9bSmseidel		Pos = MAP_APPFONT ( 90 - OFFSET_X, 58 ) ;
219cdf0e10cSrcweir		//-->Modified by PengYunQuan for Validity Cell Range Picker
220*c9093c9bSmseidel		Size = MAP_APPFONT ( 164, 10 ) ;
221*c9093c9bSmseidel		TabStop = TRUE ;
222*c9093c9bSmseidel		Text [ en-US ] = "Sor~t entries ascending" ;
223*c9093c9bSmseidel	};
224*c9093c9bSmseidel	FixedText FT_SOURCEHINT
225*c9093c9bSmseidel	{
226*c9093c9bSmseidel		Pos = MAP_APPFONT ( 80 - OFFSET_X, 90 ) ;
227*c9093c9bSmseidel		Size = MAP_APPFONT ( 174, 64 ) ;
228*c9093c9bSmseidel		WordBreak = TRUE ;
229*c9093c9bSmseidel		Text [ en-US ] = "A valid source can only consist of a contiguous selection of rows and columns, or a formula that results in an area or array." ;
230*c9093c9bSmseidel	};
231cdf0e10cSrcweir	//<!--Added by PengYunQuan for Validity Cell Range Picker
232cdf0e10cSrcweir	ImageButton RB_VALIDITY_REF
233cdf0e10cSrcweir	{
234*c9093c9bSmseidel		HelpID = "sc:ImageButton:TP_VALIDATION_VALUES:RB_VALIDITY_REF" ;
235*c9093c9bSmseidel		Pos = MAP_APPFONT ( 142, 73 ) ;
236*c9093c9bSmseidel		Size = MAP_APPFONT ( 13, 14 ) ;
237cdf0e10cSrcweir		TabStop = TRUE ;
238cdf0e10cSrcweir		QuickHelpText [ en-US ] = "Shrink" ;
239cdf0e10cSrcweir	};
240cdf0e10cSrcweir	//-->Added by PengYunQuan for Validity Cell Range Picker
241cdf0e10cSrcweir};
242cdf0e10cSrcweir
243cdf0e10cSrcweirTabPage TP_VALIDATION_INPUTHELP
244cdf0e10cSrcweir{
245*c9093c9bSmseidel	HelpID = "sc:TabPage:TP_VALIDATION_INPUTHELP" ;
246cdf0e10cSrcweir	Hide = TRUE ;
247cdf0e10cSrcweir	SVLook = TRUE ;
248*c9093c9bSmseidel	Size = MAP_APPFONT ( 260, 185 ) ;
249cdf0e10cSrcweir	Text = "Eingabehilfe" ;
250cdf0e10cSrcweir	TriStateBox TSB_HELP
251cdf0e10cSrcweir	{
252*c9093c9bSmseidel		HelpID = "sc:TriStateBox:TP_VALIDATION_INPUTHELP:TSB_HELP" ;
253*c9093c9bSmseidel		Pos = MAP_APPFONT ( 6, 6 ) ;
254*c9093c9bSmseidel		Size = MAP_APPFONT ( 248, 10 ) ;
255cdf0e10cSrcweir		TabStop = TRUE ;
256cdf0e10cSrcweir		Text [ en-US ] = "~Show input help when cell is selected" ;
257cdf0e10cSrcweir	};
258*c9093c9bSmseidel	FixedLine FL_CONTENT
259cdf0e10cSrcweir	{
260*c9093c9bSmseidel		Pos = MAP_APPFONT ( 6, 22 ) ;
261*c9093c9bSmseidel		Size = MAP_APPFONT ( 248, 8 ) ;
262cdf0e10cSrcweir		Text [ en-US ] = "Contents" ;
263cdf0e10cSrcweir	};
264cdf0e10cSrcweir	FixedText FT_TITLE
265cdf0e10cSrcweir	{
266*c9093c9bSmseidel		Pos = MAP_APPFONT ( 12, 35 ) ;
267*c9093c9bSmseidel		Size = MAP_APPFONT ( 64, 8 ) ;
268cdf0e10cSrcweir		Text [ en-US ] = "~Title" ;
269cdf0e10cSrcweir	};
270cdf0e10cSrcweir	FixedText FT_INPUTHELP
271cdf0e10cSrcweir	{
272*c9093c9bSmseidel		Pos = MAP_APPFONT ( 12, 53 ) ;
273*c9093c9bSmseidel		Size = MAP_APPFONT ( 64, 8 ) ;
274cdf0e10cSrcweir		Text [ en-US ] = "~Input help" ;
275cdf0e10cSrcweir	};
276cdf0e10cSrcweir	Edit EDT_TITLE
277cdf0e10cSrcweir	{
278*c9093c9bSmseidel		HelpID = "sc:Edit:TP_VALIDATION_INPUTHELP:EDT_TITLE" ;
279cdf0e10cSrcweir		Border = TRUE ;
280*c9093c9bSmseidel		Pos = MAP_APPFONT ( 80, 33 ) ;
281*c9093c9bSmseidel		Size = MAP_APPFONT ( 171, 12 ) ;
282cdf0e10cSrcweir		TabStop = TRUE ;
283cdf0e10cSrcweir	};
284cdf0e10cSrcweir	MultiLineEdit EDT_INPUTHELP
285cdf0e10cSrcweir	{
286*c9093c9bSmseidel		HelpID = "sc:MultiLineEdit:TP_VALIDATION_INPUTHELP:EDT_INPUTHELP" ;
287cdf0e10cSrcweir		Border = TRUE ;
288*c9093c9bSmseidel		Pos = MAP_APPFONT ( 80, 51 ) ;
289*c9093c9bSmseidel		Size = MAP_APPFONT ( 171, 128 ) ;
290cdf0e10cSrcweir		TabStop = TRUE ;
291cdf0e10cSrcweir		VScroll = TRUE ;
292cdf0e10cSrcweir		IgnoreTab = TRUE ;
293cdf0e10cSrcweir	};
294cdf0e10cSrcweir};
295cdf0e10cSrcweir
296cdf0e10cSrcweirTabPage TP_VALIDATION_ERROR
297cdf0e10cSrcweir{
298*c9093c9bSmseidel	HelpID = "sc:TabPage:TP_VALIDATION_ERROR" ;
299cdf0e10cSrcweir	Hide = TRUE ;
300cdf0e10cSrcweir	SVLook = TRUE ;
301*c9093c9bSmseidel	Size = MAP_APPFONT ( 260, 185 ) ;
302*c9093c9bSmseidel	FixedLine FL_CONTENT
303cdf0e10cSrcweir	{
304*c9093c9bSmseidel		Pos = MAP_APPFONT ( 6, 22 ) ;
305*c9093c9bSmseidel		Size = MAP_APPFONT ( 248, 8 ) ;
306cdf0e10cSrcweir		Text [ en-US ] = "Contents" ;
307cdf0e10cSrcweir	};
308cdf0e10cSrcweir	TriStateBox TSB_SHOW
309cdf0e10cSrcweir	{
310*c9093c9bSmseidel		HelpID = "sc:TriStateBox:TP_VALIDATION_ERROR:TSB_SHOW" ;
311*c9093c9bSmseidel		Pos = MAP_APPFONT ( 6, 6 ) ;
312*c9093c9bSmseidel		Size = MAP_APPFONT ( 248, 10 ) ;
313cdf0e10cSrcweir		TabStop = TRUE ;
314cdf0e10cSrcweir		Text [ en-US ] = "Show error ~message when invalid values are entered" ;
315cdf0e10cSrcweir	};
316cdf0e10cSrcweir	MultiLineEdit EDT_ERROR
317cdf0e10cSrcweir	{
318*c9093c9bSmseidel		HelpID = "sc:MultiLineEdit:TP_VALIDATION_ERROR:EDT_ERROR" ;
319cdf0e10cSrcweir		Border = TRUE ;
320*c9093c9bSmseidel		Pos = MAP_APPFONT ( 80, 69 ) ;
321*c9093c9bSmseidel		Size = MAP_APPFONT ( 171, 110 ) ;
322cdf0e10cSrcweir		TabStop = TRUE ;
323cdf0e10cSrcweir		VScroll = TRUE ;
324cdf0e10cSrcweir		IgnoreTab = TRUE ;
325cdf0e10cSrcweir	};
326cdf0e10cSrcweir	Edit EDT_TITLE
327cdf0e10cSrcweir	{
328*c9093c9bSmseidel		HelpID = "sc:Edit:TP_VALIDATION_ERROR:EDT_TITLE" ;
329cdf0e10cSrcweir		Border = TRUE ;
330*c9093c9bSmseidel		Pos = MAP_APPFONT ( 80, 51 ) ;
331*c9093c9bSmseidel		Size = MAP_APPFONT ( 171, 12 ) ;
332cdf0e10cSrcweir		TabStop = TRUE ;
333cdf0e10cSrcweir	};
334cdf0e10cSrcweir	FixedText FT_ERROR
335cdf0e10cSrcweir	{
336*c9093c9bSmseidel		Pos = MAP_APPFONT ( 12, 71 ) ;
337*c9093c9bSmseidel		Size = MAP_APPFONT ( 64, 8 ) ;
338cdf0e10cSrcweir		Text [ en-US ] = "~Error message" ;
339cdf0e10cSrcweir	};
340cdf0e10cSrcweir	FixedText FT_TITLE
341cdf0e10cSrcweir	{
342*c9093c9bSmseidel		Pos = MAP_APPFONT ( 12, 53 ) ;
343*c9093c9bSmseidel		Size = MAP_APPFONT ( 64, 8 ) ;
344cdf0e10cSrcweir		Text [ en-US ] = "~Title" ;
345cdf0e10cSrcweir	};
346cdf0e10cSrcweir	FixedText FT_ACTION
347cdf0e10cSrcweir	{
348*c9093c9bSmseidel		Pos = MAP_APPFONT ( 12, 35 ) ;
349*c9093c9bSmseidel		Size = MAP_APPFONT ( 64, 8 ) ;
350cdf0e10cSrcweir		Text [ en-US ] = "~Action" ;
351cdf0e10cSrcweir	};
352cdf0e10cSrcweir	ListBox LB_ACTION
353cdf0e10cSrcweir	{
354*c9093c9bSmseidel		HelpID = "sc:ListBox:TP_VALIDATION_ERROR:LB_ACTION" ;
355cdf0e10cSrcweir		Border = TRUE ;
356*c9093c9bSmseidel		Pos = MAP_APPFONT ( 80, 33 ) ;
357*c9093c9bSmseidel		Size = MAP_APPFONT ( 107, 76 ) ;
358cdf0e10cSrcweir		TabStop = TRUE ;
359cdf0e10cSrcweir		DropDown = TRUE ;
360*c9093c9bSmseidel		//	Reihenfolge entspricht enum ScValidErrorStyle
361cdf0e10cSrcweir		StringList [ en-US ] =
362cdf0e10cSrcweir		{
363*c9093c9bSmseidel			< "Stop" ; Default ;		> ;
364*c9093c9bSmseidel			< "Warning" ; Default ;		> ;
365*c9093c9bSmseidel			< "Information" ; Default ;	> ;
366*c9093c9bSmseidel			< "Macro" ; Default ;		> ;
367cdf0e10cSrcweir		};
368cdf0e10cSrcweir	};
369cdf0e10cSrcweir	PushButton BTN_SEARCH
370cdf0e10cSrcweir	{
371*c9093c9bSmseidel		HelpID = "sc:PushButton:TP_VALIDATION_ERROR:BTN_SEARCH" ;
372*c9093c9bSmseidel		Pos = MAP_APPFONT ( 191, 32 ) ;
373*c9093c9bSmseidel		Size = MAP_APPFONT ( 60, 14 ) ;
374cdf0e10cSrcweir		TabStop = TRUE ;
375cdf0e10cSrcweir		Text [ en-US ] = "~Browse..." ;
376cdf0e10cSrcweir	};
377cdf0e10cSrcweir	Text [ en-US ] = "Error Alert" ;
378cdf0e10cSrcweir};
379cdf0e10cSrcweir
380*c9093c9bSmseidel// ********************************************************************** EOF
381