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
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
| ' Gambas class file
STATIC PUBLIC hLock AS Stream '<------------------------------------- fichier lock
PRIVATE $sSigne AS STRING '<---------------------------------------- signe des opérations PRIVATE $sText AS STRING '<---------------------------------------' champ de transfert
PRIVATE $iVirgule AS INTEGER '<------------------------------------ pour suivre la virgule PRIVATE $iPosVirgule AS INTEGER '<--------------------------------- position de la virgule dans le mot PRIVATE $iLongMot AS INTEGER '<------------------------------------ longeur du mot PRIVATE $iNextCharPos AS INTEGER '<--------------------------------- position du prochain caractère PRIVATE $iSigne AS INTEGER '<---------------------------------------- décompte des signes PRIVATE $iCompte AS INTEGER '<------------------------------------- décompte des séquences d'opérations PRIVATE $indexNi AS INTEGER '<------------------------------------- index des Ni PRIVATE $indexXi AS INTEGER '<------------------------------------- index des Xi
PRIVATE $fNombre AS FLOAT '<---------------------------------------- nombre affiché PRIVATE $fMemNombre AS FLOAT '<------------------------------------- nombre mémorisé PRIVATE $fNombreMemoire AS FLOAT '<---------------------------------- nombre conservé en mémoire PRIVATE $fVariance AS FLOAT '<--------------------------------------- variance PRIVATE $fEcartype AS FLOAT '<--------------------------------------- écart type PRIVATE $fMoy AS FLOAT '<------------------------------------------ moyenne PRIVATE $fArg AS FLOAT '<-------------------------------------------- argument calculé du complexe z PRIVATE $fModule AS FLOAT '<----------------------------------------- module calculé du complexe z PRIVATE $fSomNi AS FLOAT '<------------------------------------------ somme des Ni
PRIVATE $Z AS NEW Complex '<--------------------------------------- nombre complexe
PRIVATE $sMemSigne AS NEW String[] '<------------------------------- tableau des signes d'opération
PRIVATE $ListQuantites AS NEW Float[] '<---------------------------- quantités d'une série statistique PRIVATE $ListDonnees AS NEW Float[] '<------------------------------- données d'une série statistique
PRIVATE $bEgal AS BOOLEAN '<---------------------------------------- Bouton égal enfoncé PRIVATE $bEgalStat AS BOOLEAN '<------------------------------------ Bouton btnStat4 égal enfoncé PRIVATE $bChiffres AS BOOLEAN '<------------------------------------- chiffres rentrés PRIVATE $bDrap AS BOOLEAN '<------------------------------ le drapeau est levé quand calcul intermédiaire PRIVATE $bAjout AS BOOLEAN '<---------------------------------------- ajout d'un chiffre à un nombre affiché PRIVATE $bStat AS BOOLEAN'<------------------------------------------ mode statistique PRIVATE $bChange AS BOOLEAN'<---------------------------------------- changement d'état pour tbAffichage PRIVATE $bParent1 AS BOOLEAN '<------------------------------------- affichage parenthèse ouvrante PRIVATE $bParent2 AS BOOLEAN '<------------------------------------- affichage parenthèse fermante PRIVATE $bSigne AS BOOLEAN '<----------------------------------------' signe rentré PRIVATE $bTouche AS BOOLEAN '<-------------------------------------' touche enfoncée ou non
PROPERTY Resultat AS STRING USE $sTransfText '<------------ définition propriété pour récupérer le résultat
EVENT EnvoiResultat(Value AS STRING) '<------------------ définition d'un évènement pour récupérer le résultat
'<--------------------------------------------------------- création d'un Group pour les chiffres nommé Chiffres '<--------------------------------------------------------- création d'un Group pour les opérations nommé Signes
''<------------------------------------- Début de Private ----------------------------------------------
PRIVATE SUB AfficheFormat() '<------------------------------------- Affichage format europa
DIM fNbre AS FLOAT '<------------------------------------------- variable locale
IF IsFloat(tbAffichage.text) THEN fNbre = CFloat(Val(tbAffichage.Text)) '<------------------------------- initialisation de la variable locale IF Abs(Val(tbAffichage.Text)) > 999 THEN tbAffichage.Text = Format(fNbre, "-#,###.###############") ELSE tbAffichage.Text = Str(fNbre) ENDIF ENDIF
CATCH Message.Error(Str(Error.Class) & ", code : " & Error.Code & ", " & Str(Error.Backtrace) & " à " Error.Wher " | Error.Text)
END
PRIVATE SUB AffichResult() '<---------------------------------------- comme indiqué
tbAffichage.Text = Str($fMemNombre)
END
PRIVATE SUB posVirgule(monObjet AS OBJECT) '<------------------------ détermination longueur de mot et position de virgule
SELECT CASE System.Language CASE "en_US.UTF-8" $iPosVirgule = String.RInStr(monObjet.Text, ".", 0) $iNextCharPos = $iPosVirgule + 1 $iLongMot = String.Len(monObjet.Text) CASE ELSE '<------------------------------------------------- pour Europa $iPosVirgule = String.RInStr(monObjet.Text, ",", 0)'<------- pour déterminer la position de la virgule $iNextCharPos = $iPosVirgule + 1 '<----------------------- position du prochain caractère $iLongMot = String.Len(monObjet.Text) '<------------------ longeur du mot ' Print $iLongMot; "~~"; Len(monObjet.Text) <--------------- contrôle du bug sur format qui ajoute des espaces devant le point décimal END SELECT
END
PRIVATE SUB zero() '<---------------------------------------------- pour ajouter un chiffre après un calcul
IF IsNull(tbAffichage.Text) THEN RETURN
IF IsFloat(tbAffichage.text) THEN IF $fNombre = 0 THEN $fMemNombre = Val(tbAffichage.Text) ENDIF IF $fMemNombre = 0 THEN $fNombre = Val(tbAffichage.Text) ENDIF ELSE Message(("Nombre trop grand !")) btnCancel_Click() ' tbAffichage.Text = "0" '<---------------------------------- si on veut l'afficher ENDIF
CATCH Message.Error(Str(Error.Class) & ", code : " & Error.Code & ", " & Str(Error.Backtrace) & " à " Error.Wher " | Error.Text)
END
PRIVATE SUB testAjout() '<------------------------------------------- vérification d'un ajout de chiffre
IF $bAjout = TRUE THEN '<---------------------------------------- obtenu après btnEgal_Click( $fMemNombre = 0 $iSigne = 0 $bAjout = FALSE ENDIF
CATCH Message.Error(Str(Error.Class) & ", code : " & Error.Code & ", " & Str(Error.Backtrace) & " à " Error.Wher " | Error.Text)
END
PRIVATE SUB Insertion() '<------------------------------------------- insertion des valeurs dans tableau de float
IF IsNull(tbAffichage.text) THEN RETURN
IF IsFloat(tbAffichage.Text) THEN $fNombre = CFloat(Val(tbAffichage.Text)) posVirgule(tbAffichage) '<------------------------------------- position de la virgule dans le mot ELSE Message.Info(("Erreur de format !") & gb.crlf & ("Corriger l'erreur !")) $bChiffres = FALSE ENDIF
CATCH Message.Error(Str(Error.Class) & ", code : " & Error.Code & ", " & Str(Error.Backtrace) & " à " Error.Wher " | Error.Text)
END
PRIVATE SUB CalcIntermed() '<---------------------------------------- résultat intermédiaire
tbAffichage.Foreground = Color.Red' <----------------------------- affichage en rouge AffichResult() '<------------------------------------------------ comme indiqué AfficheFormat() '<---------------------------------------------- Affichage format europa $bDrap = TRUE '<------------------------------------------------- tant que pas de Chiffres saisis
END
PRIVATE SUB Operations(Signe AS STRING)
SELECT CASE Signe '<---------------------------------------------- les opérations à faire en fonction du signe cliqué CASE "+" $fMemNombre += $fNombre CASE "-" $fMemNombre -= $fNombre CASE "x" '<---------------------------------------------------- signe multiplier $fMemNombre *= $fNombre '<--------------' ne plante pas suite à calcul intermédiaire si $iSigne = 0 CASE "*" '<---------------------------------------------------- signe multiplier $fMemNombre *= $fNombre CASE "/" IF $fNombre <> 0 THEN $fMemNombre /= $fNombre CASE "Mod" $fMemNombre = CInteger($fMemNombre) MOD CInteger($fNombre) '<-------- attention que les entiers naturels CASE "Div" $fMemNombre = CInteger($fMemNombre) DIV CInteger($fNombre) '<-------- attention que les entiers naturels CASE Chr(92) '\ ou Div $fMemNombre = CInteger($fMemNombre) \ CInteger($fNombre) '<---------- attention que les entiers naturels CASE "x^y" '<------------------------------------------------- pour saisie à la souris $fMemNombre ^= $fNombre CASE "^" '<---------------------------------------------------- pour saisie au clavier $fMemNombre ^= $fNombre END SELECT
impression() '<------------------------------------------------- récupération du résultat pour transfert AlternAffich()
$fNombre = 0 '<---------' efface la valeur en sortie si commentée valeur utilisée par calcul suivant
CATCH btnCancel_Click() Message.Error(Str(Error.Class) & ", code : " & Error.Code & ", " & Str(Error.Backtrace) & " à " Error.Wher " | Error.Text)
END
PRIVATE SUB AlternAffich() '<---------------------------------------- affichage des calculs
taCalcul.Visible = TRUE taCalcul.Foreground = Color.Red
IF $bEgal = FALSE THEN IF $bDrap = FALSE THEN $fNombre = $fMemNombre Insertion() ENDIF $iCompte += 1 IF $iCompte = 1 THEN '<---------------------------------------- si c'est le premier signe IF $sMemSigne[$iSigne] = "x^y" THEN taCalcul.Text &= "| (" & Str($fNombre) & " " & "^" & " " ELSE taCalcul.Text &= "| (" & Str($fNombre) & " " & $sMemSigne[$iSigne] & " " ENDIF ELSE IF $sMemSigne[$iSigne] = "x^y" THEN taCalcul.Text &= Str($fNombre) & ")" & " = " & Str($fMemNombre) & " " & "^" & " " ELSE taCalcul.Text &= Str($fNombre) & ")" & " = " & Str($fMemNombre) & " " & $sMemSigne[$iSigne] & " " ENDIF ENDIF ELSE taCalcul.Text &= (Str($fNombre) & ")" & " = " & Str($fMemNombre)) & " " ENDIF
END
PRIVATE SUB impression() '<---------------------------------------- pour transfert du résultat au travers d'un contrôle
IF $bEgal = FALSE THEN $sTransfText &= $fNombre & " " & $sMemSigne[$iSigne] & " " ELSE $sTransfText &= $fNombre & " = " & Str($fMemNombre) '<--------- pour récupérer le résultat $sTransfText &= gb.crlf & "-----------------------------" & gb.crlf ENDIF
END
''<------------------------------------------------------------------ Fin de Private ---------------------------------------------
PUBLIC SUB _new()
' Dim iCount As Integer ' Dim sMessage As String ' Dim hScreen As Screen
TRY hLock = LOCK User.home & "/." & Application.Title & "-" & Application.Version & "-lock" IF ERROR THEN Message.Title = ("Attention!") Message(("Une seule instance du Progamme est possible.")) QUIT ENDIF
' sMessage = ("<hr> <b> Propriétés des écrans branchés </b> <hr>") ' For Each hScreen In Screens ' sMessage &= ("Écran ") & Str(iCount) & (" hauteur ") & " = " & Screens[iCount].Height & " Pixel " ' sMessage &= ("<br> écran ") & Str(iCount) & (" largeur ") & " = " & Screens[iCount].Width & " Pixel " ' sMessage &= ("<br> écran ") & Str(iCount) & (" coordonnée gauche ") & " = " & Screens[iCount].X & " Pixel " ' sMessage &= ("<br> écran ") & Str(iCount) & (" coordonnée supérieure ") & " = " & Screens[iCount].y & " Pixel " "" ' sMessage &= "< hr >" ' Inc iCount ' Next ' Message.Info(sMessage) ' ' If Screens.Count > 1 Then ' Me.Move(Screens[1].x + Screens[1].Width / 2 - 180, Screens[1].y + Screens[1].Height / 2 - 231) ' ' Me.Move(Screens[1].x + Screens[1].Width / 2 - Me.w / 2, Screens[1].y + Screens[1].Height / 2 - Me.H / 2) ' Else ' Me.Move(Screens[0].x + Screens[0].Width / 2 - 180, Screens[0].y + Screens[0].Height / 2 - 231) ' Endif ' ' Me.Move((Screens[0].Width) / 2 - 180, (Screens[0].Height) / 2 - 170)
END
PUBLIC SUB Form_Open() '<------------------------------------------- initialisation des variables globales privées $ ou non
$iVirgule = 0 $iPosVirgule = 0 $iLongMot = 0 $iNextCharPos = 0 $iSigne = 0 $iCompte = 0
$fNombre = 0 $fMemNombre = 0 $fNombreMemoire = 0
' btnStat0.visible = False ' btnStat1.visible = False ' btnStat2.visible = False ' btnStat3.visible = False ' btnstat4.visible = False
$z = 0
$sTransfText = "" $sSigne = "" $sMemSigne.Clear
ME.Text = Application.Title & " " & Application.Version & " | " & "(" & ME.W & " , " & ME.h & ")"
IF Left(System.Language, 2) <> "en" THEN btnVirgule.Text = "," ELSE btnVirgule.Text = "." ENDIF
rbNormale.Value = TRUE TypeCalc_Click()
$bEgalStat = FALSE $bEgal = FALSE $bChiffres = FALSE $bAjout = FALSE $bChange = FALSE $bParent1 = FALSE $bParent2 = FALSE
END
PUBLIC SUB btnEffacer_Click() '<------------------------------------- effacement d'un caractère pour correction
DIM fNbre AS FLOAT '<------------------------------------------- variable locale
IF IsNull(tbAffichage.text) THEN RETURN
tbAffichage.SetFocus
IF IsFloat(tbAffichage.text) THEN fNbre = Val(tbAffichage.Text) '<------------------------------- initialisation variable locale tbAffichage.Text = Format(fNbre, ".################") '<------- format US ENDIF
tbAffichage.Text = String.Mid(tbAffichage.Text, 1, -1) posVirgule(tbAffichage) '<---------------------------------------- permet le recalcul de la longueur du "mot"
IF $iLongMot > -1 THEN IF $iLongMot = 0 THEN tbAffichage.Text = "0" IF $iPosVirgule = $iLongMot THEN $iVirgule = 0 '<------------- on réinitialise iVirgule quand Insertion() '<------------------------------------------------- insertion de la valeur dans tableau ELSE RETURN '<---------------------------------------------------- tant que la longueur est positive ENDIF
testAjout() '<---------------------------------------------------- vérification d'un ajout de chiffre
CATCH Message.Error(Str(Error.Class) & ", code : " & Error.Code & ", " & Str(Error.Backtrace) & " à " Error.Wher " | Error.Text)
END
PUBLIC SUB Chiffres_Click() '<------------------------------------- évènement _Click() pour le Group Chiffres
IF $bDrap THEN '<------------------------------------------------- le drapeau est levé quand calcul intermédiaire tbAffichage.Clear '<------------------------------------------- effacement du tbAffichage $bDrap = NOT $bDrap '<---------------------------------------- bascule du drapeau tbAffichage.Foreground = Color.Black '<---------------------- on revient à la couleur de police noire ENDIF
IF LAST.text = "." OR LAST.text = "," THEN $iVirgule += 1 '<------ une seule virgule possible
IF $iVirgule > 1 THEN $iVirgule = 1 ELSE tbAffichage.Text &= LAST.text '<------------------------------- concaténation dans textbox1 Insertion() '<------------------------------------------------- insertion de la valeur dans tableau $bChiffres = TRUE '<------------------------------------------- indique qu'un chiffre a été rentré testAjout() '<------------------------------------------------- vérification d'un ajout de chiffre ENDIF
CATCH Message.Error(Str(Error.Class) & ", code : " & Error.Code & ", " & Str(Error.Backtrace) & " à " Error.Wher " | Error.Text)
$bTouche = FALSE '<--------------------------' enfoncement de la touche bascule($sText) $bTouche = TRUE '<--------------------------' enfoncement de la touche bascule($sText) $sText = ""
END
PUBLIC SUB tbAffichage_Change()
Object.Lock(tbAffichage) '<------------------------------------- évite le déclenchement de l'évnènement
IF tbAffichage.Text = Clipboard.Paste() AND IsFloat(tbAffichage.Text) THEN IF $bDrap THEN '<---------------------------------------------- le drapeau est levé quand calcul intermédiaire tbAffichage.Clear '<---------------------------------------- effacement du tbAffichage $bDrap = NOT $bDrap '<------------------------------------- bascule du drapeau tbAffichage.Foreground = Color.Black '<------------------- on revient à la couleur de police noire ENDIF $iVirgule += 1 Insertion() '<---------------------------------------' insertion de la valeur dans tableau $bChiffres = TRUE '<---------------------------------' indique qu'un chiffre a été rentré ' $bDrap = False '<----------------------------------' pour ne pas bloquer l'opération éventuelle testAjout() '<---------------------------------------' vérification d'un ajout de c ELSE IF NOT IsFloat(tbAffichage.Text) THEN tbAffichage.Clear ENDIF ENDIF $bChange = TRUE
Object.Unlock(tbAffichage) '<---------------------------' libère l'évènement
END
PUBLIC SUB Signes_Click() '<------------------------------' évènement _Click() pour le Group Signes
IF $bChiffres = FALSE THEN RETURN '<------------------' on n'entre pas si pas chiffres ' If $bSigne = True Then Return '<--------------------' pour éviter l'affichage redondant de la même opération
$sSigne = LAST.Text '<----------------------------------' on récupère signe pour les opérations
IF $iSigne = 0 THEN '<---------------------------------' ajout dans tableau premier signe (toujours + ) $sMemSigne.Add("+", 0) ENDIF
$iSigne += 1 '<------------------------------------------------- incrément de 1 $sMemSigne.Add($sSigne, $iSigne) '<------------------------------- inscription du signe dans tableau ' If $sSigne = "Mod" Or $sSigne = "Div" Or $sSigne = Chr(92) And Not IsInteger(tbAffichage.text) Then tlCalcul.Text = ("Ne prend que la partie entère !") IF $sSigne = "Mod" OR $sSigne = "Div" OR $sSigne = Chr(92) AND NOT IsInteger(tbAffichage.text) THEN IF LAST = btnPuis OR LAST.tag = btnpuis.Tag THEN tbAffichage.Text = Str(Int(Val(tbAffichage.text))) Insertion() ENDIF ENDIF
Operations($sMemSigne[$iSigne - 1]) '<---------------------------- opération antérieure ( -1 ) tbAffichage.Clear '<---------------------------------------------- effacement pour saisie suivante
IF $bChange = FALSE THEN CalcIntermed() ENDIF
IF $bAjout = TRUE THEN $bAjout = FALSE '<---------------' bascule drapeau boolean $iVirgule = 0 '<---------------------------------------' réinitialisation du compteur pour un nouveau nombre ' $bSigne = True '<---------------------------' pour éviter l'affichage redondant de la même opération
CATCH Message.Error(Str(Error.Class) & ", code : " & Error.Code & ", " & Str(Error.Backtrace) & " à " Error.Wher " | Error.Text)
$bTouche = FALSE '<--------------------------' enfoncement de la touche bascule($sText) $bTouche = TRUE '<--------------------------' enfoncement de la touche bascule($sText) $sText = ""
END
PUBLIC SUB btnEgal_Click() '<------------------------------' évènement _Click() lors de l'appui sur "="
IF $iSigne = 0 THEN RETURN
tbAffichage.SetFocus
IF $bDrap = TRUE THEN Message.Title = ("Une opération est en cours" IF Message.Question(("Que voulez-vous faire ?"), ("Annuler"), ("Poursuivre")) = 2 THEN RETURN ELSE $fNombre = $fMemNombre Insertion() $fMemNombre = 0 $iSigne = 0 tbAffichage.Foreground = Color.Black RETURN ENDIF ENDIF '<------------------------------------------------------' sinon $bDrap = False $bEgal = TRUE '<---------------------------------------' permet l'impression du résultat voir impression(') $bAjout = TRUE '<-----------------------------' permet d'ajouter un chiffre (ou plus) au nombre affiché
Operations($sMemSigne[$iSigne]) '<---------------------' récupération du résultat AffichResult() '<--------------------------------------' comme indiqué AfficheFormat() '<------------------------------------' Affichage format europa
$iSigne = 0 '<--------------------------------' remise à zéro pour saisie initiale '$sTransfText = Str($fMemNombre)'<------------'pour récupérer que valeur float du résultat, voir impression() $sMemSigne.Clear $iVirgule = 0 '<--------------------------------------' réinitialisation iVirgule $bEgal = FALSE $iCompte = 0 Label1.Visible = FALSE Label1.Text = ""
$bSigne = FALSE '<--------------------------' pour éviter l'affichage redondant de la même opération
RAISE EnvoiResultat($sTransfText) '<------------------' on lève l'évènement, utile pour composant ou contrôle
CATCH Message.Error(Str(Error.Class) & ", code : " & Error.Code & ", " & Str(Error.Backtrace) & " à " Error.Wher " | Error.Text)
END
PUBLIC SUB btnRelatif_Click() '<---------------------------' changement de signe relatif
DIM fNbre AS FLOAT '<---------------------------------' variable locale
IF tbAffichage.Text = "" THEN RETURN
IF IsFloat(tbAffichage.text) THEN fNbre = Val(tbAffichage.Text)'<----------------------' initialisation variable locale tbAffichage.Text = Format(fNbre, ".################")'<-------- format US tbAffichage.Text = Str(-1 * fNbre) '<---------------' opposé
Insertion() '<---------------------------------------' insertion de la valeur dans tableau $bChiffres = TRUE '<---------------------------------' indique qu'un chiffre a été rentré testAjout() '<---------------------------------------' vérification d'un ajout de c
ELSE RETURN ENDIF
' zero() '<-------------------------------------------' pour ajouter un chiffre après un calcul
CATCH Message.Error(Str(Error.Class) & ", code : " & Error.Code & ", " & Str(Error.Backtrace) & " à " Error.Wher " | Error.Text)
$bTouche = FALSE '<--------------------------' enfoncement de la touche bascule($sText) $bTouche = TRUE '<--------------------------' enfoncement de la touche bascule($sText) $sText = ""
END
PRIVATE SUB bascule(ch AS STRING)
DIM btn AS OBJECT
FOR EACH btn IN ME.Controls IF btn IS Button AND IF btn.Text = ch THEN ' btn.Border = Not btn.Border '<--------' commenté à cause d'un bug sur perte de focus btn.Border = $bTouche IF btn.Border = TRUE THEN tbAffichage.SetFocus ELSE btn.SetFocus ENDIF BREAK ENDIF IF btn IS Button AND IF btn.Text <> ch THEN btn.Border = TRUE tbAffichage.SetFocus ENDIF NEXT
END
PUBLIC SUB Form_KeyRelease()
$sText = Key.Text keyCode() '<--------' Début ensemble de test sur clavier '--------' IF Left(System.Language, 2) <> "en" THEN IF Key.Text = "." THEN $sText = "," '<-----------------' on récupère la virgule ELSE IF Key.Text = "," THEN $sText = "." '<-----------------' on récupère le point ENDIF
SELECT CASE Key.Text CASE "=" '<------------------------------------------' test inutile sauf pour gtk $sText = "=" END SELECT
IF Key.Code = Key.Esc THEN $sText = "C" IF Key.Shift AND IF Key.Code = Key["c"] THEN $sText = "C" '<--' effacement total IF Key.Code = key.Return OR IF Key.Code = key.Enter THEN $sText = "=" IF Key.Code = Key.Backspace OR IF Key.Code = Key.Delete THEN $sText = " " '<- un espace IF Key.Code = Key["w"] AND IF Key.Alt THEN $sText = "+/-" '<--' changement de signe
IF Key.Code = Key["s"] AND IF Key.Alt THEN $sText = "MS" '<--------------------------------------' mémoire plus ELSE IF Key.Code = Key["r"] AND IF Key.Alt THEN $sText = "MR" '<--------------------------------------' mémoire rappel ELSE IF Key.Code = Key["c"] AND IF Key.Alt THEN $sText = "MC" '<--------------------------------------' mémoire effacement ELSE IF Key.Code = Key["p"] AND IF Key.Alt THEN $sText = "M+" '<--------------------------------------' mémoire ajout ENDIF
IF Key.Control AND IF Key.Code = Key["f"] THEN '<--------' Phi $sText = "f" ENDIF
IF Key.Control AND IF Key.Code = Key["p"] THEN '<--------' pi $sText = "p" ENDIF
IF Key.Alt AND IF Key.Code = Key["f"] THEN '<------------' factoriel $sText = "x !" ENDIF
IF Key.Code = Key[":"] AND IF Key.Alt THEN '<------------' inverse $sText = "1/x" ENDIF
IF Key.Code = Key["i"] AND IF Key.Shift THEN '<----------' Statistiques $sText = "Ni" ELSE IF Key.Code = Key["o"] AND IF Key.Shift THEN $sText = "Xi" ELSE IF Key.Code = Key["m"] AND IF Key.Shift THEN $sText = "Fin" ENDIF
IF $bEgalStat = TRUE THEN '<--------------------------' Statistiques IF Key.Code = Key["n"] AND IF Key.Shift THEN $sText = "N" ELSE IF Key.Code = Key["j"] AND IF Key.Shift THEN $sText = "Moy." ELSE IF Key.Code = Key["k"] AND IF Key.Shift THEN $sText = "s" ENDIF ENDIF
IF Key.Code = Key["l"] AND IF Key.Alt THEN '<------------' logarithme $sText = "ln" ELSE IF Key.Code = Key["e"] AND IF Key.Alt THEN $sText = "e" ELSE IF Key.Code = Key["l"] AND IF Key.Control THEN $sText = "log" ELSE IF Key.Code = Key["e"] AND IF Key.Control THEN $sText = "e10" ENDIF
IF btnHyper.Value = FALSE THEN '<---------------------' Trigo IF Key.Code = Key["i"] AND IF Key.Alt THEN $sText = "Sin" ELSE IF Key.Code = Key["o"] AND IF Key.Alt THEN $sText = "Cos" ELSE IF Key.Code = Key["t"] AND IF Key.Alt THEN $sText = "Tan" ENDIF ELSE IF Key.Code = Key["i"] AND IF Key.Alt THEN $sText = "Sinh" ELSE IF Key.Code = Key["o"] AND IF Key.Alt THEN $sText = "Cosh" ELSE IF Key.Code = Key["t"] AND IF Key.Alt THEN $sText = "Tanh" ENDIF ENDIF
IF Key.Control AND IF Key.Code = Key["b"] THEN '<------' Puissances $sText = "x^2" ELSE IF Key.Alt AND IF Key.Code = Key["b"] THEN $sText = "x^1/2" ELSE IF Key.Control AND IF Key.Code = Key["n"] THEN $sText = "x^3" ELSE IF Key.Alt AND IF Key.Code = Key["n"] THEN $sText = "x^1/3" ENDIF
'<--------' Fin ensemble de test sur clavier '----------'
$bTouche = TRUE '<--------------------------' relèvement de la touche bascule($sText) $sText = ""
END
PRIVATE SUB keyCode() '<-----------------------' code d'échappement des touches clavier
IF Key.Code = Key.Space THEN $sText = ""
IF Key.Code = Key["a"] THEN $sText = "" IF Key.Code = Key["b"] THEN $sText = "" IF Key.Code = Key["c"] THEN $sText = "" ' If Key.Code = Key["d"] Then $sText = "" IF Key.Code = Key["e"] THEN $sText = "" IF Key.Code = Key["f"] THEN $sText = "" IF Key.Code = Key["g"] THEN $sText = "" IF Key.Code = Key["h"] THEN $sText = "" IF Key.Code = Key["i"] THEN $sText = "" IF Key.Code = Key["j"] THEN $sText = "" IF Key.Code = Key["k"] THEN $sText = "" IF Key.Code = Key["l"] THEN $sText = "" IF Key.Code = Key["m"] THEN $sText = "" IF Key.Code = Key["n"] THEN $sText = "" IF Key.Code = Key["o"] THEN $sText = "" IF Key.Code = Key["p"] THEN $sText = "" IF Key.Code = Key["q"] THEN $sText = "" IF Key.Code = Key["r"] THEN $sText = "" IF Key.Code = Key["s"] THEN $sText = "" IF Key.Code = Key["t"] THEN $sText = "" IF Key.Code = Key["u"] THEN $sText = "" ' If Key.Code = Key["v"] Then $sText = "" IF Key.Code = Key["w"] THEN $sText = "" IF Key.Code = Key["x"] THEN $sText = "" IF Key.Code = Key["y"] THEN $sText = "" ' If Key.Code = Key["z"] Then $sText = "" IF Key.Code = Key[":"] THEN $sText = "" IF Key.Code = Key[";"] THEN $sText = ""
IF Key.Code = Key.AltKey THEN $sText = "" IF Key.Code = Key.ControlKey THEN $sText = "" IF Key.Code = Key.ShiftKey THEN $sText = "" IF Key.Code = Key.AltGrKey THEN $sText = ""
END
PUBLIC SUB Form_KeyPress() '<------------------------------' saisie au clavier
DIM cChiffres AS String[] = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", ",", "."] DIM cSignes AS String[] = ["+", "-", "*", "x", "/", "^", Chr(92)]
$sText = Key.Text '<------------------------------------' touche pressée keyCode() '<--------' Début ensemble de test sur clavier '--------'
IF Left(System.Language, 2) <> "en" THEN '<------------' localisation Europa IF $sText = "." THEN $sText = "," ELSE IF $sText = "," THEN $sText = "." ENDIF
IF Key.Code = key.Return OR IF Key.Code = key.Enter OR IF Key.Code = Key["="] THEN $sText = "=" btnEgal_Click() ENDIF
IF Key.Code = Key.Esc THEN $sText = "C" btnCancel_Click() ENDIF
IF Key.Shift AND IF Key.Code = Key["c"] THEN $sText = "C" btnCancel_Click() ENDIF
IF Key.Code = Key.Backspace OR IF Key.Code = Key.Delete THEN $sText = " " btnEffacer_Click() ENDIF
IF Key.Alt AND IF Key.Code = Key["w"] THEN $sText = "+/-" btnRelatif_Click() ENDIF
IF cChiffres.Exist($sText) THEN '<---------------------' chiffres LAST.text = $sText Chiffres_Click() ENDIF
IF cSignes.Exist($sText) THEN '<-----------------------' signes LAST.text = $sText Signes_Click() ENDIF
IF Key.Code = Key["s"] AND IF Key.Alt THEN '<------------' Memoire LAST.tag = btnMS.Tag $sText = "MS" Memoire_Click() ELSE IF Key.Code = Key["r"] AND IF Key.Alt THEN LAST.tag = btnMR.Tag $sText = "MR" Memoire_Click() ELSE IF Key.Code = Key["c"] AND IF Key.Alt THEN LAST.tag = btnMC.Tag $sText = "MC" Memoire_Click() ELSE IF Key.Alt AND IF Key.Code = Key["p"] THEN LAST.tag = btnMplus.Tag $sText = "M+" Memoire_Click() ENDIF
IF Key.Code = Key.ShiftKey THEN btnMod.Text = "Div" IF Key.Code = Key.AltKey THEN btnMod.Text = "Mod" ' IF Key.Code = Key["n"] AND IF Key.Shift THEN '<----------' Type de Calculatricce rbNormale.Value = TRUE TypeCalc_Click() ELSE IF Key.Code = Key["x"] AND IF Key.Shift THEN rbComplex.Value = TRUE TypeCalc_Click() ELSE IF Key.Code = Key["t"] AND IF Key.Shift THEN rbStatistique.Value = TRUE TypeCalc_Click() ELSE IF Key.Code = Key["s"] AND IF Key.Shift THEN rbScientific.Value = TRUE TypeCalc_Click() ENDIF
IF Key.Code = Key["h"] AND IF Key.Shift THEN btnHyper.Value = NOT btnHyper.Value IF Key.Code = Key["a"] AND IF Key.Shift THEN btnArc.Value = NOT btnArc.Value
IF btnHyper.Value = FALSE THEN '<------------' Trigo IF Key.Code = Key["i"] AND IF Key.Alt THEN LAST.tag = btnSin.Tag $sText = "Sin" Trigo_Click() ELSE IF Key.Code = Key["o"] AND IF Key.Alt THEN LAST.tag = btnCos.Tag $sText = "Cos" Trigo_Click() ELSE IF Key.Code = Key["t"] AND IF Key.Alt THEN LAST.tag = btnTan.Tag $sText = "Tan" Trigo_Click() ENDIF ELSE IF btnHyper.Value = TRUE THEN IF Key.Code = Key["i"] AND IF Key.Alt THEN LAST.tag = btnSin.Tag $sText = "Sinh" Trigo_Click() ELSE IF Key.Code = Key["o"] AND IF Key.Alt THEN LAST.tag = btnCos.Tag $sText = "Cosh" Trigo_Click() ELSE IF Key.Code = Key["t"] AND IF Key.Alt THEN LAST.tag = btnTan.Tag $sText = "Tanh" Trigo_Click() ENDIF ENDIF
IF Key.Code = Key["l"] AND IF Key.Alt THEN '<------------' logarithme LAST.tag = btnLn.Tag $sText = "ln" Logarithme_Click() ELSE IF Key.Code = Key["e"] AND IF Key.Alt THEN LAST.tag = btnExp.Tag $sText = "e" Logarithme_Click() ELSE IF Key.Code = Key["l"] AND IF Key.Control THEN LAST.tag = btnLog.Tag $sText = "log" Logarithme_Click() ELSE IF Key.Code = Key["e"] AND IF Key.Control THEN LAST.tag = btnExp10.Tag $sText = "e10" Logarithme_Click() ENDIF
IF Key.Code = Key["y"] AND IF Key.Control THEN '<--------' Complexes 1 LAST.tag = btnImag.Tag Complex_Click() ELSE IF Key.Code = Key["u"] AND IF Key.Control THEN LAST.tag = btnReal.Tag Complex_Click() ELSE IF Key.Code = Key["g"] AND IF Key.Control THEN LAST.tag = btnArg.Tag Complex_Click() ELSE IF Key.Code = Key["h"] AND IF Key.Control THEN LAST.tag = btnModule.Tag Complex_Click() ENDIF
IF Key.Code = Key["i"] AND IF Key.Control THEN '<--------' Complexes 2 LAST.tag = btnArg2.Tag Complex2_Click() ELSE IF Key.Code = Key["o"] AND IF Key.Control THEN LAST.tag = btnModule2.Tag Complex2_Click() ELSE IF Key.Code = Key["j"] AND IF Key.Control THEN LAST.tag = btnImag2.Tag Complex2_Click() ELSE IF Key.Code = Key["k"] AND IF Key.Control THEN LAST.tag = btnReal2.Tag Complex2_Click() ENDIF
IF Key.Code = Key["i"] AND IF Key.Shift THEN '<----------' Statistiques LAST.tag = btnStat0.Tag '<---------------------------' Ni $sText = "Ni" Statistiques_Click() ELSE IF Key.Code = Key["o"] AND IF Key.Shift THEN LAST.tag = btnStat1.Tag '<---------------------------' Xi $sText = "Xi" Statistiques_Click() ELSE IF Key.Code = Key["m"] AND IF Key.Shift THEN LAST.tag = btnStat4.Tag '<---------------------------' fin $sText = "Fin" Statistiques_Click() ENDIF
IF $bEgalStat = TRUE THEN '<--------------------------' Statistiques IF Key.Code = Key["n"] AND IF Key.Shift THEN LAST.tag = btnStat0.Tag '<------------------------' N $sText = "N" Statistiques_Click() ELSE IF Key.Code = Key["j"] AND IF Key.Shift THEN LAST.tag = btnStat2.Tag '<------------------------' moyenne $sText = "Moy." Statistiques_Click() ELSE IF Key.Code = Key["k"] AND IF Key.Shift THEN LAST.tag = btnStat3.Tag '<------------------------' écart type $sText = "s" Statistiques_Click() ENDIF ENDIF
IF Key.Alt AND IF Key.Code = Key["f"] THEN '<------------' factoriel IF IsInteger(tbAffichage.Text) THEN LAST.tag = btnFact.Tag $sText = "x !" btnFact_Click() ELSE $sText = "" btnFact_Click() ENDIF ENDIF
IF Key.Control AND IF Key.Code = Key["f"] THEN '<--------' Phi LAST.tag = btnPhi.Tag $sText = "f" btnPhi_Click() ENDIF
IF Key.Control AND IF Key.Code = Key["p"] THEN '<--------' pi LAST.tag = btnPi.Tag $sText = "p" btnPi_Click() ENDIF
IF Key.Code = Key[":"] AND IF Key.Alt THEN '<------------' inverse LAST.tag = btnInverse.Tag $sText = "1/x" btnInverse_Click() ENDIF
IF Key.Control AND IF Key.Code = Key["b"] THEN '<------' Puissances LAST.tag = btnCarre.Tag $sText = "x^2" Puissances_Click() ELSE IF Key.Alt AND IF Key.Code = Key["b"] THEN LAST.tag = btnCarre2.Tag $sText = "x^1/2" Puissances_Click() ELSE IF Key.Control AND IF Key.Code = Key["n"] THEN LAST.tag = btnCube.Tag $sText = "x^3" Puissances_Click() ELSE IF Key.Alt AND IF Key.Code = Key["n"] THEN LAST.tag = btnCube2.Tag $sText = "x^1/3" Puissances_Click() ENDIF
$bTouche = FALSE '<--------------------------' enfoncement de la touche bascule($sText) $sText = ""
IF NOT cSignes.Exist(Key.Text) OR NOT cChiffres.Exist(Key.Text) THEN STOP EVENT '<--- rien d'autre que les signes et les chiffres autorisés
ME.Text = ("Calculatrice ") '<---------------' pour ne pas afficher vText dans le titre du formulaire
IF Key.Code = Key["q"] AND IF Key.Shift THEN ME.Close() '<-------' pour quitter
CATCH Message.Error(Str(Error.Class) & ", code : " & Error.Code & ", " & Str(Error.Backtrace) & " à " Error.Wher " | Error.Text)
$bTouche = FALSE '<--------------------------' enfoncement de la touche bascule($sText) $bTouche = TRUE '<--------------------------' enfoncement de la touche bascule($sText) $sText = ""
END
PUBLIC SUB btnCancel_Click() '<---------------------------' Réinitialisation de toutes les variables globales
tbAffichage.Clear
$iVirgule = 0 $iLongMot = 0 $iPosVirgule = 0 $iNextCharPos = 0 $iCompte = 0 $iSigne = 0 $indexNi = 0 $indexXi = 0
$fNombre = 0 $fMemNombre = 0
$sTransfText = "" $sMemSigne.Clear $sSigne = ""
$bEgalStat = FALSE $bAjout = FALSE $bEgal = FALSE $bChiffres = FALSE $bParent1 = FALSE $bParent2 = FALSE '<------------------------------------------------------' statistiques
btnStat0.Visible = FALSE btnStat1.Visible = FALSE btnStat2.Visible = FALSE btnStat3.Visible = FALSE btnstat4.Visible = FALSE
$ListQuantites.Clear $ListDonnees.Clear taCalcul.Visible = FALSE taCalcul.Foreground = Color.Default taCalcul.Text = ""
IF rbStatistique.Value = TRUE THEN btnStat0.Enabled = TRUE btnStat1.Enabled = TRUE btnstat4.Enabled = TRUE
btnStat0.Visible = TRUE btnStat1.Visible = TRUE btnStat2.Visible = TRUE btnStat3.Visible = TRUE btnstat4.Visible = TRUE
btnStat0.Text = "Ni" btnStat0.Tooltip = ("Quantités de la série à saisir" "\n" & "< Maj + I >" btnStat1.Text = "Xi" btnStat1.Tooltip = ("Données de la série à saisir" "\n" & "< Maj + O >" btnStat4.Text = "Fin" btnStat4.Tooltip = ("Fin de saisie de la série" & "\n" & "< Maj + M >" ENDIF
$fEcartype = 0 $fMoy = 0 btnstat2.Background = Color.Default btnstat3.Background = Color.Default
IF $bStat = FALSE THEN btnstat0.Background = Color.Default ELSE btnstat0.Background = Color.SoftOrange ENDIF
Label1.Visible = FALSE Label1.Text = ""
tbAffichage.SetFocus
END
PUBLIC SUB btnClose_Click()
ME.Close() '<------------------------------------------' on ferme !
END
''<----------- Début calc scientific & statistic ----------'
PUBLIC SUB TypeCalc_Click() '<----------------------------' initialisation de la calculatrice
DIM btnStat AS Variant[] = [btnStat0, btnStat1, btnStat2, btnStat3, btnStat4, btnStat5, btnStat6, btnStat7, btnStat8, btnStat9] '<-- liste des boutons stat DIM i AS INTEGER '<------------------------------------' futur index de la liste
rbNormale.Tooltip = "Calculatrice Normale" & "\n" & "<Maj + N>" rbScientific.Tooltip = "Calculatrice Scientifique" & "\n" & "<Maj + S>" rbStatistique.Tooltip = "Calculatrice Statistique" & "\n" & "<Maj + T>" rbComplex.Tooltip = "Calculatrice.Complexe" & "\n" & "<Maj + C>"
IF rbNormale.Value = TRUE THEN framScience.Visible = FALSE '<---------------------' frame science framComplex.Visible = FALSE '<---------------------' frame complex ME.Text = ("Calculatrice Normale") & " " & Application.Version '<---------- titre du formulaire ME.W = 360 '<----------------------------------------' largeur ME.H = 525 Panel9.Layout = [100] '<---------------------------' panneau englobant les différentes frames panel22.Visible = TRUE '<---------------------------' panneau affichage des calculs rbScientific.Visible = TRUE '<---------------------' les radioButtons rbComplex.Visible = FALSE rbStatistique.Visible = TRUE $bStat = FALSE
mnuSimple.Checked = TRUE mnuScientifique.Checked = FALSE mnuComplexes.Checked = FALSE mnuStatistiques.Checked = FALSE
ENDIF
IF rbScientific.Value = TRUE THEN ME.Text = ("Calculatrice Scientifique") & " " & Application.Version '<---------- titre du formulaire ME.W = 655 '<----------------------------------------' largeur ME.H = 525 Panel9.Layout = [55, 45]'<---------------------------' partage du panneau framScience.Visible = TRUE framScience.Text = ("Scientifique") framScience.Tooltip = ("Rentrer les valeurs d'abord \npuis choisir une fonction") framComplex.Visible = FALSE rbDeg.Value = TRUE btnHyper.Value = FALSE panel22.Visible = TRUE rbScientific.Visible = TRUE rbComplex.Visible = TRUE rbStatistique.Visible = FALSE $bStat = FALSE
mnuSimple.Checked = FALSE mnuScientifique.Checked = TRUE mnuComplexes.Checked = FALSE mnuStatistiques.Checked = FALSE
ENDIF
IF rbComplex.Value = TRUE THEN ME.Text = ("Calculatrice Complexes") & " " & Application.Version '<------ titre du formulaire ME.W = 720 '<----------------------------------------' largeur ME.H = 525 Panel9.Layout = [44, 38, 18] '<---------------------' partage du panneau framScience.Visible = TRUE framScience.Tooltip = "" framComplex.Visible = TRUE framComplex.Tooltip = ("Choisir entre Partie Réelle et Partie Imaginaire\n ou Module et Argument" rbDeg.Value = TRUE btnHyper.Value = FALSE panel22.Visible = TRUE rbStatistique.Visible = FALSE rbScientific.Visible = TRUE rbComplex.Visible = TRUE $bStat = FALSE
mnuSimple.Checked = FALSE mnuScientifique.Checked = TRUE mnuComplexes.Checked = TRUE mnuStatistiques.Checked = FALSE
ENDIF
IF rbStatistique.Value = TRUE THEN ME.Text = ("Calculatrice Statistiques") & " " & Application.Version '<--- titre du formulaire ME.W = 720 '<----------------------------------------' largeur ME.H = 525 Panel9.Layout = [50, 50] '<-------------------------' partage du panneau framScience.Visible = TRUE framScience.Text = ("Statistiques") framScience.Tooltip = ("Ordre requis :\nQuantités puis Données\nainsi de suite\njusqu'à la fin de la série." framComplex.Visible = FALSE rbDeg.Value = FALSE btnHyper.Value = FALSE panel22.Visible = TRUE rbScientific.Visible = FALSE rbComplex.Visible = FALSE rbStatistique.Visible = TRUE $bStat = TRUE
mnuSimple.Checked = FALSE mnuScientifique.Checked = FALSE mnuComplexes.Checked = FALSE mnuStatistiques.Checked = TRUE
FOR i = 0 TO 1 btnStat[i].Enabled = TRUE btnStat[i].Border = Border.Plain btnStat[i].Background = Color.SoftOrange NEXT
FOR i = 2 TO 3 btnStat[i].Enabled = TRUE btnStat[i].Border = Border.Plain btnStat[i].Background = Color.Default NEXT
btnStat4.Enabled = TRUE btnStat4.Border = Border.Plain btnStat4.Background = Color.SoftOrange btnStat0.Text = "Ni" btnStat0.Tooltip = ("Quantités de la série à saisir" "\n" & "< Maj + I >" btnStat1.Text = "Xi" btnStat1.Tooltip = ("Données de la série à saisir" "\n" & "< Maj + O >" btnStat2.Text = "Moy." btnStat2.Tooltip = ("Moyenne de la série" & "\n" & "< Maj + J >" btnStat3.Font = Font["Standard Symbols L,Bold,14"] btnStat3.Text = "s" btnStat3.Tooltip = ("Écart Type de la série"& "\n" & "< Maj + K >" btnStat4.Text = "Fin" btnStat4.Tooltip = ("Fin de saisie de la série" & "\n" & "< Maj + M >" ENDIF
IF $bStat = TRUE THEN btnCarre.Tooltip = ("Variance de la série ou carré" btnCarre.Text = "Var." ELSE btnCarre.Tooltip = ("Carré" & "\n" & "< Ctrl + B >" btnCarre.Text = "x^2" ENDIF
btnEffCompl_Click() '<---------------------------------' effacement complexe btnCancel_Click() '<-----------------------------------' Réinitialisation de toutes les variables globales
IF $bStat = TRUE THEN FOR i = 0 TO 9 btnStat[i].visible = TRUE NEXT ENDIF
IF $bStat = FALSE THEN IF rbScientific.Value = TRUE OR rbComplex.Value = TRUE THEN '<- installation des parenthèses et des calculs liés FOR i = 0 TO 3 btnStat[i].visible = TRUE btnStat[i].Enabled = FALSE btnStat[i].Border = Border.none btnStat[i].Background = Color.Transparent btnStat[i].Text = "" btnStat[i].Tooltip = "" NEXT FOR i = 4 TO 9 btnStat[i].visible = FALSE NEXT ENDIF ENDIF
ME.Text = Application.Title & " " & Application.Version & " | " & "(" & ME.W & " , " & ME.h & ")"
CATCH Message.Error(Str(Error.Class) & ", code : " & Error.Code & ", " & Str(Error.Backtrace) & " à " Error.Wher " | Error.Text)
$bTouche = FALSE '<--------------------------' enfoncement de la touche bascule($sText) $bTouche = TRUE '<--------------------------' enfoncement de la touche bascule($sText) $sText = ""
END
PUBLIC SUB Trigo_Click() '<------------------------------' toute la trigonométrie
IF btnArc.Value = FALSE THEN btnArc.Background = Color.LightBackground ELSE btnArc.Background = Color.Cyan
IF btnHyper.Value = FALSE THEN btnHyper.Background = Color.LightBackground btnSin.text = "Sin" btnCos.Text = "Cos" btnTan.Text = "Tan" btnSin.Tooltip = "Sinus" btnCos.Tooltip = "Cosinus" btnTan.Tooltip = "Tangente" ELSE btnHyper.Background = Color.Cyan btnSin.text = "Sinh" btnCos.Text = "Cosh" btnTan.Text = "Tanh" btnSin.Tooltip = "Sinus hyperbolique" btnCos.Tooltip = "Cosinus hyperbolique" btnTan.Tooltip = "Tangente hyperbolique" ENDIF
IF IsNull(tbAffichage.Text) THEN RETURN
IF btnHyper.Value = FALSE THEN IF btnArc.Value = FALSE THEN IF IsFloat(tbAffichage.Text) THEN IF rbDeg.Value = TRUE THEN IF LAST = btnSin OR LAST.tag = btnSin.Tag THEN tbAffichage.text = Str(Sin(Rad(Val(tbAffichage.Text)))) IF LAST = btnCos OR LAST.tag = btnCos.Tag THEN tbAffichage.text = Str(Cos(Rad(Val(tbAffichage.Text)))) IF LAST = btnTan OR LAST.tag = btnTan.Tag THEN tbAffichage.text = Str(Tan(Rad(Val(tbAffichage.Text)))) ENDIF IF rbRad.Value = TRUE THEN IF LAST = btnSin OR LAST.tag = btnSin.Tag THEN tbAffichage.text = Str(Sin(Val(tbAffichage.Text))) IF LAST = btnCos OR LAST.tag = btnCos.Tag THEN tbAffichage.text = Str(Cos(Val(tbAffichage.Text))) IF LAST = btnTan OR LAST.tag = btnTan.Tag THEN tbAffichage.text = Str(Tan(Val(tbAffichage.Text))) ENDIF ELSE Message.Info(("Rentrer une valeur numérique !") ENDIF ELSE '<---------------------------------------------' btnArc.Value = True IF IsFloat(tbAffichage.Text) AND Val(tbAffichage.Text) <= 1 THEN IF rbDeg.Value = TRUE THEN IF LAST = btnSin OR LAST.tag = btnSin.Tag THEN tbAffichage.text = Str(Deg(ASin(Val(tbAffichage.Text)))) IF LAST = btnCos OR LAST.tag = btnCos.Tag THEN tbAffichage.text = Str(Deg(ACos(Val(tbAffichage.Text)))) IF LAST = btnTan OR LAST.tag = btnTan.Tag THEN tbAffichage.text = Str(Deg(ATan(Val(tbAffichage.Text)))) ENDIF IF rbRad.Value = TRUE THEN IF LAST = btnSin OR LAST.tag = btnSin.Tag THEN tbAffichage.text = Str(ASin(Val(tbAffichage.Text))) IF LAST = btnCos OR LAST.tag = btnCos.Tag THEN tbAffichage.text = Str(ACos(Val(tbAffichage.Text))) IF LAST = btnTan OR LAST.tag = btnTan.Tag THEN tbAffichage.text = Str(ATan(Val(tbAffichage.Text))) ENDIF ELSE Message.Info(("Rentrer une valeur numérique conforme !") ENDIF ENDIF ELSE '<------------------------------------------------' btnHyper.Value = True IF btnArc.Value = FALSE THEN IF IsFloat(tbAffichage.Text) THEN IF rbDeg.Value = TRUE THEN IF LAST = btnSin OR LAST.tag = btnSin.Tag THEN tbAffichage.text = Str(Sinh(Rad(Val(tbAffichage.Text)))) IF LAST = btnCos OR LAST.tag = btnCos.Tag THEN tbAffichage.text = Str(Cosh(Rad(Val(tbAffichage.Text)))) IF LAST = btnTan OR LAST.tag = btnTan.Tag THEN tbAffichage.text = Str(Tanh(Rad(Val(tbAffichage.Text)))) ENDIF IF rbRad.Value = TRUE THEN IF LAST = btnSin OR LAST.tag = btnSin.Tag THEN tbAffichage.text = Str(Sinh(Val(tbAffichage.Text))) IF LAST = btnCos OR LAST.tag = btnCos.Tag THEN tbAffichage.text = Str(Cosh(Val(tbAffichage.Text))) IF LAST = btnTan OR LAST.tag = btnTan.Tag THEN tbAffichage.text = Str(Tanh(Val(tbAffichage.Text))) ENDIF ELSE Message.Info(("Rentrer une valeur numérique !") ENDIF ELSE '<---------------------------------------------' btnArc.Value = True IF IsFloat(tbAffichage.Text) AND Val(tbAffichage.Text) <= 1 THEN IF rbDeg.Value = TRUE THEN IF LAST = btnSin OR LAST.tag = btnSin.Tag THEN tbAffichage.text = Str(Deg(ASinh(Val(tbAffichage.Text)))) IF LAST = btnCos OR LAST.tag = btnCos.Tag THEN tbAffichage.text = Str(Deg(ACosh(Val(tbAffichage.Text)))) IF LAST = btnTan OR LAST.tag = btnTan.Tag THEN tbAffichage.text = Str(Deg(ATanh(Val(tbAffichage.Text)))) ENDIF IF rbRad.Value = TRUE THEN IF LAST = btnSin OR LAST.tag = btnSin.Tag THEN tbAffichage.text = Str(ASinh(Val(tbAffichage.Text))) IF LAST = btnCos OR LAST.tag = btnCos.Tag THEN tbAffichage.text = Str(ACosh(Val(tbAffichage.Text))) IF LAST = btnTan OR LAST.tag = btnTan.Tag THEN tbAffichage.text = Str(ATanh(Val(tbAffichage.Text))) ENDIF ELSE Message.Info(("Rentrer une valeur numérique conforme !") ENDIF ENDIF ENDIF
btnEffCompl_Click() '<---------------------------------' effacement complexe zero() '<---------------------------------------------' pour ajouter un chiffre après un calcul
CATCH Message.Error(Str(Error.Class) & ", code : " & Error.Code & ", " & Str(Error.Backtrace) & " à " Error.Wher " | Error.Text)
$bTouche = FALSE '<--------------------------' enfoncement de la touche bascule($sText) $bTouche = TRUE '<--------------------------' enfoncement de la touche bascule($sText) $sText = ""
END
PUBLIC SUB Puissances_Click() '<---------------------------' les puissances et racines
IF IsNull(tbAffichage.Text) THEN RETURN
IF IsFloat(tbAffichage.Text) AND Val(tbAffichage.text) <> 0 THEN IF LAST = btnCarre OR LAST.tag = btnCarre.Tag THEN tbAffichage.text = Str((Val(tbAffichage.Text)) ^ 2) IF LAST = btnCarre2 OR LAST.tag = btnCarre2.Tag THEN tbAffichage.text = Str(Sqr(Val(tbAffichage.Text))) IF LAST = btnCube OR LAST.tag = btnCube.Tag THEN tbAffichage.text = Str((Val(tbAffichage.Text)) ^ 3) IF LAST = btnCube2 OR LAST.tag = btnCube2.Tag THEN tbAffichage.text = Str(Cbr(Val(tbAffichage.Text))) ENDIF
IF $bStat = TRUE AND tbAffichage.Text = Str($fVariance) THEN Label1.Text = ("Variance de la série" ELSE IF $bStat = TRUE AND tbAffichage.Text = Str($fEcartype) THEN Label1.Text = ("Écart Type de la série" ELSE IF $bStat = TRUE AND (tbAffichage.Text <> Str($fEcartype) OR tbAffichage.Text <> Str($fVariance)) THEN Label1.Text = "" ENDIF
AfficheFormat() '<------------------------------------' Affichage format europa btnEffCompl_Click() '<---------------------------------' effacement complexe zero() '<---------------------------------------------' pour ajouter un chiffre après un calcul
CATCH Message.Error(Str(Error.Class) & ", code : " & Error.Code & ", " & Str(Error.Backtrace) & " à " Error.Wher " | Error.Text)
$bTouche = FALSE '<--------------------------' enfoncement de la touche bascule($sText) $bTouche = TRUE '<--------------------------' enfoncement de la touche bascule($sText) $sText = ""
END
PUBLIC SUB Logarithme_Click() '<---------------------------' logarithme et exponentielle
IF IsNull(tbAffichage.Text) THEN RETURN
IF IsFloat(tbAffichage.Text) AND Val(tbAffichage.text) <> 0 THEN IF LAST = btnLn OR LAST.tag = btnLn.Tag THEN tbAffichage.text = Str(Log(Val(tbAffichage.Text))) '<-- log népérien IF LAST = btnExp OR LAST.tag = btnExp.Tag THEN tbAffichage.text = Str(Exp(Val(tbAffichage.Text))) '<-- exponentiel IF LAST = btnLog OR LAST.tag = btnLog.Tag THEN tbAffichage.text = Str(Log10(Val(tbAffichage.Text))) '<-- log décimale IF LAST = btnExp10 OR LAST.tag = btnExp10.Tag THEN tbAffichage.text = Str(Exp10(Val(tbAffichage.Text))) '<-- exponentiel décimale ENDIF
AfficheFormat() '<------------------------------------' Affichage format europa btnEffCompl_Click() '<---------------------------------' effacement complexe zero() '<---------------------------------------------' pour ajouter un chiffre après un calcul
CATCH Message.Error(Str(Error.Class) & ", code : " & Error.Code & ", " & Str(Error.Backtrace) & " à " Error.Wher " | Error.Text)
$bTouche = FALSE '<--------------------------' enfoncement de la touche bascule($sText) $bTouche = TRUE '<--------------------------' enfoncement de la touche bascule($sText) $sText = ""
END
PUBLIC SUB btnInverse_Click() '<---------------------------' fonction inverse
DIM fNbre AS FLOAT
IF IsNull(tbAffichage.Text) THEN RETURN
IF IsFloat(tbAffichage.Text) AND Val(tbAffichage.text) <> 0 THEN IF LAST = btnInverse OR LAST.tag = btnInverse.Tag THEN fNbre = Val(tbAffichage.Text) tbAffichage.Text = Format(fNbre, ".################") '<------- affiche le format nombre US" tbAffichage.text = Str(1 / fNbre) ENDIF ENDIF
btnEffCompl_Click() '<---------------------------------' effacement complexe zero() '<---------------------------------------------' pour ajouter un chiffre après un calcul
CATCH Message.Error(Str(Error.Class) & ", code : " & Error.Code & ", " & Str(Error.Backtrace) & " à " Error.Wher " | Error.Text)
$bTouche = FALSE '<--------------------------' enfoncement de la touche bascule($sText) $bTouche = TRUE '<--------------------------' enfoncement de la touche bascule($sText) $sText = ""
END
PUBLIC SUB btnPi_Click() '<------------------------------' PI()
IF LAST = btnPi OR LAST.tag = btnpi.Tag THEN tbAffichage.text = Str(Pi) ENDIF
$iVirgule += 1 Insertion() '<------------------------------------------' insertion de la valeur dans tableau $bChiffres = TRUE '<------------------------------------' indique qu'un chiffre a été rentré $bDrap = FALSE '<---------------------------------------' pour ne pas bloquer l'opération éventuelle testAjout() '<------------------------------------------' vérification d'un ajout de chiffre btnEffCompl_Click() '<---------------------------------' effacement complexe
CATCH Message.Error(Str(Error.Class) & ", code : " & Error.Code & ", " & Str(Error.Backtrace) & " à " Error.Wher " | Error.Text)
$bTouche = FALSE '<--------------------------' enfoncement de la touche bascule($sText) $bTouche = TRUE '<--------------------------' enfoncement de la touche bascule($sText) $sText = ""
END
PUBLIC SUB btnPhi_Click() '<------------------------------' PHI()
IF LAST = btnPhi OR LAST.tag = btnPhi.Tag THEN tbAffichage.text = Str((1 + Sqr(5)) / 2) ENDIF
$iVirgule += 1 Insertion() '<------------------------------------------' insertion de la valeur dans tableau $bChiffres = TRUE '<------------------------------------' indique qu'un chiffre a été rentré $bDrap = FALSE '<---------------------------------------' pour ne pas bloquer l'opération éventuelle testAjout() '<------------------------------------------' vérification d'un ajout de chiffre btnEffCompl_Click() '<---------------------------------' effacement complexe
CATCH Message.Error(Str(Error.Class) & ", code : " & Error.Code & ", " & Str(Error.Backtrace) & " à " Error.Wher " | Error.Text)
$bTouche = FALSE '<--------------------------' enfoncement de la touche bascule($sText) $bTouche = TRUE '<--------------------------' enfoncement de la touche bascule($sText) $sText = ""
END
PUBLIC SUB Memoire_Click() '<------------------------------' gestion du clipboard
tbAffichage.SetFocus
IF IsFloat(tbAffichage.Text) THEN IF LAST = btnMS OR LAST.tag = btnMS.Tag THEN '<------' mise en mémoire $fNombreMemoire = Val(tbAffichage.Text) btnMem.Background = Color.Default btnMem.Border = Border.None btnMem.Picture = Picture.Load("icon:/22/added") btnMem.Enabled = FALSE btnMem.Tooltip = ("Mémoire Alimenté" ENDIF IF LAST = btnMplus OR LAST.tag = btnMplus.Tag THEN '<-' ajout en mémoire $fNombreMemoire += Val(tbAffichage.Text) btnMem.Background = Color.Default btnMem.Border = Border.None btnMem.Picture = Picture.Load("icon:/22/added") btnMem.Enabled = FALSE btnMem.Tooltip = ("Mémoire Alimenté" ENDIF ENDIF
IF $fNombreMemoire <> 0 THEN IF LAST = btnMC OR LAST.tag = btnMC.Tag THEN '<------' effacement mémoire $fNombreMemoire = 0 tbAffichage.Text = "" '<--------------------------' en fonction de son désir btnMem.Background = Color.Transparent btnMem.Picture = Picture.Load("icon:/22/add") btnMem.Enabled = FALSE btnMem.Tooltip = ("Mémoire Vide" ENDIF IF LAST = btnMR OR LAST.tag = btnMR.Tag THEN '<------' rappel valeur en mémoire tbAffichage.Text = Str($fNombreMemoire) AfficheFormat() '<------------------------------' Affichage format europa IF $iSigne = 0 THEN $bChiffres = TRUE '<---------------------------' indique qu'un chiffre a été rentré zero() '<------------------------------------' pour ajouter un chiffre après un calcul ELSE $bDrap = FALSE Insertion() tbAffichage.Foreground = Color.Black ENDIF ENDIF ENDIF
btnEffCompl_Click() '<---------------------------------' effacement complexe $bChiffres = TRUE '<------------------------------------' indique qu'un chiffre a été rentré zero() '<---------------------------------------------' pour ajouter un chiffre après un calcul
CATCH Message.Error(Str(Error.Class) & ", code : " & Error.Code & ", " & Str(Error.Backtrace) & " à " Error.Wher " | Error.Text)
$bTouche = FALSE '<--------------------------' enfoncement de la touche bascule($sText) $bTouche = TRUE '<--------------------------' enfoncement de la touche bascule($sText) $sText = ""
END
PUBLIC SUB btnFact_Click() '<------------------------------' factoriel
DIM fNbre AS FLOAT
IF IsNull(tbAffichage.Text) THEN RETURN
IF IsInteger(tbAffichage.Text) THEN '<------------------' ne prend que les entiers IF LAST = btnFact OR LAST.tag = btnFact.Tag THEN fNbre = Val(tbAffichage.Text) tbAffichage.Text = Format(fNbre, ".################") '<------ affiche le format nombre US tbAffichage.Text = BigInt.Fact(fNbre) IF Val(tbAffichage.Text) < 10 ^ 20 THEN AfficheFormat() '<---------------------------' Affichage format europa ELSE tbAffichage.Text = Format(tbAffichage.Text, "#,###.################E##") 'format europa ENDIF ENDIF ELSE Message(("Veuillez rentrer un entier naturel") & "\n" & ("ou bien, plus petit !")) ENDIF
btnEffCompl_Click() '<---------------------------------' effacement complexe $bChiffres = TRUE '<------------------------------------' indique qu'un chiffre a été rentré ' zero() '<-------------------------------------------' pour ajouter un chiffre après un calcul
CATCH Message.Error(Str(Error.Class) & ", code : " & Error.Code & ", " & Str(Error.Backtrace) & " à " Error.Wher " | Error.Text)
$bTouche = FALSE '<--------------------------' enfoncement de la touche bascule($sText) $bTouche = TRUE '<--------------------------' enfoncement de la touche bascule($sText) $sText = ""
END
PUBLIC SUB geometrie_Click() '<---------------------------' degrés ou radians
IF IsNull(tbAffichage.Text) THEN RETURN
IF IsFloat(tbAffichage.Text) THEN IF rbDeg.Value = TRUE THEN tbAffichage.Text = Str(Deg(Val(tbAffichage.Text))) IF rbRad.Value = TRUE THEN tbAffichage.Text = Str(Rad(Val(tbAffichage.Text))) ENDIF
btnEffCompl_Click() '<---------------------------------' effacement complexe
CATCH Message.Error(Str(Error.Class) & ", code : " & Error.Code & ", " & Str(Error.Backtrace) & " à " Error.Wher " | Error.Text)
$bTouche = FALSE '<--------------------------' enfoncement de la touche bascule($sText) $bTouche = TRUE '<--------------------------' enfoncement de la touche bascule($sText) $sText = ""
END
PUBLIC SUB Complex_Click() '<------------------------------' calcul de complexe en fonction de imag et réel
IF IsNull(tbAffichage.Text) THEN RETURN
IF IsFloat(tbAffichage.Text) THEN
IF (LAST = btnArg AND $z = 0) OR (LAST = btnModule AND $z = 0) THEN Message(("Rentrer les valeurs réelles et imaginaires, d'abord !") RETURN ENDIF
IF LAST = btnImag OR LAST.tag = btnImag.Tag THEN $z.Imag = Val(tbAffichage.text) IF LAST = btnReal OR LAST.tag = btnReal.Tag THEN $z.Real = Val(tbAffichage.text) $z = Complex($z.Real, $z.Imag)
IF NOT IsNull($z) THEN taComplex.Visible = TRUE taComplex.Foreground = Color.Red taComplex.Text = " Complexe Z = " & $z.ToString(TRUE) IF LAST = btnArg OR LAST.tag = btnArg.Tag THEN tbAffichage.text = Str(Deg($z.Arg())) IF LAST = btnModule OR LAST.tag = btnModule.Tag THEN tbAffichage.text = Str(($z.Abs())) ENDIF
ENDIF
CATCH Message.Error(Str(Error.Class) & ", code : " & Error.Code & ", " & Str(Error.Backtrace) & " à " Error.Wher " | Error.Text)
$bTouche = FALSE '<--------------------------' enfoncement de la touche bascule($sText) $bTouche = TRUE '<--------------------------' enfoncement de la touche bascule($sText) $sText = ""
END
PUBLIC SUB btnEffCompl_Click() '<------------------------' effacement complexe
taComplex.Visible = FALSE taComplex.Foreground = Color.Default $z = 0 $fArg = 0 $fModule = 0 tbAffichage.SetFocus
END
PUBLIC SUB Complex2_Click() '<---------------------------' calcul complexe en fonction de l'argument et du module
IF IsNull(tbAffichage.Text) THEN RETURN
IF IsFloat(tbAffichage.Text) THEN
IF (LAST = btnImag2 AND $z = 0) OR (LAST = btnReal2 AND $z = 0) THEN Message(("Rentrer les valeurs Argument et Module, d'abord !")) RETURN ENDIF
IF Val(tbAffichage.text) <> 0 THEN
IF LAST = btnArg2 OR LAST.tag = btnArg2.Tag THEN $fArg = Val(tbAffichage.text) IF LAST = btnModule2 OR LAST.tag = btnModule2.Tag THEN $fModule = Val(tbAffichage.text)
IF $fModule = 0 OR $fArg = 0 THEN RETURN
$z.Real = $fModule * Cos(Rad($fArg)) $z.Imag = $fModule *
|