summaryrefslogtreecommitdiff
path: root/testautomation/writer/optional/includes/formatpage/w_formatpage3.inc
blob: 6cfbd16b8f0401b3f8650615b8e788daabedf87d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
'encoding UTF-8  Do not remove or change this line!
'**************************************************************************
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 * 
 * Copyright 2000, 2010 Oracle and/or its affiliates.
 *
 * OpenOffice.org - a multi-platform office productivity suite
 *
 * This file is part of OpenOffice.org.
 *
 * OpenOffice.org is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License version 3
 * only, as published by the Free Software Foundation.
 *
 * OpenOffice.org 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 version 3 for more details
 * (a copy is included in the LICENSE file that accompanied this code).
 *
 * You should have received a copy of the GNU Lesser General Public License
 * version 3 along with OpenOffice.org.  If not, see
 * <http://www.openoffice.org/license.html>
 * for a copy of the LGPLv3 License.
 *
'/************************************************************************
'*
'* owner : helge.delfs@sun.com
'*
'* short description : Test the functionality of Page Formatting / Page Styles - 3
'*
'************************************************************************
'*
' #1 tFormatPage_29      'check for same content on left/right pages in header
' #1 tFormatPage_30      'check for different content on left/right pages in header
' #1 tFormatPage_31      'check for same content on left/right pages in footer
' #1 tFormatPage_32      'check for different content on left/right pages in footer
' #1 tFormatPage_33      'cursor should jump to header when inserting a header via menu
' #1 tFormatPage_34      'cursor shouldn't jump to header when inserting a header via checking 'Header on'
' #1 tFormatPage_35      'cursor should jump to footer when inserting a footer via menu
' #1 tFormatPage_36      'cursor shouldn't jump to footer when inserting a footer via checking 'Footer on'
' #1 tFormatPage_37      'Header must be applied to the current page style when inserting via menu
' #1 tFormatPage_38      'Footer must be applied to the current page style when inserting via menu
' #1 tFormatPage_39      'Set multi column via controls in page dialog
' #1 tFormatPage_40      'Set multi column via spinfield in page dialog
' #1 tFormatPage_41      'create columns with different width
' #1 tFormatPage_42      'vary distance between columns
' #1 tFormatPage_43      'seperator line between columns - change height/position of seperator
' #1 tFormatPage_44      'seperator line between columns - different line formats
' #1 tFormatPage_45      'shouldn't exist spacing after remove separator line
' #1 tFormatPage_46      'Check if the settings are kept after reopening the file
' #1 tFormatPage_47      'Test Travel through the 5 columns preset boxes
'*
'\***********************************************************************

testcase tFormatPage_29

    Dim sTestFile as String  ,  sNewContent as String
    Dim sContentInHeaderInPage1 as String  ,  sContentInHeaderInPage2 as String

    sTestFile                = Convertpath (gTesttoolpath + "writer\optional\input\formatpage\testHeaderContent29.sxw")
    sContentInHeaderInPage1  = "Header1"
    sContentInHeaderInPage2  = "Header2"
    sNewContent              = "MyTest"

    PrintLog "- check for same content on left/right pages in header"
    '/// check for same content on left/right pages in header

    Call hNewDocument

    '/// Open test file testHeaderContent29.sxw
    '/// + (The test file include 2 pages , and the
    '/// + content in header are different )
    Call hFileOpen(sTestFile)
    Call sMakeReadOnlyDocumentEditable

    '/// formatPage , tabpage header , check 'same content left/right'
    fFormatPageWriter("TabKopfzeile")
    InhaltLinksRechtsGleich.Check
    Sleep 1
    TabKopfzeile.OK

    Kontext
    EditSearchAndReplace
    Kontext "FindAndReplace"
    SearchFor.SetText sContentInHeaderInPage2
    Sleep 1
    SearchAll.Click
    Sleep 1

    Kontext "Active"
    if Active.Exists then
        if Active.GetRT = 304 then  Active.OK
    else
        warnlog "The content should be same after checking 'same content left/right' !"
    end if

    Kontext "FindAndReplace"
    FindAndReplace.Close

    '/// type some new content in the header in page1
     Kontext
     EditSearchAndReplace
     Kontext "FindAndReplace"
       SearchFor.SetText sContentInHeaderInPage1
       Sleep 1
       SearchAll.Click
       Sleep 1
     FindAndReplace.Close

     Call wTypeKeys "<Right>"
     Call wTypeKeys "<Backspace>" , 7
     Call wTypeKeys sNewContent
     Sleep 1

    '/// Check if the content in footer in page2 is changed
     Kontext
     EditSearchAndReplace
     Kontext "FindAndReplace"
       SearchFor.SetText sContentInHeaderInPage1
       Sleep 1
       SearchAll.Click
       Sleep 1

       Kontext "Active"
       if Active.Exists then
           if Active.GetRT = 304 then  Active.OK
       else
            warnlog "The content should be same after changing content in header in 1st page!"
       end if

       Kontext "FindAndReplace"
     FindAndReplace.Close

    printlog "  Close active document "
    Do Until GetDocumentCount = 0
        Call hCloseDocument
    Loop
endcase

'-------------------------------------------------------------------------------------------

