-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscale2fit.cs
3633 lines (3521 loc) · 157 KB
/
scale2fit.cs
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
// Decompiled with JetBrains decompiler
// Type: s2fit.scale2fit
// Assembly: s2fit, Version=2013.3.18.9, Culture=neutral, PublicKeyToken=null
// MVID: 2E7A4E2C-2CBB-4E29-BE48-9870B53D7378
// Assembly location: C:\Users\JoséMaríaFloresZazo\Downloads\SCALE2FIT\s2fit.exe
using Dynastream.Fit;
using Microsoft.VisualBasic;
using Microsoft.VisualBasic.CompilerServices;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using RestSharp;
using RestSharp.Authenticators;
using s2fit.My;
using System;
using System.Collections;
using System.ComponentModel;
using System.Diagnostics;
using System.Drawing;
using System.Globalization;
using System.IO;
using System.Net;
using System.Resources;
using System.Runtime.CompilerServices;
using System.Windows.Forms;
using System.Xml;
namespace s2fit
{
[DesignerGenerated]
public class scale2fit : Form
{
private IContainer components;
[AccessedThroughProperty("cboTipoGeneracion")]
private ComboBox _cboTipoGeneracion;
[AccessedThroughProperty("fraFicheroExportacion")]
private GroupBox _fraFicheroExportacion;
[AccessedThroughProperty("txtRuta")]
private TextBox _txtRuta;
[AccessedThroughProperty("fraConfiguracionManual")]
private GroupBox _fraConfiguracionManual;
[AccessedThroughProperty("chkListMedidas")]
private CheckedListBox _chkListMedidas;
[AccessedThroughProperty("lblMedidas")]
private Label _lblMedidas;
[AccessedThroughProperty("chkFechaActual")]
private CheckBox _chkFechaActual;
[AccessedThroughProperty("cmdExportarRuta")]
private Button _cmdExportarRuta;
[AccessedThroughProperty("panHeader")]
private Panel _panHeader;
[AccessedThroughProperty("lblTipoGeneracion")]
private Label _lblTipoGeneracion;
[AccessedThroughProperty("cmdConfigurar")]
private Button _cmdConfigurar;
[AccessedThroughProperty("panFoot")]
private Panel _panFoot;
[AccessedThroughProperty("lblCopyright")]
private Label _lblCopyright;
[AccessedThroughProperty("linkWEB")]
private LinkLabel _linkWEB;
[AccessedThroughProperty("fraExportarMedidas")]
private GroupBox _fraExportarMedidas;
[AccessedThroughProperty("lblSetMetabolicAge")]
private Label _lblSetMetabolicAge;
[AccessedThroughProperty("lblSetBoneMass")]
private Label _lblSetBoneMass;
[AccessedThroughProperty("lblSetVisceralFatRating")]
private Label _lblSetVisceralFatRating;
[AccessedThroughProperty("lblSetPercentHydration")]
private Label _lblSetPercentHydration;
[AccessedThroughProperty("lblSetPhysiqueRating")]
private Label _lblSetPhysiqueRating;
[AccessedThroughProperty("lblSetPercentFat")]
private Label _lblSetPercentFat;
[AccessedThroughProperty("lblSetMuscleMass")]
private Label _lblSetMuscleMass;
[AccessedThroughProperty("txtSetMetabolicAge")]
private TextBox _txtSetMetabolicAge;
[AccessedThroughProperty("txtSetBoneMass")]
private TextBox _txtSetBoneMass;
[AccessedThroughProperty("txtSetVisceralFatRating")]
private TextBox _txtSetVisceralFatRating;
[AccessedThroughProperty("txtSetPercentHydration")]
private TextBox _txtSetPercentHydration;
[AccessedThroughProperty("txtSetPhysiqueRating")]
private TextBox _txtSetPhysiqueRating;
[AccessedThroughProperty("txtSetPercentFat")]
private TextBox _txtSetPercentFat;
[AccessedThroughProperty("txtSetMuscleMass")]
private TextBox _txtSetMuscleMass;
[AccessedThroughProperty("txtSetWeight")]
private TextBox _txtSetWeight;
[AccessedThroughProperty("lblSetWeight")]
private Label _lblSetWeight;
[AccessedThroughProperty("cmdGenerar")]
private Button _cmdGenerar;
[AccessedThroughProperty("chkUltimasMedidas")]
private CheckBox _chkUltimasMedidas;
[AccessedThroughProperty("lbl2SetBoneMass")]
private Label _lbl2SetBoneMass;
[AccessedThroughProperty("lbl2SetPercentHydration")]
private Label _lbl2SetPercentHydration;
[AccessedThroughProperty("lbl2SetPercentFat")]
private Label _lbl2SetPercentFat;
[AccessedThroughProperty("lbl2SetWeight")]
private Label _lbl2SetWeight;
[AccessedThroughProperty("lblSetActiveMet")]
private Label _lblSetActiveMet;
[AccessedThroughProperty("txtSetActiveMet")]
private TextBox _txtSetActiveMet;
[AccessedThroughProperty("lblFechaActual")]
private Label _lblFechaActual;
[AccessedThroughProperty("lbl2SetMetabolicAge")]
private Label _lbl2SetMetabolicAge;
[AccessedThroughProperty("lbl2SetMuscleMass")]
private Label _lbl2SetMuscleMass;
[AccessedThroughProperty("lbl2SetActiveMet")]
private Label _lbl2SetActiveMet;
[AccessedThroughProperty("txtFechaActual")]
private MaskedTextBox _txtFechaActual;
[AccessedThroughProperty("fraFitBit")]
private GroupBox _fraFitBit;
[AccessedThroughProperty("cmdAutorizarFitBit")]
private Button _cmdAutorizarFitBit;
[AccessedThroughProperty("rtbFitBit")]
private RichTextBox _rtbFitBit;
[AccessedThroughProperty("fraExportarMedidasAutomaticas")]
private GroupBox _fraExportarMedidasAutomaticas;
[AccessedThroughProperty("txtPerfil")]
private TextBox _txtPerfil;
[AccessedThroughProperty("lblUrsConectado")]
private Label _lblUrsConectado;
[AccessedThroughProperty("cmdExportar")]
private Button _cmdExportar;
[AccessedThroughProperty("frawithings")]
private GroupBox _frawithings;
[AccessedThroughProperty("cmdEnlazarWithings")]
private Button _cmdEnlazarWithings;
[AccessedThroughProperty("txtClavePublica")]
private TextBox _txtClavePublica;
[AccessedThroughProperty("txtIdUsuario")]
private TextBox _txtIdUsuario;
[AccessedThroughProperty("lblPublicKey")]
private Label _lblPublicKey;
[AccessedThroughProperty("lblUsrID")]
private Label _lblUsrID;
[AccessedThroughProperty("RadioButton2")]
private RadioButton _RadioButton2;
[AccessedThroughProperty("RadioButton1")]
private RadioButton _RadioButton1;
[AccessedThroughProperty("lblWhatMeasure")]
private Label _lblWhatMeasure;
[AccessedThroughProperty("chkLstBoxFechas")]
private CheckedListBox _chkLstBoxFechas;
[AccessedThroughProperty("RadioButton5")]
private RadioButton _RadioButton5;
[AccessedThroughProperty("RadioButton4")]
private RadioButton _RadioButton4;
[AccessedThroughProperty("RadioButton3")]
private RadioButton _RadioButton3;
[AccessedThroughProperty("chkKGLB")]
private CheckBox _chkKGLB;
[AccessedThroughProperty("pctBoxPaypal")]
private PictureBox _pctBoxPaypal;
[AccessedThroughProperty("cmdUpload")]
private Button _cmdUpload;
private const float LB = 0.453592f;
private const float KG = 1f;
private bool blnLoad;
private string xmlConfigFile;
private bool[] arrItemsMedidas;
private bool blnFechaActual;
private bool blnUltimasMedidas;
private int intTipoGeneracion;
private string strRuta;
private string strFichero;
private float MultiplicoPor;
private string msgboxNoPinFitBit;
private string msgboxNoDatoDisponible;
private string msgboxImposibleLanzar;
private string msgboxFicheroExito;
private string msgboxFechaHora;
private string msgboxError;
private string msgboxfbdDescription;
private string msgboxGenerar;
private string msgboxPeso;
private string msgBoxAlmenosUna;
private string msgAtLeastOne;
public scale2fit()
{
this.Load += new EventHandler(this.scale2fit_Load);
this.blnLoad = false;
this.xmlConfigFile = "config.xml";
this.arrItemsMedidas = new bool[9];
this.MultiplicoPor = 1f;
this.InitializeComponent();
}
[DebuggerNonUserCode]
protected override void Dispose(bool disposing)
{
try
{
if (!disposing || this.components == null)
return;
this.components.Dispose();
}
finally
{
base.Dispose(disposing);
}
}
[DebuggerStepThrough]
private void InitializeComponent()
{
ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof (scale2fit));
this.cboTipoGeneracion = new ComboBox();
this.fraFicheroExportacion = new GroupBox();
this.cmdUpload = new Button();
this.cmdExportarRuta = new Button();
this.txtRuta = new TextBox();
this.fraConfiguracionManual = new GroupBox();
this.chkKGLB = new CheckBox();
this.chkUltimasMedidas = new CheckBox();
this.chkListMedidas = new CheckedListBox();
this.lblMedidas = new Label();
this.chkFechaActual = new CheckBox();
this.panHeader = new Panel();
this.cmdExportar = new Button();
this.lblTipoGeneracion = new Label();
this.cmdConfigurar = new Button();
this.panFoot = new Panel();
this.pctBoxPaypal = new PictureBox();
this.lblCopyright = new Label();
this.linkWEB = new LinkLabel();
this.fraExportarMedidas = new GroupBox();
this.txtSetMetabolicAge = new TextBox();
this.txtSetPhysiqueRating = new TextBox();
this.txtSetActiveMet = new TextBox();
this.txtFechaActual = new MaskedTextBox();
this.lbl2SetActiveMet = new Label();
this.lbl2SetMetabolicAge = new Label();
this.lbl2SetMuscleMass = new Label();
this.lblFechaActual = new Label();
this.lblSetActiveMet = new Label();
this.lbl2SetBoneMass = new Label();
this.lbl2SetPercentHydration = new Label();
this.lbl2SetPercentFat = new Label();
this.lbl2SetWeight = new Label();
this.lblSetMetabolicAge = new Label();
this.lblSetBoneMass = new Label();
this.lblSetVisceralFatRating = new Label();
this.lblSetPercentHydration = new Label();
this.lblSetPhysiqueRating = new Label();
this.lblSetPercentFat = new Label();
this.lblSetMuscleMass = new Label();
this.txtSetBoneMass = new TextBox();
this.txtSetVisceralFatRating = new TextBox();
this.txtSetPercentHydration = new TextBox();
this.txtSetPercentFat = new TextBox();
this.txtSetMuscleMass = new TextBox();
this.txtSetWeight = new TextBox();
this.lblSetWeight = new Label();
this.cmdGenerar = new Button();
this.fraFitBit = new GroupBox();
this.cmdAutorizarFitBit = new Button();
this.rtbFitBit = new RichTextBox();
this.fraExportarMedidasAutomaticas = new GroupBox();
this.RadioButton5 = new RadioButton();
this.RadioButton4 = new RadioButton();
this.RadioButton3 = new RadioButton();
this.RadioButton2 = new RadioButton();
this.RadioButton1 = new RadioButton();
this.lblWhatMeasure = new Label();
this.chkLstBoxFechas = new CheckedListBox();
this.txtPerfil = new TextBox();
this.lblUrsConectado = new Label();
this.frawithings = new GroupBox();
this.cmdEnlazarWithings = new Button();
this.txtClavePublica = new TextBox();
this.txtIdUsuario = new TextBox();
this.lblPublicKey = new Label();
this.lblUsrID = new Label();
this.fraFicheroExportacion.SuspendLayout();
this.fraConfiguracionManual.SuspendLayout();
this.panHeader.SuspendLayout();
this.panFoot.SuspendLayout();
((ISupportInitialize) this.pctBoxPaypal).BeginInit();
this.fraExportarMedidas.SuspendLayout();
this.fraFitBit.SuspendLayout();
this.fraExportarMedidasAutomaticas.SuspendLayout();
this.frawithings.SuspendLayout();
this.SuspendLayout();
this.cboTipoGeneracion.DropDownStyle = ComboBoxStyle.DropDownList;
this.cboTipoGeneracion.FormattingEnabled = true;
ComboBox cboTipoGeneracion1 = this.cboTipoGeneracion;
Point point1 = new Point(97, 14);
Point point2 = point1;
cboTipoGeneracion1.Location = point2;
this.cboTipoGeneracion.Name = "cboTipoGeneracion";
ComboBox cboTipoGeneracion2 = this.cboTipoGeneracion;
Size size1 = new Size(213, 21);
Size size2 = size1;
cboTipoGeneracion2.Size = size2;
this.cboTipoGeneracion.TabIndex = 1;
this.fraFicheroExportacion.Controls.Add((Control) this.cmdUpload);
this.fraFicheroExportacion.Controls.Add((Control) this.cmdExportarRuta);
this.fraFicheroExportacion.Controls.Add((Control) this.txtRuta);
this.fraFicheroExportacion.Enabled = false;
GroupBox ficheroExportacion1 = this.fraFicheroExportacion;
point1 = new Point(11, 272);
Point point3 = point1;
ficheroExportacion1.Location = point3;
this.fraFicheroExportacion.Name = "fraFicheroExportacion";
GroupBox ficheroExportacion2 = this.fraFicheroExportacion;
size1 = new Size(473, 52);
Size size3 = size1;
ficheroExportacion2.Size = size3;
this.fraFicheroExportacion.TabIndex = 6;
this.fraFicheroExportacion.TabStop = false;
this.fraFicheroExportacion.Text = "File Export Route";
this.cmdUpload.Enabled = false;
Button cmdUpload1 = this.cmdUpload;
point1 = new Point(414, 20);
Point point4 = point1;
cmdUpload1.Location = point4;
this.cmdUpload.Name = "cmdUpload";
Button cmdUpload2 = this.cmdUpload;
size1 = new Size(49, 20);
Size size4 = size1;
cmdUpload2.Size = size4;
this.cmdUpload.TabIndex = 9;
this.cmdUpload.Text = "Upload";
this.cmdUpload.UseVisualStyleBackColor = true;
Button cmdExportarRuta1 = this.cmdExportarRuta;
point1 = new Point(383, 20);
Point point5 = point1;
cmdExportarRuta1.Location = point5;
this.cmdExportarRuta.Name = "cmdExportarRuta";
Button cmdExportarRuta2 = this.cmdExportarRuta;
size1 = new Size(25, 20);
Size size5 = size1;
cmdExportarRuta2.Size = size5;
this.cmdExportarRuta.TabIndex = 8;
this.cmdExportarRuta.Text = "...";
this.cmdExportarRuta.UseVisualStyleBackColor = true;
this.txtRuta.Enabled = false;
TextBox txtRuta1 = this.txtRuta;
point1 = new Point(14, 20);
Point point6 = point1;
txtRuta1.Location = point6;
this.txtRuta.Name = "txtRuta";
TextBox txtRuta2 = this.txtRuta;
size1 = new Size(363, 20);
Size size6 = size1;
txtRuta2.Size = size6;
this.txtRuta.TabIndex = 7;
this.fraConfiguracionManual.Controls.Add((Control) this.chkKGLB);
this.fraConfiguracionManual.Controls.Add((Control) this.chkUltimasMedidas);
this.fraConfiguracionManual.Controls.Add((Control) this.chkListMedidas);
this.fraConfiguracionManual.Controls.Add((Control) this.lblMedidas);
this.fraConfiguracionManual.Controls.Add((Control) this.chkFechaActual);
this.fraConfiguracionManual.Enabled = false;
GroupBox configuracionManual1 = this.fraConfiguracionManual;
point1 = new Point(1100, 59);
Point point7 = point1;
configuracionManual1.Location = point7;
this.fraConfiguracionManual.Name = "fraConfiguracionManual";
GroupBox configuracionManual2 = this.fraConfiguracionManual;
size1 = new Size(473, 205);
Size size7 = size1;
configuracionManual2.Size = size7;
this.fraConfiguracionManual.TabIndex = 3;
this.fraConfiguracionManual.TabStop = false;
this.fraConfiguracionManual.Text = "Configuration";
this.chkKGLB.AutoSize = true;
CheckBox chkKglb1 = this.chkKGLB;
point1 = new Point(264, 88);
Point point8 = point1;
chkKglb1.Location = point8;
this.chkKGLB.Name = "chkKGLB";
CheckBox chkKglb2 = this.chkKGLB;
size1 = new Size(101, 17);
Size size8 = size1;
chkKglb2.Size = size8;
this.chkKGLB.TabIndex = 7;
this.chkKGLB.Text = "Measures in KG";
this.chkKGLB.UseVisualStyleBackColor = true;
this.chkKGLB.Visible = false;
this.chkUltimasMedidas.AutoSize = true;
CheckBox chkUltimasMedidas1 = this.chkUltimasMedidas;
point1 = new Point(264, 65);
Point point9 = point1;
chkUltimasMedidas1.Location = point9;
this.chkUltimasMedidas.Name = "chkUltimasMedidas";
CheckBox chkUltimasMedidas2 = this.chkUltimasMedidas;
size1 = new Size(159, 17);
Size size9 = size1;
chkUltimasMedidas2.Size = size9;
this.chkUltimasMedidas.TabIndex = 6;
this.chkUltimasMedidas.Text = "Propose the latest measures";
this.chkUltimasMedidas.UseVisualStyleBackColor = true;
this.chkListMedidas.FormattingEnabled = true;
CheckedListBox chkListMedidas1 = this.chkListMedidas;
point1 = new Point(74, 42);
Point point10 = point1;
chkListMedidas1.Location = point10;
this.chkListMedidas.Name = "chkListMedidas";
CheckedListBox chkListMedidas2 = this.chkListMedidas;
size1 = new Size(169, 139);
Size size10 = size1;
chkListMedidas2.Size = size10;
this.chkListMedidas.TabIndex = 4;
this.lblMedidas.AutoSize = true;
Label lblMedidas1 = this.lblMedidas;
point1 = new Point(12, 42);
Point point11 = point1;
lblMedidas1.Location = point11;
this.lblMedidas.Name = "lblMedidas";
Label lblMedidas2 = this.lblMedidas;
size1 = new Size(56, 13);
Size size11 = size1;
lblMedidas2.Size = size11;
this.lblMedidas.TabIndex = 4;
this.lblMedidas.Text = "Measures:";
this.chkFechaActual.AutoSize = true;
CheckBox chkFechaActual1 = this.chkFechaActual;
point1 = new Point(264, 42);
Point point12 = point1;
chkFechaActual1.Location = point12;
this.chkFechaActual.Name = "chkFechaActual";
CheckBox chkFechaActual2 = this.chkFechaActual;
size1 = new Size(203, 17);
Size size12 = size1;
chkFechaActual2.Size = size12;
this.chkFechaActual.TabIndex = 5;
this.chkFechaActual.Text = "Propose current system date and time";
this.chkFechaActual.UseVisualStyleBackColor = true;
this.panHeader.BackColor = SystemColors.AppWorkspace;
this.panHeader.Controls.Add((Control) this.cmdExportar);
this.panHeader.Controls.Add((Control) this.lblTipoGeneracion);
this.panHeader.Controls.Add((Control) this.cboTipoGeneracion);
this.panHeader.Controls.Add((Control) this.cmdConfigurar);
this.panHeader.Dock = DockStyle.Top;
Panel panHeader1 = this.panHeader;
point1 = new Point(0, 0);
Point point13 = point1;
panHeader1.Location = point13;
this.panHeader.Name = "panHeader";
Panel panHeader2 = this.panHeader;
size1 = new Size(496, 48);
Size size13 = size1;
panHeader2.Size = size13;
this.panHeader.TabIndex = 0;
Button cmdExportar1 = this.cmdExportar;
point1 = new Point(405, 14);
Point point14 = point1;
cmdExportar1.Location = point14;
this.cmdExportar.Name = "cmdExportar";
Button cmdExportar2 = this.cmdExportar;
size1 = new Size(78, 21);
Size size14 = size1;
cmdExportar2.Size = size14;
this.cmdExportar.TabIndex = 7;
this.cmdExportar.Text = "&Export";
this.cmdExportar.UseVisualStyleBackColor = true;
this.lblTipoGeneracion.AutoSize = true;
Label lblTipoGeneracion1 = this.lblTipoGeneracion;
point1 = new Point(11, 18);
Point point15 = point1;
lblTipoGeneracion1.Location = point15;
this.lblTipoGeneracion.Name = "lblTipoGeneracion";
Label lblTipoGeneracion2 = this.lblTipoGeneracion;
size1 = new Size(81, 13);
Size size15 = size1;
lblTipoGeneracion2.Size = size15;
this.lblTipoGeneracion.TabIndex = 6;
this.lblTipoGeneracion.Text = "File Generation:";
Button cmdConfigurar1 = this.cmdConfigurar;
point1 = new Point(319, 14);
Point point16 = point1;
cmdConfigurar1.Location = point16;
this.cmdConfigurar.Name = "cmdConfigurar";
Button cmdConfigurar2 = this.cmdConfigurar;
size1 = new Size(78, 21);
Size size16 = size1;
cmdConfigurar2.Size = size16;
this.cmdConfigurar.TabIndex = 2;
this.cmdConfigurar.Text = "&Configuration";
this.cmdConfigurar.UseVisualStyleBackColor = true;
this.panFoot.BackColor = SystemColors.AppWorkspace;
this.panFoot.Controls.Add((Control) this.pctBoxPaypal);
this.panFoot.Controls.Add((Control) this.lblCopyright);
this.panFoot.Controls.Add((Control) this.linkWEB);
this.panFoot.Dock = DockStyle.Bottom;
Panel panFoot1 = this.panFoot;
point1 = new Point(0, 338);
Point point17 = point1;
panFoot1.Location = point17;
this.panFoot.Name = "panFoot";
Panel panFoot2 = this.panFoot;
size1 = new Size(496, 35);
Size size17 = size1;
panFoot2.Size = size17;
this.panFoot.TabIndex = 200;
this.pctBoxPaypal.Anchor = AnchorStyles.None;
PictureBox pctBoxPaypal1 = this.pctBoxPaypal;
point1 = new Point(215, 7);
Point point18 = point1;
pctBoxPaypal1.Location = point18;
this.pctBoxPaypal.Name = "pctBoxPaypal";
PictureBox pctBoxPaypal2 = this.pctBoxPaypal;
size1 = new Size(74, 21);
Size size18 = size1;
pctBoxPaypal2.Size = size18;
this.pctBoxPaypal.SizeMode = PictureBoxSizeMode.StretchImage;
this.pctBoxPaypal.TabIndex = 203;
this.pctBoxPaypal.TabStop = false;
this.lblCopyright.AutoSize = true;
Label lblCopyright1 = this.lblCopyright;
point1 = new Point(385, 11);
Point point19 = point1;
lblCopyright1.Location = point19;
this.lblCopyright.Name = "lblCopyright";
Label lblCopyright2 = this.lblCopyright;
size1 = new Size(99, 13);
Size size19 = size1;
lblCopyright2.Size = size19;
this.lblCopyright.TabIndex = 202;
this.lblCopyright.Text = "© jmfloreszazo.com";
this.linkWEB.AutoSize = true;
LinkLabel linkWeb1 = this.linkWEB;
point1 = new Point(12, 11);
Point point20 = point1;
linkWeb1.Location = point20;
this.linkWEB.Name = "linkWEB";
LinkLabel linkWeb2 = this.linkWEB;
size1 = new Size(118, 13);
Size size20 = size1;
linkWeb2.Size = size20;
this.linkWEB.TabIndex = 201;
this.linkWEB.TabStop = true;
this.linkWEB.Text = "http://jmfloreszazo.com";
this.fraExportarMedidas.Controls.Add((Control) this.txtSetMetabolicAge);
this.fraExportarMedidas.Controls.Add((Control) this.txtSetPhysiqueRating);
this.fraExportarMedidas.Controls.Add((Control) this.txtSetActiveMet);
this.fraExportarMedidas.Controls.Add((Control) this.txtFechaActual);
this.fraExportarMedidas.Controls.Add((Control) this.lbl2SetActiveMet);
this.fraExportarMedidas.Controls.Add((Control) this.lbl2SetMetabolicAge);
this.fraExportarMedidas.Controls.Add((Control) this.lbl2SetMuscleMass);
this.fraExportarMedidas.Controls.Add((Control) this.lblFechaActual);
this.fraExportarMedidas.Controls.Add((Control) this.lblSetActiveMet);
this.fraExportarMedidas.Controls.Add((Control) this.lbl2SetBoneMass);
this.fraExportarMedidas.Controls.Add((Control) this.lbl2SetPercentHydration);
this.fraExportarMedidas.Controls.Add((Control) this.lbl2SetPercentFat);
this.fraExportarMedidas.Controls.Add((Control) this.lbl2SetWeight);
this.fraExportarMedidas.Controls.Add((Control) this.lblSetMetabolicAge);
this.fraExportarMedidas.Controls.Add((Control) this.lblSetBoneMass);
this.fraExportarMedidas.Controls.Add((Control) this.lblSetVisceralFatRating);
this.fraExportarMedidas.Controls.Add((Control) this.lblSetPercentHydration);
this.fraExportarMedidas.Controls.Add((Control) this.lblSetPhysiqueRating);
this.fraExportarMedidas.Controls.Add((Control) this.lblSetPercentFat);
this.fraExportarMedidas.Controls.Add((Control) this.lblSetMuscleMass);
this.fraExportarMedidas.Controls.Add((Control) this.txtSetBoneMass);
this.fraExportarMedidas.Controls.Add((Control) this.txtSetVisceralFatRating);
this.fraExportarMedidas.Controls.Add((Control) this.txtSetPercentHydration);
this.fraExportarMedidas.Controls.Add((Control) this.txtSetPercentFat);
this.fraExportarMedidas.Controls.Add((Control) this.txtSetMuscleMass);
this.fraExportarMedidas.Controls.Add((Control) this.txtSetWeight);
this.fraExportarMedidas.Controls.Add((Control) this.lblSetWeight);
GroupBox fraExportarMedidas1 = this.fraExportarMedidas;
point1 = new Point(1100, 59);
Point point21 = point1;
fraExportarMedidas1.Location = point21;
this.fraExportarMedidas.Name = "fraExportarMedidas";
GroupBox fraExportarMedidas2 = this.fraExportarMedidas;
size1 = new Size(473, 205);
Size size21 = size1;
fraExportarMedidas2.Size = size21;
this.fraExportarMedidas.TabIndex = 9;
this.fraExportarMedidas.TabStop = false;
this.fraExportarMedidas.Text = "Measures";
TextBox txtSetMetabolicAge1 = this.txtSetMetabolicAge;
point1 = new Point(100, 149);
Point point22 = point1;
txtSetMetabolicAge1.Location = point22;
this.txtSetMetabolicAge.Name = "txtSetMetabolicAge";
TextBox txtSetMetabolicAge2 = this.txtSetMetabolicAge;
size1 = new Size(68, 20);
Size size22 = size1;
txtSetMetabolicAge2.Size = size22;
this.txtSetMetabolicAge.TabIndex = 28;
this.txtSetMetabolicAge.TextAlign = HorizontalAlignment.Right;
TextBox setPhysiqueRating1 = this.txtSetPhysiqueRating;
point1 = new Point(100, 123);
Point point23 = point1;
setPhysiqueRating1.Location = point23;
this.txtSetPhysiqueRating.Name = "txtSetPhysiqueRating";
TextBox setPhysiqueRating2 = this.txtSetPhysiqueRating;
size1 = new Size(68, 20);
Size size23 = size1;
setPhysiqueRating2.Size = size23;
this.txtSetPhysiqueRating.TabIndex = 26;
this.txtSetPhysiqueRating.TextAlign = HorizontalAlignment.Right;
TextBox txtSetActiveMet1 = this.txtSetActiveMet;
point1 = new Point(365, 149);
Point point24 = point1;
txtSetActiveMet1.Location = point24;
this.txtSetActiveMet.Name = "txtSetActiveMet";
TextBox txtSetActiveMet2 = this.txtSetActiveMet;
size1 = new Size(68, 20);
Size size24 = size1;
txtSetActiveMet2.Size = size24;
this.txtSetActiveMet.TabIndex = 29;
this.txtSetActiveMet.TextAlign = HorizontalAlignment.Right;
this.txtFechaActual.Culture = new CultureInfo("");
MaskedTextBox txtFechaActual1 = this.txtFechaActual;
point1 = new Point(101, 45);
Point point25 = point1;
txtFechaActual1.Location = point25;
this.txtFechaActual.Mask = "00/00/0000 00:00";
this.txtFechaActual.Name = "txtFechaActual";
MaskedTextBox txtFechaActual2 = this.txtFechaActual;
size1 = new Size(108, 20);
Size size25 = size1;
txtFechaActual2.Size = size25;
this.txtFechaActual.TabIndex = 20;
this.txtFechaActual.TextAlign = HorizontalAlignment.Center;
this.txtFechaActual.ValidatingType = typeof (System.DateTime);
this.lbl2SetActiveMet.AutoSize = true;
this.lbl2SetActiveMet.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Italic, GraphicsUnit.Point, (byte) 0);
Label lbl2SetActiveMet1 = this.lbl2SetActiveMet;
point1 = new Point(437, 152);
Point point26 = point1;
lbl2SetActiveMet1.Location = point26;
this.lbl2SetActiveMet.Name = "lbl2SetActiveMet";
Label lbl2SetActiveMet2 = this.lbl2SetActiveMet;
size1 = new Size(14, 13);
Size size26 = size1;
lbl2SetActiveMet2.Size = size26;
this.lbl2SetActiveMet.TabIndex = 26;
this.lbl2SetActiveMet.Text = "C";
this.lbl2SetMetabolicAge.AutoSize = true;
this.lbl2SetMetabolicAge.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Italic, GraphicsUnit.Point, (byte) 0);
Label lbl2SetMetabolicAge1 = this.lbl2SetMetabolicAge;
point1 = new Point(172, 152);
Point point27 = point1;
lbl2SetMetabolicAge1.Location = point27;
this.lbl2SetMetabolicAge.Name = "lbl2SetMetabolicAge";
Label lbl2SetMetabolicAge2 = this.lbl2SetMetabolicAge;
size1 = new Size(34, 13);
Size size27 = size1;
lbl2SetMetabolicAge2.Size = size27;
this.lbl2SetMetabolicAge.TabIndex = 25;
this.lbl2SetMetabolicAge.Text = "Years";
this.lbl2SetMuscleMass.AutoSize = true;
this.lbl2SetMuscleMass.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Italic, GraphicsUnit.Point, (byte) 0);
Label lbl2SetMuscleMass1 = this.lbl2SetMuscleMass;
point1 = new Point(437, 100);
Point point28 = point1;
lbl2SetMuscleMass1.Location = point28;
this.lbl2SetMuscleMass.Name = "lbl2SetMuscleMass";
Label lbl2SetMuscleMass2 = this.lbl2SetMuscleMass;
size1 = new Size(20, 13);
Size size28 = size1;
lbl2SetMuscleMass2.Size = size28;
this.lbl2SetMuscleMass.TabIndex = 24;
this.lbl2SetMuscleMass.Text = "Kg";
this.lblFechaActual.AutoSize = true;
Label lblFechaActual1 = this.lblFechaActual;
point1 = new Point(12, 49);
Point point29 = point1;
lblFechaActual1.Location = point29;
this.lblFechaActual.Name = "lblFechaActual";
Label lblFechaActual2 = this.lblFechaActual;
size1 = new Size(80, 13);
Size size29 = size1;
lblFechaActual2.Size = size29;
this.lblFechaActual.TabIndex = 22;
this.lblFechaActual.Text = "Date and Time:";
this.lblSetActiveMet.AutoSize = true;
Label lblSetActiveMet1 = this.lblSetActiveMet;
point1 = new Point(233, 152);
Point point30 = point1;
lblSetActiveMet1.Location = point30;
this.lblSetActiveMet.Name = "lblSetActiveMet";
Label lblSetActiveMet2 = this.lblSetActiveMet;
size1 = new Size(101, 13);
Size size30 = size1;
lblSetActiveMet2.Size = size30;
this.lblSetActiveMet.TabIndex = 21;
this.lblSetActiveMet.Text = "Daily Caloric Intake:";
this.lbl2SetBoneMass.AutoSize = true;
this.lbl2SetBoneMass.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Italic, GraphicsUnit.Point, (byte) 0);
Label lbl2SetBoneMass1 = this.lbl2SetBoneMass;
point1 = new Point(172, 100);
Point point31 = point1;
lbl2SetBoneMass1.Location = point31;
this.lbl2SetBoneMass.Name = "lbl2SetBoneMass";
Label lbl2SetBoneMass2 = this.lbl2SetBoneMass;
size1 = new Size(20, 13);
Size size31 = size1;
lbl2SetBoneMass2.Size = size31;
this.lbl2SetBoneMass.TabIndex = 19;
this.lbl2SetBoneMass.Text = "Kg";
this.lbl2SetPercentHydration.AutoSize = true;
this.lbl2SetPercentHydration.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Italic, GraphicsUnit.Point, (byte) 0);
Label percentHydration1 = this.lbl2SetPercentHydration;
point1 = new Point(437, 74);
Point point32 = point1;
percentHydration1.Location = point32;
this.lbl2SetPercentHydration.Name = "lbl2SetPercentHydration";
Label percentHydration2 = this.lbl2SetPercentHydration;
size1 = new Size(15, 13);
Size size32 = size1;
percentHydration2.Size = size32;
this.lbl2SetPercentHydration.TabIndex = 18;
this.lbl2SetPercentHydration.Text = "%";
this.lbl2SetPercentFat.AutoSize = true;
this.lbl2SetPercentFat.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Italic, GraphicsUnit.Point, (byte) 0);
Label lbl2SetPercentFat1 = this.lbl2SetPercentFat;
point1 = new Point(172, 74);
Point point33 = point1;
lbl2SetPercentFat1.Location = point33;
this.lbl2SetPercentFat.Name = "lbl2SetPercentFat";
Label lbl2SetPercentFat2 = this.lbl2SetPercentFat;
size1 = new Size(15, 13);
Size size33 = size1;
lbl2SetPercentFat2.Size = size33;
this.lbl2SetPercentFat.TabIndex = 17;
this.lbl2SetPercentFat.Text = "%";
this.lbl2SetWeight.AutoSize = true;
this.lbl2SetWeight.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Italic, GraphicsUnit.Point, (byte) 0);
Label lbl2SetWeight1 = this.lbl2SetWeight;
point1 = new Point(437, 48);
Point point34 = point1;
lbl2SetWeight1.Location = point34;
this.lbl2SetWeight.Name = "lbl2SetWeight";
Label lbl2SetWeight2 = this.lbl2SetWeight;
size1 = new Size(20, 13);
Size size34 = size1;
lbl2SetWeight2.Size = size34;
this.lbl2SetWeight.TabIndex = 16;
this.lbl2SetWeight.Text = "Kg";
this.lblSetMetabolicAge.AutoSize = true;
Label lblSetMetabolicAge1 = this.lblSetMetabolicAge;
point1 = new Point(12, 150);
Point point35 = point1;
lblSetMetabolicAge1.Location = point35;
this.lblSetMetabolicAge.Name = "lblSetMetabolicAge";
Label lblSetMetabolicAge2 = this.lblSetMetabolicAge;
size1 = new Size(78, 13);
Size size35 = size1;
lblSetMetabolicAge2.Size = size35;
this.lblSetMetabolicAge.TabIndex = 15;
this.lblSetMetabolicAge.Text = "Metabolic Age:";
this.lblSetBoneMass.AutoSize = true;
Label lblSetBoneMass1 = this.lblSetBoneMass;
point1 = new Point(12, 100);
Point point36 = point1;
lblSetBoneMass1.Location = point36;
this.lblSetBoneMass.Name = "lblSetBoneMass";
Label lblSetBoneMass2 = this.lblSetBoneMass;
size1 = new Size(63, 13);
Size size36 = size1;
lblSetBoneMass2.Size = size36;
this.lblSetBoneMass.TabIndex = 14;
this.lblSetBoneMass.Text = "Bone Mass:";
this.lblSetVisceralFatRating.AutoSize = true;
Label visceralFatRating1 = this.lblSetVisceralFatRating;
point1 = new Point(233, 126);
Point point37 = point1;
visceralFatRating1.Location = point37;
this.lblSetVisceralFatRating.Name = "lblSetVisceralFatRating";
Label visceralFatRating2 = this.lblSetVisceralFatRating;
size1 = new Size(65, 13);
Size size37 = size1;
visceralFatRating2.Size = size37;
this.lblSetVisceralFatRating.TabIndex = 13;
this.lblSetVisceralFatRating.Text = "Visceral Fat:";
this.lblSetPercentHydration.AutoSize = true;
Label percentHydration3 = this.lblSetPercentHydration;
point1 = new Point(233, 74);
Point point38 = point1;
percentHydration3.Location = point38;
this.lblSetPercentHydration.Name = "lblSetPercentHydration";
Label percentHydration4 = this.lblSetPercentHydration;
size1 = new Size(66, 13);
Size size38 = size1;
percentHydration4.Size = size38;
this.lblSetPercentHydration.TabIndex = 12;
this.lblSetPercentHydration.Text = "Body Water:";
this.lblSetPhysiqueRating.AutoSize = true;
Label setPhysiqueRating3 = this.lblSetPhysiqueRating;
point1 = new Point(12, 126);
Point point39 = point1;
setPhysiqueRating3.Location = point39;
this.lblSetPhysiqueRating.Name = "lblSetPhysiqueRating";
Label setPhysiqueRating4 = this.lblSetPhysiqueRating;
size1 = new Size(87, 13);
Size size39 = size1;
setPhysiqueRating4.Size = size39;
this.lblSetPhysiqueRating.TabIndex = 11;
this.lblSetPhysiqueRating.Text = "Physique Rating:";
this.lblSetPercentFat.AutoSize = true;
Label lblSetPercentFat1 = this.lblSetPercentFat;
point1 = new Point(12, 74);
Point point40 = point1;
lblSetPercentFat1.Location = point40;
this.lblSetPercentFat.Name = "lblSetPercentFat";
Label lblSetPercentFat2 = this.lblSetPercentFat;
size1 = new Size(52, 13);
Size size40 = size1;
lblSetPercentFat2.Size = size40;
this.lblSetPercentFat.TabIndex = 2;
this.lblSetPercentFat.Text = "Body Fat:";
this.lblSetMuscleMass.AutoSize = true;
Label lblSetMuscleMass1 = this.lblSetMuscleMass;
point1 = new Point(233, 100);
Point point41 = point1;
lblSetMuscleMass1.Location = point41;
this.lblSetMuscleMass.Name = "lblSetMuscleMass";
Label lblSetMuscleMass2 = this.lblSetMuscleMass;
size1 = new Size(72, 13);
Size size41 = size1;
lblSetMuscleMass2.Size = size41;
this.lblSetMuscleMass.TabIndex = 9;
this.lblSetMuscleMass.Text = "Muscle Mass:";
TextBox txtSetBoneMass1 = this.txtSetBoneMass;
point1 = new Point(100, 97);
Point point42 = point1;
txtSetBoneMass1.Location = point42;
this.txtSetBoneMass.Name = "txtSetBoneMass";
TextBox txtSetBoneMass2 = this.txtSetBoneMass;
size1 = new Size(68, 20);
Size size42 = size1;
txtSetBoneMass2.Size = size42;
this.txtSetBoneMass.TabIndex = 24;
this.txtSetBoneMass.TextAlign = HorizontalAlignment.Right;
TextBox visceralFatRating3 = this.txtSetVisceralFatRating;
point1 = new Point(365, 123);
Point point43 = point1;
visceralFatRating3.Location = point43;
this.txtSetVisceralFatRating.Name = "txtSetVisceralFatRating";
TextBox visceralFatRating4 = this.txtSetVisceralFatRating;
size1 = new Size(68, 20);
Size size43 = size1;
visceralFatRating4.Size = size43;
this.txtSetVisceralFatRating.TabIndex = 27;
this.txtSetVisceralFatRating.TextAlign = HorizontalAlignment.Right;
TextBox percentHydration5 = this.txtSetPercentHydration;
point1 = new Point(365, 71);
Point point44 = point1;
percentHydration5.Location = point44;
this.txtSetPercentHydration.Name = "txtSetPercentHydration";
TextBox percentHydration6 = this.txtSetPercentHydration;
size1 = new Size(68, 20);
Size size44 = size1;
percentHydration6.Size = size44;
this.txtSetPercentHydration.TabIndex = 23;
this.txtSetPercentHydration.TextAlign = HorizontalAlignment.Right;
TextBox txtSetPercentFat1 = this.txtSetPercentFat;
point1 = new Point(100, 71);
Point point45 = point1;
txtSetPercentFat1.Location = point45;
this.txtSetPercentFat.Name = "txtSetPercentFat";
TextBox txtSetPercentFat2 = this.txtSetPercentFat;
size1 = new Size(68, 20);
Size size45 = size1;
txtSetPercentFat2.Size = size45;
this.txtSetPercentFat.TabIndex = 22;
this.txtSetPercentFat.TextAlign = HorizontalAlignment.Right;
TextBox txtSetMuscleMass1 = this.txtSetMuscleMass;
point1 = new Point(365, 97);
Point point46 = point1;
txtSetMuscleMass1.Location = point46;
this.txtSetMuscleMass.Name = "txtSetMuscleMass";
TextBox txtSetMuscleMass2 = this.txtSetMuscleMass;
size1 = new Size(68, 20);
Size size46 = size1;
txtSetMuscleMass2.Size = size46;
this.txtSetMuscleMass.TabIndex = 25;
this.txtSetMuscleMass.TextAlign = HorizontalAlignment.Right;
TextBox txtSetWeight1 = this.txtSetWeight;
point1 = new Point(365, 45);
Point point47 = point1;
txtSetWeight1.Location = point47;
this.txtSetWeight.Name = "txtSetWeight";
TextBox txtSetWeight2 = this.txtSetWeight;
size1 = new Size(68, 20);
Size size47 = size1;
txtSetWeight2.Size = size47;
this.txtSetWeight.TabIndex = 21;
this.txtSetWeight.TextAlign = HorizontalAlignment.Right;
this.lblSetWeight.AutoSize = true;
Label lblSetWeight1 = this.lblSetWeight;
point1 = new Point(233, 48);
Point point48 = point1;
lblSetWeight1.Location = point48;
this.lblSetWeight.Name = "lblSetWeight";
Label lblSetWeight2 = this.lblSetWeight;
size1 = new Size(44, 13);
Size size48 = size1;
lblSetWeight2.Size = size48;
this.lblSetWeight.TabIndex = 0;
this.lblSetWeight.Text = "Weight:";
Button cmdGenerar1 = this.cmdGenerar;
point1 = new Point(1100, 272);
Point point49 = point1;
cmdGenerar1.Location = point49;
this.cmdGenerar.Name = "cmdGenerar";
Button cmdGenerar2 = this.cmdGenerar;
size1 = new Size(472, 52);
Size size49 = size1;
cmdGenerar2.Size = size49;
this.cmdGenerar.TabIndex = 100;
this.cmdGenerar.Text = "Generate >> \"C:\\...\\ws_manual_20130130.fit\"";
this.cmdGenerar.UseVisualStyleBackColor = true;
this.fraFitBit.Controls.Add((Control) this.cmdAutorizarFitBit);
this.fraFitBit.Controls.Add((Control) this.rtbFitBit);
GroupBox fraFitBit1 = this.fraFitBit;
point1 = new Point(1100, 59);
Point point50 = point1;
fraFitBit1.Location = point50;
this.fraFitBit.Name = "fraFitBit";
GroupBox fraFitBit2 = this.fraFitBit;
size1 = new Size(473, 205);
Size size50 = size1;
fraFitBit2.Size = size50;
this.fraFitBit.TabIndex = 201;
this.fraFitBit.TabStop = false;
this.fraFitBit.Text = "Configuration";
Button cmdAutorizarFitBit1 = this.cmdAutorizarFitBit;
point1 = new Point(172, 173);
Point point51 = point1;
cmdAutorizarFitBit1.Location = point51;
this.cmdAutorizarFitBit.Name = "cmdAutorizarFitBit";
Button cmdAutorizarFitBit2 = this.cmdAutorizarFitBit;
size1 = new Size(151, 25);
Size size51 = size1;
cmdAutorizarFitBit2.Size = size51;
this.cmdAutorizarFitBit.TabIndex = 31;
this.cmdAutorizarFitBit.Text = "Allow Access";
this.cmdAutorizarFitBit.UseVisualStyleBackColor = true;
this.rtbFitBit.BorderStyle = BorderStyle.None;
RichTextBox rtbFitBit1 = this.rtbFitBit;
point1 = new Point(42, 30);
Point point52 = point1;
rtbFitBit1.Location = point52;
this.rtbFitBit.Name = "rtbFitBit";
this.rtbFitBit.ReadOnly = true;
this.rtbFitBit.ScrollBars = RichTextBoxScrollBars.None;
RichTextBox rtbFitBit2 = this.rtbFitBit;
size1 = new Size(405, 133);
Size size52 = size1;
rtbFitBit2.Size = size52;
this.rtbFitBit.TabIndex = 30;
this.rtbFitBit.TabStop = false;
this.rtbFitBit.Text = componentResourceManager.GetString("rtbFitBit.Text");
this.fraExportarMedidasAutomaticas.Controls.Add((Control) this.RadioButton5);
this.fraExportarMedidasAutomaticas.Controls.Add((Control) this.RadioButton4);
this.fraExportarMedidasAutomaticas.Controls.Add((Control) this.RadioButton3);
this.fraExportarMedidasAutomaticas.Controls.Add((Control) this.RadioButton2);
this.fraExportarMedidasAutomaticas.Controls.Add((Control) this.RadioButton1);
this.fraExportarMedidasAutomaticas.Controls.Add((Control) this.lblWhatMeasure);
this.fraExportarMedidasAutomaticas.Controls.Add((Control) this.chkLstBoxFechas);
this.fraExportarMedidasAutomaticas.Controls.Add((Control) this.txtPerfil);
this.fraExportarMedidasAutomaticas.Controls.Add((Control) this.lblUrsConectado);
GroupBox medidasAutomaticas1 = this.fraExportarMedidasAutomaticas;
point1 = new Point(1100, 59);
Point point53 = point1;
medidasAutomaticas1.Location = point53;
this.fraExportarMedidasAutomaticas.Name = "fraExportarMedidasAutomaticas";
GroupBox medidasAutomaticas2 = this.fraExportarMedidasAutomaticas;
size1 = new Size(473, 205);
Size size53 = size1;
medidasAutomaticas2.Size = size53;
this.fraExportarMedidasAutomaticas.TabIndex = 202;
this.fraExportarMedidasAutomaticas.TabStop = false;
this.RadioButton5.AutoSize = true;
RadioButton radioButton5_1 = this.RadioButton5;
point1 = new Point(350, 175);
Point point54 = point1;
radioButton5_1.Location = point54;
this.RadioButton5.Name = "RadioButton5";
RadioButton radioButton5_2 = this.RadioButton5;
size1 = new Size(83, 17);
Size size54 = size1;
radioButton5_2.Size = size54;
this.RadioButton5.TabIndex = 8;
this.RadioButton5.Text = "Uncheck All";
this.RadioButton5.UseVisualStyleBackColor = true;
this.RadioButton4.AutoSize = true;
this.RadioButton4.Checked = true;
RadioButton radioButton4_1 = this.RadioButton4;
point1 = new Point(350, 152);
Point point55 = point1;