testcase tFormatPage_30

    Dim sTestFile as String
    Dim sContentInHeader as String  ,  sNewContent as String
    Dim sPage2 as String

    sTestFile         = Convertpath (gTesttoolpath + "writer\optional\input\formatpage\testHeaderContent30.sxw")
    sContentInHeader  = "Header"
    sNewContent       = "MyTest"
    sPage2            = "Second"

    PrintLog "- check for different content on left/right pages in header"
    '/// check for different content on left/right pages in header

    Call hNewDocument

    '/// Open test file testHeaderContent30.sxw
    '/// + (The test file include 2 pages , and the
    '/// + content in header is same )
     Call hFileOpen(sTestFile)
     Call sMakeReadOnlyDocumentEditable

    '/// formatPage , tabpage header , Uncheck 'same content left/right'
     fFormatPageWriter("TabKopfzeile")
       InhaltLinksRechtsGleich.UnCheck
     TabKopfzeile.OK

    '/// type some new content in the header in page1
     Kontext
     EditSearchAndReplace
     Kontext "FindAndReplace"
       SearchFor.SetText sContentInHeader
       Sleep 1
       SearchAll.Click
       Sleep 1
     FindAndReplace.Close

     Call wTypeKeys "<Right>"
     Call wTypeKeys "<Backspace>" , 6
     Call wTypeKeys sNewContent
     Sleep 1

    '/// Check if the content in footer in page2 is changed
     Kontext
     EditSearchAndReplace
     Kontext "FindAndReplace"
       SearchFor.SetText sContentInHeader
       Sleep 1
       SearchAll.Click
       Sleep 1
     FindAndReplace.Close

     Kontext "Navigator"
     if Not Navigator.Exists then ViewNavigator
     Kontext "NavigatorWriter"
     Sleep 1
     if Seitennummer.GetText <> "1" then warnlog "Something wrong in Header in 1st page!"
     fCloseNavigator

    printlog "  Close active document "
    Do Until GetDocumentCount = 0
        Call hCloseDocument
    Loop
endcase

'-------------------------------------------------------------------------------------------


testcase tFormatPage_31

    Dim sTestFile as String  ,  sNewContent as String
    Dim sContentInFooterInPage1 as String  ,  sContentInFooterInPage2 as String

    sTestFile                = Convertpath (gTesttoolpath + "writer\optional\input\formatpage\testFooterContent31.sxw")
    sContentInFooterInPage1  = "Footer1"
    sContentInFooterInPage2  = "Footer2"
    sNewContent              = "MyTest"

    PrintLog "- check for same content on left/right pages in footer"
    '/// check for same content on left/right pages in footer

    Call hNewDocument

    '/// Open test file testFooterContent31.sxw
    '/// + (The test file include 2 pages , and the content
    '/// + in footer are different )
     Call hFileOpen(sTestFile)
     Call sMakeReadOnlyDocumentEditable

    '/// + formatPage , tabpage footer , check 'same content left/right'
     fFormatPageWriter("TabFusszeile")
       InhaltLinksRechtsGleich.Check
       Sleep 1
     TabFusszeile.OK

     Kontext
     EditSearchAndReplace
     Kontext "FindAndReplace"
       SearchFor.SetText sContentInFooterInPage2
       Sleep 1
       SearchAll.Click
       Sleep 1

       Kontext "Active"
       if Active.Exists then
           if Active.GetRT = 304 then  Active.OK
       else
           warnlog "The content should be same after checking 'same content left/right' !"
       end if

       Kontext "FindAndReplace"
     FindAndReplace.Close

    '/// type some new content in the footer in page1
     Kontext
     EditSearchAndReplace
     Kontext "FindAndReplace"
       SearchFor.SetText sContentInFooterInPage1
       Sleep 1
       SearchAll.Click
       Sleep 1
     FindAndReplace.Close

     Call wTypeKeys "<Right>"
     Call wTypeKeys "<Backspace>" , 7
     Call wTypeKeys sNewContent
     Sleep 1

    '/// Check if the content in footer in page2 is changed
     Kontext
     EditSearchAndReplace
     Kontext "FindAndReplace"
       SearchFor.SetText sContentInFooterInPage1
       Sleep 1
       SearchAll.Click
       Sleep 1

       Kontext "Active"
       if Active.Exists then
           if Active.GetRT = 304 then  Active.OK
       else
            warnlog "The content should be same after changing content in footer in 1st page!"
       end if

       Kontext "FindAndReplace"
     FindAndReplace.Close

    printlog "  Close active document "
    Do Until GetDocumentCount = 0
        Call hCloseDocument
    Loop
endcase

'-------------------------------------------------------------------------------------------

testcase tFormatPage_32

    Dim sTestFile as String
    Dim sContentInFooter as String  ,  sNewContent as String
    Dim sPage2 as String

    sTestFile         = Convertpath (gTesttoolpath + "writer\optional\input\formatpage\testFooterContent32.sxw")
    sContentInFooter  = "Footer"
    sNewContent       = "MyTest"
    sPage2            = "Second"

    PrintLog "- check for different content on left/right pages in footer"
    '/// check for different content on left/right pages in footer

    Call hNewDocument

    '/// Open test file testFooterContent32.sxw
    '/// + (The test file include 2 pages , and the
    '/// + content in footer is same )
     Call hFileOpen(sTestFile)
     Call sMakeReadOnlyDocumentEditable

    '/// formatPage , tabpage footer , Uncheck 'same content left/right'
     fFormatPageWriter("TabFusszeile")
       InhaltLinksRechtsGleich.UnCheck
     TabFusszeile.OK

    '/// type some new content in the footer in page1
     Kontext
     EditSearchAndReplace
     Kontext "FindAndReplace"
       SearchFor.SetText sContentInFooter
       Sleep 1
       SearchAll.Click
       Sleep 1
     FindAndReplace.Close

     Call wTypeKeys "<Right>"
     Call wTypeKeys "<Backspace>" , 6
     Call wTypeKeys sNewContent
     Sleep 1

    '/// Check if the content in the footer in page2 is changed
     Kontext
     EditSearchAndReplace
     Kontext "FindAndReplace"
       SearchFor.SetText sContentInFooter
       Sleep 1
       SearchAll.Click
       Sleep 1
     FindAndReplace.Close

     Kontext "Navigator"
     if Not Navigator.Exists then ViewNavigator
     Kontext "NavigatorWriter"
     Sleep 1
     if Seitennummer.GetText <> "1" then warnlog "Something wrong in Footer in 1st page!"
     fCloseNavigator

    printlog "  Close active document "
    Do Until GetDocumentCount = 0
        Call hCloseDocument
    Loop
endcase

'-------------------------------------------------------------------------------------------

testcase tFormatPage_33

    Dim sTest as String

    sTest = "Test"

    PrintLog "- cursor should jump to header when inserting a header via menu"
    '/// cursor should jump to header when inserting a header via menu

    Call hNewDocument

    '/// Input some test words
     Call wTypeKeys "ABC"

    '/// Insert a header via menu
     DocumentWriter.UseMenu
     MenuSelect(Menugetitemid(4))
     Sleep 2
     MenuSelect(Menugetitemid(9))
     Sleep 2
     MenuSelect(Menugetitemid(1))
     Sleep 2

    '/// type some test words -- it should be in the header
     Call wTypeKeys sTest

    '/// check if the text in header is right
     Kontext
     EditSearchAndReplace
     Kontext "FindAndReplace"
       SearchFor.SetText sTest
       Sleep 1
       SearchAll.Click
       Sleep 1
     FindAndReplace.Close
     Sleep 1

     EditSelectAll
     EditCopy

     if GetClipboardText <> sTest then warnlog "The content in the header isn't right, should be " &sTest &  " but get " & GetClipboardText

    '/// Remove the header
     Kontext
     Kontext "DocumentWriter"
     DocumentWriter.UseMenu
     MenuSelect(Menugetitemid(4))
     Sleep 2
     MenuSelect(Menugetitemid(9))
     Sleep 2
     MenuSelect(Menugetitemid(1))
     Sleep 2

     Kontext "Active"
     if Active.Exists then
         if Active.GetRT = 304 then  Active.Yes
     else
          warnlog "There should be a warning message appear when turn off header !"
     end if
     Sleep 1

    '/// Check if the content in header is removed
     Kontext
     EditSearchAndReplace
     Kontext "FindAndReplace"
       SearchFor.SetText sTest
       Sleep 1
       SearchAll.Click
       Sleep 1

       Kontext "Active"
       if Active.Exists then
           if Active.GetRT = 304 then  Active.OK
       else
           warnlog "The content in header should be removed!"
       end if

       Kontext "FindAndReplace"
     FindAndReplace.Close

    Call hCloseDocument

endcase

'-------------------------------------------------------------------------------------------

testcase tFormatPage_34

    Dim sTest as String

    sTest = "Test"

    PrintLog "- cursor shouldn't jump to header when inserting a header via checking 'Header on'"
    '/// cursor shouldn't jump to header when inserting a header via  checking 'Header on'

    Call hNewDocument

     Call wTypeKeys "ABC"

    '/// formatPage , tabpage header
     fFormatPageWriter("TabKopfzeile")

    '/// + turn on header (check Header on)
       KopfzeileMitAbstand.Check
     TabKopfzeile.OK
     Sleep 1

    '/// type some test words -- it should be in the header
     Call wTypeKeys sTest

    '/// check if the text in header is right
     Kontext
     EditSearchAndReplace
     Kontext "FindAndReplace"
        WholeWordsOnly.UnCheck
       Sleep 1
       SearchFor.SetText sTest
       Sleep 1
       SearchAll.Click
       Sleep 1
     FindAndReplace.Close
     Sleep 1

     EditSelectAll
     EditCopy

     if GetClipboardText <> "ABC"+sTest then warnlog "The content in the header isn't right, should be null"

    Call hCloseDocument

endcase

'-------------------------------------------------------------------------------------------

testcase tFormatPage_35

    Dim sTest as String

    sTest = "Test"

    PrintLog "- cursor should jump to footer when inserting a footer via menu"
    '/// cursor should jump to footer when inserting a footer via menu

    Call hNewDocument

     Call wTypeKeys "ABC"

    '/// Insert a footer via menu
     DocumentWriter.UseMenu
     MenuSelect(Menugetitemid(4))
     Sleep 2
     MenuSelect(Menugetitemid(9))
     Sleep 2
     MenuSelect(Menugetitemid(1))
     Sleep 2

    '/// type some test words - it should be in the footer
     Call wTypeKeys sTest

    '/// check if the text in footer is right
     Kontext
     EditSearchAndReplace
     Kontext "FindAndReplace"
       SearchFor.SetText sTest
       Sleep 1
       SearchAll.Click
       Sleep 1
     FindAndReplace.Close
     Sleep 1

     EditSelectAll
     EditCopy

     if GetClipboardText <> sTest then warnlog "The content in the footer isn't right, should be " &sTest &  " but get " & GetClipboardText

    '/// Remove the footer
     Kontext
     Kontext "DocumentWriter"
     DocumentWriter.UseMenu
     MenuSelect(Menugetitemid(4))
     Sleep 2
     MenuSelect(Menugetitemid(9))
     Sleep 2
     MenuSelect(Menugetitemid(1))
     Sleep 2

     Kontext "Active"
     if Active.Exists then
         if Active.GetRT = 304 then  Active.Yes
     else
          warnlog "There should be a warning message appear when turn off footer !"
     end if
     Sleep 1

    '/// Check if the content in footer is removed
     Kontext
     EditSearchAndReplace
     Kontext "FindAndReplace"
       SearchFor.SetText sTest
       Sleep 1
       SearchAll.Click
       Sleep 1

       Kontext "Active"
       if Active.Exists then
           if Active.GetRT = 304 then  Active.OK
       else
           warnlog "The content in footer should be removed!"
       end if

       Kontext "FindAndReplace"
     FindAndReplace.Close

    Call hCloseDocument

endcase

'-------------------------------------------------------------------------------------------

testcase tFormatPage_36

    Dim sTest as String

    sTest = "Test"

    PrintLog "- cursor shouldn't jump to footer when inserting a footer via checking 'Footer on'"
    '/// cursor shouldn't jump to footer when inserting a footer via  checking 'Footer on'

    Call hNewDocument

     Call wTypeKeys "ABC"

    '/// formatPage , tabpage footer
     fFormatPageWriter("TabKopfzeile")

    '/// + turn on footer (check Footer on)
       KopfzeileMitAbstand.Check
     TabKopfzeile.OK
     Sleep 1

    '/// type some test words - it should be in the footer
     Call wTypeKeys sTest

    '/// check if the text in footer is right
     Kontext
     EditSearchAndReplace
     Kontext "FindAndReplace"
       WholeWordsOnly.UnCheck
       Sleep 1
       SearchFor.SetText sTest
       Sleep 1
       SearchAll.Click
       Sleep 1
     FindAndReplace.Close
     Sleep 1

     EditSelectAll
     EditCopy

     if GetClipboardText <> "ABC"+sTest then warnlog "The content in the footer isn't right, should be null"

    Call hCloseDocument

endcase

'-------------------------------------------------------------------------------------------

testcase tFormatPage_37

    Dim sHeader as String

    Select case iSprache
        case 01   : sHeader = "Header"
        case 31   : sHeader = "Koptekst"
        case 33   : sHeader = "En-tête"
        case 34   : sHeader = "Encabezamiento"
        case 39   : sHeader = "Riga d'intestazione"
        case 46   : sHeader = "Sidhuvud"
        case 49   : sHeader = "Kopfzeile"
        case 55   : sHeader = "Cabeçalho"
        case 81   : sHeader = "ヘッダ"
        case 82   : sHeader = "머리글"
        case 86   : sHeader = "页眉"
        case 88   : sHeader = "頁首"
        case else : QAErrorLog "The test does not support the language " + iSprache
                    Goto endsub
    end select

    PrintLog "- Header must be applied to the current page style when inserting via menu"
    '/// Header must be applied to the current page style when inserting via menu

    Call hNewDocument

    '/// Insert a header via menu
     DocumentWriter.UseMenu
     MenuSelect(Menugetitemid(4))
     Sleep 2
     MenuSelect(Menugetitemid(9))
     Sleep 2
     MenuSelect(Menugetitemid(1))
     Sleep 2

    '/// Check if header can be seen in status bar
     Kontext "TableObjectbar"

     if Vorlage2.GetSelText <> sHeader then
         warnlog "The header can't be seen in status bar ! "
     end if

    Call hCloseDocument

endcase

'-------------------------------------------------------------------------------------------

testcase tFormatPage_38

    Dim sFooter as String

    Select case iSprache
        case 01   : sFooter = "Footer"
        case 31   : sFooter = "Voettekst"
        case 33   : sFooter = "Pied de page"
        case 34   : sFooter = "Pie de página"
        case 39   : sFooter = "Piè di pagina"
        case 46   : sFooter = "Sidfot"
        case 49   : sFooter = "Fußzeile"
        case 55   : sFooter = "Rodapé"
        case 81   : sFooter = "フッタ"
        case 82   : sFooter = "바닥글"
        case 86   : sFooter = "页脚"
        case 88   : sFooter = "頁尾"
        case else : QAErrorLog "The test does not support the language " + iSprache
                    Goto endsub
    end select

    PrintLog "- Footer must be applied to the current page style when inserting via menu"
    '/// Footer must be applied to the current page style when inserting via menu

    Call hNewDocument

    '/// Insert a footer via menu
     DocumentWriter.UseMenu
     MenuSelect(Menugetitemid(4))
     Sleep 2
     MenuSelect(Menugetitemid(10))
     Sleep 2
     MenuSelect(Menugetitemid(1))
     Sleep 2

    '/// Check if header can be seen in status bar
     Kontext "TableObjectbar"

     if Vorlage2.GetSelText <> sFooter then
         warnlog "The footer can't be seen in status bar ! "
     end if

    Call hCloseDocument

endcase

'-------------------------------------------------------------------------------------------

testcase tFormatPage_39

    Dim sTestFile as String
    Dim sColumn as String

    sTestFile  = Convertpath (gTesttoolpath + "writer\optional\input\formatpage\testColumnInPage.sxw")
    sColumn    = "3"

    PrintLog "- Set multi column via controls in page dialog"
    '/// Set multi column via controls in page dialog

    Call hNewDocument

    '/// Open test file testColumnInPage.sxw
    '/// + (The test file includes 2 pages , some text
    '/// + is in 1st page and another is in 2nd page)
     Call hFileOpen(sTestFile)
     Call sMakeReadOnlyDocumentEditable

    '/// formatPage , tabpage columns , change column to 3 via controls
     fFormatPageWriter("TabSpalten")
       Anzahl.TypeKeys "<Up>", 2
       Sleep 1
     TabSpalten.OK

    '/// Check if the text in 1st page in the 1st column
     Kontext
     EditSearchAndReplace
     Kontext "FindAndReplace"
       SearchFor.SetText "ABCD"
       Sleep 1
       SearchAll.Click
       Sleep 1
     FindAndReplace.Close

     Call wTypeKeys "<Home>"
     Call wTypeKeys "<Shift End>"
     EditCopy
     if Len(GetClipboardText) = 26 then warnlog "the first column isn't right!"

    '/// Check if the text in 2nd page in the 2nd column
     Kontext
     EditSearchAndReplace
     Kontext "FindAndReplace"
       SearchFor.SetText "This"
       Sleep 1
       SearchAll.Click
       Sleep 1
     FindAndReplace.Close

     Kontext "Navigator"
       if Not Navigator.Exists then ViewNavigator
       Kontext "NavigatorWriter"
       Sleep 1
       if Seitennummer.GetText <> "1" then warnlog "the second column isn't right!"
     fCloseNavigator

    printlog "  Close active document "
    Do Until GetDocumentCount = 0
        Call hCloseDocument
    Loop
endcase

'-------------------------------------------------------------------------------------------

testcase tFormatPage_40

    Dim sTestFile as String
    Dim sColumn as String

    sTestFile  = Convertpath (gTesttoolpath + "writer\optional\input\formatpage\testColumnInPage.sxw")
    sColumn    = "3"

    PrintLog "- Set multi column via spinfield in page dialog"
    '/// Set multi column via spinfield in page dialog

    Call hNewDocument

    '/// Open test file testColumnInPage.sxw
    '/// + (The test file includes 2 pages , some text is
    '/// + in 1st page and another is in 2nd page)
     Call hFileOpen(sTestFile)
     Call sMakeReadOnlyDocumentEditable

    '/// formatPage , tabpage columns , change column to 3 via spinfield
     fFormatPageWriter("TabSpalten")
       ColumnValueset.TypeKeys "<Right>"
       Sleep 1
       ColumnValueset.TypeKeys "<Right>"
       Sleep 1
       ColumnValueset.TypeKeys "<Right>"
       Sleep 1
     TabSpalten.OK

    '/// Check if the text in 1st page in the 1st column
     Kontext
     EditSearchAndReplace
     Kontext "FindAndReplace"
       SearchFor.SetText "ABCD"
       Sleep 1
       SearchAll.Click
       Sleep 1
     FindAndReplace.Close

     Call wTypeKeys "<Home>"
     Call wTypeKeys "<Shift End>"
     EditCopy
     if Len(GetClipboardText) = 26 then warnlog "the first column isn't right!"

    '/// Check if the text in 2nd page in the 2nd column
     Kontext
     EditSearchAndReplace
     Kontext "FindAndReplace"
       SearchFor.SetText "This"
       Sleep 1
       SearchAll.Click
       Sleep 1
     FindAndReplace.Close

     Kontext "Navigator"
       if Not Navigator.Exists then ViewNavigator
       Kontext "NavigatorWriter"
       Sleep 1
       if Seitennummer.GetText <> "1" then warnlog "the second column isn't right!"
     fCloseNavigator

    printlog "  Close active document "
    Do Until GetDocumentCount = 0
        Call hCloseDocument
    Loop
endcase

'-------------------------------------------------------------------------------------------

testcase tFormatPage_41

    Dim sTestFile as String
    Dim sColumn as String
    Dim sWidthColumn1 as String
    Dim sWidthColumn2 as String
    Dim sWidthColumn3 as String
    
    sTestFile     = Convertpath (gTesttoolpath + "writer\optional\input\formatpage\testColumnInPage2.sxw")
    sColumn       = "3"
    sWidthColumn1 = "2" + gSeperator + "00"
    sWidthColumn2 = "4" + gSeperator + "00"
    
    PrintLog "- create columns with different width "
    '/// create columns with different width
    
    Call hNewDocument
    
    '/// Open test file testColumnInPage2.sxw
    '/// + (The test file includes 2 pages , some text is
    '/// + in 1st page and another is in 2nd page)
    Call hFileOpen(sTestFile)
    Call sMakeReadOnlyDocumentEditable
    
    '/// Create 3 with different columns . formatPage ,
    '/// + tabpage columns , set 3 columns
    Call fFormatPageWriter("TabSpalten")
    Anzahl.TypeKeys "<Up>", 2
    Sleep 1
    AutomBreite.Uncheck
    Sleep 1
    Spaltenbreite1.SetText sWidthColumn1
    wait 500
    Spaltenbreite2.SetText sWidthColumn2
    wait 500
    Art.Select 1
    wait 500
    sWidthColumn3 = Spaltenbreite3.GetText
    wait 500
    TabSpalten.OK
    
    '/// Check if columns' width is right
    fFormatPageWriter("TabSpalten")
    if Left$(Spaltenbreite1.GetText,4) <> sWidthColumn1 then Warnlog "the column1's width isn't set correctly !"
    if Left$(Spaltenbreite2.GetText,4) <> sWidthColumn2 then Warnlog "the column2's width isn't set correctly !"
    if Spaltenbreite3.GetText <> sWidthColumn3 then Warnlog "the column3's width isn't set correctly !"
    TabSpalten.Cancel
    
    'detailed check for column1
    Kontext
    EditSearchAndReplace
    Kontext "FindAndReplace"
    SearchFor.SetText "ABCD"
    Sleep 1
    SearchAll.Click
    Sleep 1
    FindAndReplace.Close
    
    Call wTypeKeys "<Home>"
    Call wTypeKeys "<Shift End>"
    EditCopy
    if Len(GetClipboardText) > 8 then Warnlog "Something wrong in the column1"
    
    'detailed check for column2
    Kontext
    EditSearchAndReplace
    Kontext "FindAndReplace"
    SearchFor.SetText "ZYXW"
    Sleep 1
    SearchAll.Click
    Sleep 1
    FindAndReplace.Close
    
    Call wTypeKeys "<Home>"
    Call wTypeKeys "<Shift End>"
    EditCopy
    if Len(GetClipboardText) > 14 then Warnlog "Something wrong in the column2"
    
    printlog "  Close active document "
    Do Until GetDocumentCount = 0
        Call hCloseDocument
    Loop
endcase

'-------------------------------------------------------------------------------------------

testcase tFormatPage_42

    Dim sTestFile as String
    Dim sColumn as String
    Dim sWidthColumn1 as String
    Dim sWidthColumn2 as String
    Dim sWidthColumn3 as String
    Dim sSpacing1 as String
    Dim sSpacing2 as String

    sTestFile     = Convertpath (gTesttoolpath + "writer\optional\input\formatpage\testColumnInPage2.sxw")
    sColumn       = "3"

    sWidthColumn1 = "2" + gSeperator + "00" + gMeasurementUnit
    sWidthColumn2 = "4" + gSeperator + "00" + gMeasurementUnit
    sSpacing1     = "1" + gSeperator + "00" + gMeasurementUnit
    sSpacing2     = "2" + gSeperator + "00" + gMeasurementUnit

    PrintLog "- vary distance between columns "
    '/// vary distance between columns

    Call hNewDocument

    '/// Open test file testColumnInPage2.sxw
    '/// + (The test file includes 2 pages , some text is
    '/// + in 1st page and another is in 2nd page)
     Call hFileOpen(sTestFile)
     Call sMakeReadOnlyDocumentEditable

    '/// formatPage , tabpage columns , set 3 columns
     fFormatPageWriter("TabSpalten")
       Anzahl.TypeKeys "<Up>", 2
       Sleep 1
     TabSpalten.OK

    '/// vary distance between columns
     fFormatPageWriter("TabSpalten")
       AutomBreite.Uncheck
       Sleep 1
       Spaltenbreite1.SetText sWidthColumn1
       wait 500
       Spaltenbreite2.SetText sWidthColumn2
       wait 500
       Abstand12.SetText sSpacing1
       Sleep 2
       Abstand23.SetText sSpacing2
       Sleep 2
       Art.Select 1
       Sleep 1
       sWidthColumn2 = "3" + gSeperator + "00" + gMeasurementUnit
       sWidthColumn3 = Spaltenbreite3.GetText
       wait 500
     TabSpalten.OK

    '/// Check if columns' width and spacing are right
     fFormatPageWriter("TabSpalten")
       if Spaltenbreite1.GetText <> sWidthColumn1 then Warnlog "the column1's width isn't set correctly !"
       if Spaltenbreite2.GetText <> sWidthColumn2 then Warnlog "the column2's width isn't set correctly !"
       if Spaltenbreite3.GetText <> sWidthColumn3 then Warnlog "the column3's width isn't set correctly !"
       if Abstand12.GetText      <> sSpacing1     then Warnlog "the spacing1 isn't correct!"
       if Abstand23.GetText      <> sSpacing2     then Warnlog "the spacing1 isn't correct!"
     TabSpalten.Cancel

    'detailed check for column2
     Kontext
     EditSearchAndReplace
     Kontext "FindAndReplace"
       SearchFor.SetText "ZYXW"
       Sleep 1
       SearchAll.Click
       Sleep 1
     FindAndReplace.Close

     Call wTypeKeys "<Home>"
     Call wTypeKeys "<Shift End>"
     EditCopy
     if Len(GetClipboardText) > 11 then Warnlog "Somthing wrong in the column2"

    printlog "  Close active document "
    Do Until GetDocumentCount = 0
        Call hCloseDocument
    Loop
endcase

'-------------------------------------------------------------------------------------------

testcase tFormatPage_43

    Dim sColumn as String
    Dim sHeight as String
    Dim iLine as Integer
    Dim iPosition as Integer

    sColumn        = "2"
    sHeight        = "50%"
    iLine          = 2
    iPosition      = 2

    PrintLog "- seperator line between columns - change height/position of seperator"
    '/// seperator line between columns - change height/position of seperator

    Call hNewDocument

    '/// formatPage , tabpage columns , set 2 columns
     fFormatPageWriter("TabSpalten")
       Anzahl.TypeKeys "<Up>"
       Sleep 1
     TabSpalten.OK

    '/// + Change height/position of seperator
     fFormatPageWriter("TabSpalten")
       Art.Select      iLine
       Sleep 1
       Hoehe.SetText   sHeight
       Sleep 1
       Position.Select iPosition
       Sleep 1
     TabSpalten.OK

    '/// Check if height/position of seperator is changed
     fFormatPageWriter("TabSpalten")
       if Hoehe.GetText        <> sHeight    then Warnlog "Height isn't correct!"
       Sleep 1
       if Position.GetSelIndex <> iPosition  then Warnlog "Position isn't correct!"
     TabSpalten.Cancel

    Call hCloseDocument

endcase

'-------------------------------------------------------------------------------------------

testcase tFormatPage_44

    Dim sColumn as String
    Dim i as Integer

    sColumn = "2"

    PrintLog "- seperator line between columns - different line formats "
    '/// seperator line between columns - different line formats

    Call hNewDocument

    '/// formatPage , tabpage columns , set 2 columns
     fFormatPageWriter("TabSpalten")
       Anzahl.TypeKeys "<Up>"
       Sleep 1
     TabSpalten.OK

    '/// + Change seperator line style

    '/// Check if height/position  of seperator is changed

     fFormatPageWriter("TabSpalten")
     for i = 1 to Art.GetItemCount
         if i > 1 then fFormatPageWriter("TabSpalten")
           Art.Select  i
           Sleep 1
         TabSpalten.OK

         fFormatPageWriter("TabSpalten")
           if Art.GetSelIndex <> i  then Warnlog "Seperator line isn't correct!"
         TabSpalten.Cancel
     next i

    Call hCloseDocument

endcase

'-------------------------------------------------------------------------------------------

testcase tFormatPage_45

    Dim sTestFile as String
    Dim sTestText as String
    Dim iTestTextLength as Integer

    sTestFile     = Convertpath (gTesttoolpath + "writer\optional\input\formatpage\testSeparatorLine.sxw")
    sTestText     = "llll"

    PrintLog "- shouldn't exist spacing after remove separator line"
    '/// shouldn't exist spacing after remove separator line

    Call hNewDocument

    '/// Open test file testSeparatorLine.sxw
    '/// + (The test file includes 6 columns , some
    '/// + test text lllll... is in 2nd column
     Call hFileOpen(sTestFile)
     Call sMakeReadOnlyDocumentEditable

     Kontext
     EditSearchAndReplace
     Kontext "FindAndReplace"
       SearchFor.SetText sTestText
       Sleep 1
       SearchAll.Click
       Sleep 1
     FindAndReplace.Close

     Call wTypeKeys "<Home>"
     Call wTypeKeys "<Shift End>"
     EditCopy
     iTestTextLength = Len(GetClipboardText)

    '/// formatPage , tabpage columns, set Separator line to 5pt
     fFormatPageWriter("TabSpalten")
       Art.Select  Art.GetItemCount
       Sleep 1
     TabSpalten.OK

     Kontext
     EditSearchAndReplace
     Kontext "FindAndReplace"
       SearchFor.SetText sTestText
       Sleep 1
       SearchAll.Click
       Sleep 1
     FindAndReplace.Close

     Call wTypeKeys "<Home>"
     Call wTypeKeys "<Shift End>"
     EditCopy
     if iTestTextLength <= Len(GetClipboardText) then Warnlog "Seperator line isn't correct!"

    '/// + set separator line to null
     fFormatPageWriter("TabSpalten")
       Art.Select  1
       Sleep 1
     TabSpalten.OK

    '/// Check if column is covered to former
     Kontext
     EditSearchAndReplace
     Kontext "FindAndReplace"
       SearchFor.SetText sTestText
       Sleep 1
       SearchAll.Click
       Sleep 1
     FindAndReplace.Close

     Call wTypeKeys "<Home>"
     Call wTypeKeys "<Shift End>"
     EditCopy
     if iTestTextLength <> Len(GetClipboardText) then Warnlog "The column isn't covered to former! #112632"

    printlog "  Close active document "
    Do Until GetDocumentCount = 0
        Call hCloseDocument
    Loop
endcase

'-------------------------------------------------------------------------------------------

testcase tFormatPage_46

    Dim sColumn as String
    Dim sWidthColumn1 as String
    Dim sWidthColumn2 as String
    Dim sWidthColumn3 as String
    Dim sSpacing1 as String
    Dim sSpacing2 as String
    Dim iLine as Integer
    Dim sLineHeight as String
    Dim iLinePosition as Integer

    sColumn       = "3"
    sWidthColumn1 = "2" + gSeperator + "00" + gMeasurementUnit
    sWidthColumn2 = "4" + gSeperator + "00" + gMeasurementUnit
    sSpacing1     = "0" + gSeperator + "30" + gMeasurementUnit
    sSpacing2     = "0" + gSeperator + "50" + gMeasurementUnit
    iLine         = 4
    sLineHeight   = "50%"
    iLinePosition = 2

    PrintLog "- Check if the settings are kept after reopening the file"
    '/// Check if the settings are kept after reopening the file

    Call hNewDocument

    '/// Format/Page / columns , do some configurations

    'set 3 columns
     fFormatPageWriter("TabSpalten")
       Anzahl.TypeKeys "<Up>", 2
       Sleep 1
     TabSpalten.OK

    'UnCheck autowidth , set different width to 3 columns
     fFormatPageWriter("TabSpalten")
       AutomBreite.Uncheck
       Sleep 1
       Abstand12.SetText      sSpacing1
       Sleep 1
       Abstand23.SetText      sSpacing2
       Sleep 1
       Spaltenbreite1.SetText sWidthColumn1
       wait 500
       Spaltenbreite2.SetText sWidthColumn2
       wait 500
       Art.Select             iLine
       wait 500
       Hoehe.SetText          sLineHeight
       Sleep 1
       Position.Select        iLinePosition
       Sleep 1
       sWidthColumn3 = Spaltenbreite3.GetText
       wait 500
     TabSpalten.OK

    '/// Save the file , close the file and reopen it
     Call hFileSaveAsWithFilterKill(gOfficepath + "user\work\tFormatPage_46.odt", "writer8")
     Call hCloseDocument

     Call hNewDocument
     Call hFileOpen(gOfficepath + "user\work\tFormatPage_46.odt")

    '/// Check if the setting are still kept
     fFormatPageWriter("TabSpalten")
       if AutomBreite.Ischecked  =  TRUE          then Warnlog "Autowidth shouldn't be checked !"
       if Abstand12.GetText      <> sSpacing1     then Warnlog "Spacing1 isn't right , should be " &sSpacing1 & " but get " &Abstand12.GetText
       if Abstand23.GetText      <> sSpacing2     then Warnlog "Spacing2 isn't right , should be " &sSpacing2 & " but get " &Abstand23.GetText
       if Spaltenbreite1.GetText <> sWidthColumn1 then Warnlog "column1 isn't right , should be " &sWidthColumn1 & " but get " &Spaltenbreite1.GetText
       if Spaltenbreite2.GetText <> sWidthColumn2 then Warnlog "column1 isn't right , should be " &sWidthColumn2 & " but get " &Spaltenbreite2.GetText
       if Spaltenbreite3.GetText <> sWidthColumn3 then Warnlog "column1 isn't right , should be " &sWidthColumn2 & " but get " &Spaltenbreite3.GetText
       if Art.GetSelIndex        <> iLine         then Warnlog "Line style isn't right !"
       if Hoehe.GetText          <> sLineHeight   then Warnlog "Height isn't correct!"
       if Position.GetSelIndex   <> iLinePosition then Warnlog "Position isn't correct!"
     TabSpalten.Cancel

    Call hCloseDocument

endcase

'-------------------------------------------------------------------------------------------

testcase tFormatPage_47

    Dim sWidth as String
    Dim sLeft as String  ,  sRight as String  ' set margin size
    Dim sWidth1 as String  ,  sWidth2 as String  ,  sWidth3 as String

    sWidth     = "20" + gSeperator + "00" + gMeasurementUnit
    sLeft      = "2"  + gSeperator + "00" + gMeasurementUnit
    sRight     = "3"  + gSeperator + "00" + gMeasurementUnit

    PrintLog "- Test Travel through the 5 columns preset boxes "
    '/// Test Travel through the 5 columns preset boxes

    Call hNewDocument

    'Set page's width to 20cm and left margin: 3cm , right margin : 2cm
     fFormatPageWriter("TabSeite")
       Breite.SetText  sWidth
       Wait 500
       Links.SetText   sLeft
       Wait 500
       Rechts.SetText  sRight
       Wait 500
     TabSeite.OK

    '/// formatPage , tabpage columns
     fFormatPageWriter("TabSpalten")

      '/// - Select fisrt box ==> only 1 column
       ColumnValueset.TypeKeys "<Right>"
       Sleep 1
       if Len(Spaltenbreite1.GetText) <> 0     then Warnlog "width1 shouldn't be writable when there is only 1 column !"
       Sleep 1

      '/// - Select second box ==> 2 columns ( 1st = 2rd )
       ColumnValueset.TypeKeys "<Right>"
       Sleep 1
       sWidth1     = "7" + gSeperator + "50" + gMeasurementUnit
       sWidth2     = "7" + gSeperator + "50" + gMeasurementUnit
       if Spaltenbreite1.GetText <> sWidth1 then Warnlog "2.width1 should be " &sWidth1 & " but get " &Spaltenbreite1.GetText
       if Spaltenbreite2.GetText <> sWidth2 then Warnlog "2.width2 should be " &sWidth2 & " but get " &Spaltenbreite2.GetText
       if AutomBreite.IsChecked  <> TRUE    then Warnlog "2.Autowidth should be checked !"

      '/// - Select third box ==> 3 columns ( 1st = 2rd = third )
       ColumnValueset.TypeKeys "<Right>"
       Sleep 1
       sWidth1     = "5" + gSeperator + "00" + gMeasurementUnit
       sWidth2     = "5" + gSeperator + "00" + gMeasurementUnit
       sWidth3     = "5" + gSeperator + "00" + gMeasurementUnit
       if Spaltenbreite1.GetText <> sWidth1 then Warnlog "3.width1 should be " &sWidth1 & " but get " &Spaltenbreite1.GetText
       if Spaltenbreite2.GetText <> sWidth2 then Warnlog "3.width2 should be " &sWidth2 & " but get " &Spaltenbreite2.GetText
       if Spaltenbreite3.GetText <> sWidth3 then Warnlog "3.width3 should be " &sWidth2 & " but get " &Spaltenbreite3.GetText
       if AutomBreite.IsChecked  <> TRUE    then Warnlog "3.Autowidth should be checked !"

      '/// - Select forth box ==> 2 columns ( 1st : 2rd = 2:1 )
       ColumnValueset.TypeKeys "<Right>"
       Sleep 1
       sWidth1     = "10" + gSeperator + "00" + gMeasurementUnit
       sWidth2     = "5"  + gSeperator + "00" + gMeasurementUnit
       if Spaltenbreite1.GetText <> sWidth1 then Warnlog "4.width1 should be " &sWidth1 & " but get " &Spaltenbreite1.GetText
       if Spaltenbreite2.GetText <> sWidth2 then Warnlog "4.width2 should be " &sWidth2 & " but get " &Spaltenbreite2.GetText
       if AutomBreite.IsChecked  =  TRUE    then Warnlog "4.Autowidth should be Unchecked !"

      '/// - Select fifth box ==> 2 columns ( 1st : 2rd = 1:2 )
       ColumnValueset.TypeKeys "<Right>"
       Sleep 1
       sWidth1     = "5"  + gSeperator + "00" + gMeasurementUnit
       sWidth2     = "10" + gSeperator + "00" + gMeasurementUnit
       if Spaltenbreite1.GetText <> sWidth1 then Warnlog "5.width1 should be " &sWidth1 & " but get " &Spaltenbreite1.GetText
       if Spaltenbreite2.GetText <> sWidth2 then Warnlog "5.width2 should be " &sWidth2 & " but get " &Spaltenbreite2.GetText
       if AutomBreite.IsChecked  =  TRUE    then Warnlog "5.Autowidth should be Unchecked !"

      '/// - Press right key again, will get the first box
       ColumnValueset.TypeKeys "<Right>"
       Sleep 1
       if Anzahl.GetText <> "1" then Warnlog "The focus should be in the leftest box !"
       Sleep 1

     TabSpalten.Cancel

    Call hCloseDocument

endcase

'-------------------------------------------------------------------------------------------