-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfrmMain.frm
3020 lines (2696 loc) · 110 KB
/
frmMain.frm
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
VERSION 5.00
Object = "{79423413-BFDF-483D-BBB2-0D3B88187EB4}#1.0#0"; "WhoIs.ocx"
Object = "{F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0"; "COMDLG32.OCX"
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Object = "{BDC217C8-ED16-11CD-956C-0000C04E4C0A}#1.1#0"; "TABCTL32.OCX"
Object = "{3B7C8863-D78F-101B-B9B5-04021C009402}#1.2#0"; "RICHTX32.OCX"
Object = "{0E59F1D2-1FBE-11D0-8FF2-00A0D10038BC}#1.0#0"; "msscript.ocx"
Begin VB.Form frmMain
Caption = "Domain Manager Pro"
ClientHeight = 6390
ClientLeft = 600
ClientTop = 1155
ClientWidth = 10185
Icon = "frmMain.frx":0000
LinkTopic = "Form1"
ScaleHeight = 6390
ScaleWidth = 10185
StartUpPosition = 2 'CenterScreen
Begin WhoIsControl.WhoIs WhoIs1
Left = 4200
Top = 0
_ExtentX = 1508
_ExtentY = 661
Server = ""
Query = ""
End
Begin MSComDlg.CommonDialog CD
Left = 5040
Top = 1440
_ExtentX = 847
_ExtentY = 847
_Version = 393216
End
Begin TabDlg.SSTab SSTab
Height = 6375
Left = 120
TabIndex = 0
Top = 0
Width = 9975
_ExtentX = 17595
_ExtentY = 11245
_Version = 393216
Tabs = 4
TabsPerRow = 4
TabHeight = 520
TabCaption(0) = "Domain Manager"
TabPicture(0) = "frmMain.frx":6852
Tab(0).ControlEnabled= -1 'True
Tab(0).Control(0)= "lblSelectAll"
Tab(0).Control(0).Enabled= 0 'False
Tab(0).Control(1)= "lblUnSelectAll"
Tab(0).Control(1).Enabled= 0 'False
Tab(0).Control(2)= "lblClearAll"
Tab(0).Control(2).Enabled= 0 'False
Tab(0).Control(3)= "lstDomains"
Tab(0).Control(3).Enabled= 0 'False
Tab(0).Control(4)= "frameQuickAdd"
Tab(0).Control(4).Enabled= 0 'False
Tab(0).Control(5)= "cmdLoadDomains"
Tab(0).Control(5).Enabled= 0 'False
Tab(0).Control(6)= "cmdScanDomains"
Tab(0).Control(6).Enabled= 0 'False
Tab(0).Control(7)= "cmdExportCSV"
Tab(0).Control(7).Enabled= 0 'False
Tab(0).Control(8)= "cmdStop"
Tab(0).Control(8).Enabled= 0 'False
Tab(0).ControlCount= 9
TabCaption(1) = "Result Scanner"
TabPicture(1) = "frmMain.frx":686E
Tab(1).ControlEnabled= 0 'False
Tab(1).Control(0)= "llbPageRank"
Tab(1).Control(1)= "lblSecret"
Tab(1).Control(2)= "lblAWSKey"
Tab(1).Control(3)= "lblAlexa"
Tab(1).Control(4)= "lblSignup"
Tab(1).Control(5)= "ScriptControl1"
Tab(1).Control(6)= "txtBulkResult"
Tab(1).Control(7)= "chkPageRank"
Tab(1).Control(8)= "chkAlexa"
Tab(1).Control(9)= "chkOverture"
Tab(1).Control(10)= "chkAvailable"
Tab(1).Control(11)= "chkGoogleLinks"
Tab(1).Control(12)= "chkYahooLinks"
Tab(1).Control(13)= "chkMSNLinks"
Tab(1).Control(14)= "cmdScanResults"
Tab(1).Control(15)= "lstResults"
Tab(1).Control(16)= "cmdExportResults"
Tab(1).Control(17)= "cmdClearResults"
Tab(1).Control(18)= "txtAlexaSig"
Tab(1).Control(19)= "txtAccessKey"
Tab(1).Control(20)= "txtCode"
Tab(1).ControlCount= 21
TabCaption(2) = "Whois"
TabPicture(2) = "frmMain.frx":688A
Tab(2).ControlEnabled= 0 'False
Tab(2).Control(0)= "txtWhoisInfo"
Tab(2).Control(1)= "Whois"
Tab(2).Control(2)= "cmdWhois"
Tab(2).Control(3)= "txtDomainWhois"
Tab(2).Control(4)= "lblWhoisInfo"
Tab(2).Control(5)= "lblWhois"
Tab(2).ControlCount= 6
TabCaption(3) = "Alexa Information"
TabPicture(3) = "frmMain.frx":68A6
Tab(3).ControlEnabled= 0 'False
Tab(3).Control(0)= "lblAlexaDomains"
Tab(3).Control(1)= "Label1"
Tab(3).Control(2)= "Label2"
Tab(3).Control(3)= "Label3"
Tab(3).Control(4)= "lblSignUp2"
Tab(3).Control(5)= "lblAlexaTotal"
Tab(3).Control(6)= "lstAlexa"
Tab(3).Control(7)= "txtAlexaDomains"
Tab(3).Control(8)= "txtAlexaKey"
Tab(3).Control(9)= "txtAlexaSecretKey"
Tab(3).Control(10)= "cmdCheckAlexa"
Tab(3).Control(11)= "cmdAlexaExportCSV"
Tab(3).Control(12)= "cmdAlexaClearList"
Tab(3).Control(13)= "tmrAutoSave"
Tab(3).ControlCount= 14
Begin VB.Timer tmrAutoSave
Interval = 59000
Left = -70080
Top = 3240
End
Begin VB.CommandButton cmdAlexaClearList
Caption = "Clear &List"
Height = 375
Left = -68400
TabIndex = 49
Top = 3240
Width = 1455
End
Begin VB.CommandButton cmdAlexaExportCSV
Caption = "E&xport CSV"
Height = 375
Left = -72960
TabIndex = 48
Top = 3240
Width = 1575
End
Begin VB.CommandButton cmdCheckAlexa
Caption = "Check &Alexa"
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = -74760
TabIndex = 47
Top = 3240
Width = 1575
End
Begin VB.TextBox txtAlexaSecretKey
Height = 285
Left = -73200
TabIndex = 44
ToolTipText = "AWS Secret Access Key"
Top = 2760
Width = 3735
End
Begin VB.TextBox txtAlexaKey
Height = 285
Left = -73200
TabIndex = 43
ToolTipText = "AWS Access Key"
Top = 2400
Width = 3735
End
Begin VB.TextBox txtAlexaDomains
Height = 1575
Left = -74760
MultiLine = -1 'True
ScrollBars = 2 'Vertical
TabIndex = 38
Top = 720
Width = 9615
End
Begin VB.TextBox txtCode
Height = 1815
Left = -65280
MultiLine = -1 'True
ScrollBars = 3 'Both
TabIndex = 37
Text = "frmMain.frx":68C2
Top = 3240
Visible = 0 'False
Width = 3975
End
Begin VB.TextBox txtAccessKey
Height = 285
Left = -73320
TabIndex = 32
ToolTipText = "AWS Access Key"
Top = 2520
Width = 3735
End
Begin VB.TextBox txtAlexaSig
Height = 285
Left = -73320
TabIndex = 31
ToolTipText = "AWS Secret Access Key"
Top = 2880
Width = 3735
End
Begin VB.CommandButton cmdClearResults
Caption = "&Clear Results"
Height = 375
Left = -71040
TabIndex = 27
Top = 3600
Width = 1335
End
Begin VB.CommandButton cmdStop
Caption = "STOP"
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 8280
TabIndex = 26
Top = 480
Visible = 0 'False
Width = 1455
End
Begin VB.CommandButton cmdExportResults
Caption = "&Export Results"
Height = 375
Left = -72840
TabIndex = 25
Top = 3600
Width = 1575
End
Begin MSComctlLib.ListView lstResults
Height = 2175
Left = -74760
TabIndex = 24
Top = 4080
Width = 9375
_ExtentX = 16536
_ExtentY = 3836
View = 3
LabelWrap = -1 'True
HideSelection = -1 'True
AllowReorder = -1 'True
FullRowSelect = -1 'True
GridLines = -1 'True
_Version = 393217
ForeColor = -2147483640
BackColor = -2147483643
BorderStyle = 1
Appearance = 1
NumItems = 7
BeginProperty ColumnHeader(1) {BDD1F052-858B-11D1-B16A-00C0F0283628}
Text = "Domain Name"
Object.Width = 2540
EndProperty
BeginProperty ColumnHeader(2) {BDD1F052-858B-11D1-B16A-00C0F0283628}
SubItemIndex = 1
Text = "PageRank"
Object.Width = 2540
EndProperty
BeginProperty ColumnHeader(3) {BDD1F052-858B-11D1-B16A-00C0F0283628}
SubItemIndex = 2
Text = "Alexa"
Object.Width = 2540
EndProperty
BeginProperty ColumnHeader(4) {BDD1F052-858B-11D1-B16A-00C0F0283628}
SubItemIndex = 3
Text = "Overture"
Object.Width = 2540
EndProperty
BeginProperty ColumnHeader(5) {BDD1F052-858B-11D1-B16A-00C0F0283628}
SubItemIndex = 4
Text = "Google Result"
Object.Width = 2540
EndProperty
BeginProperty ColumnHeader(6) {BDD1F052-858B-11D1-B16A-00C0F0283628}
SubItemIndex = 5
Text = "Yahoo Result"
Object.Width = 2540
EndProperty
BeginProperty ColumnHeader(7) {BDD1F052-858B-11D1-B16A-00C0F0283628}
SubItemIndex = 6
Text = "Bing Result"
Object.Width = 2540
EndProperty
End
Begin VB.CommandButton cmdScanResults
Caption = "&Scan Domains"
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = -74760
TabIndex = 23
Top = 3600
Width = 1575
End
Begin VB.CheckBox chkMSNLinks
Caption = "Bing Links"
Height = 255
Left = -69000
TabIndex = 22
Top = 3240
Visible = 0 'False
Width = 1335
End
Begin VB.CheckBox chkYahooLinks
Caption = "Yahoo Links"
Height = 255
Left = -70320
TabIndex = 21
Top = 3240
Width = 1215
End
Begin VB.CheckBox chkGoogleLinks
Caption = "Google Links"
Height = 255
Left = -71640
TabIndex = 20
Top = 3240
Width = 1335
End
Begin VB.CheckBox chkAvailable
Caption = "Available?"
Height = 255
Left = -67560
TabIndex = 19
Top = 3240
Visible = 0 'False
Width = 1215
End
Begin VB.CheckBox chkOverture
Caption = "Overture"
Enabled = 0 'False
Height = 255
Left = -72720
TabIndex = 18
Top = 3240
Width = 1215
End
Begin VB.CheckBox chkAlexa
Caption = "Alexa"
Height = 255
Left = -73560
TabIndex = 17
Top = 3240
Value = 1 'Checked
Width = 855
End
Begin VB.CheckBox chkPageRank
Caption = "PageRank"
Height = 255
Left = -74760
TabIndex = 16
Top = 3240
Value = 1 'Checked
Width = 1215
End
Begin RichTextLib.RichTextBox txtWhoisInfo
Height = 4575
Left = -74760
TabIndex = 15
Top = 1200
Width = 9615
_ExtentX = 16960
_ExtentY = 8070
_Version = 393217
Enabled = -1 'True
ScrollBars = 3
TextRTF = $"frmMain.frx":7D7A
End
Begin WhoIsControl.WhoIs Whois
Left = -66600
Top = 480
_ExtentX = 873
_ExtentY = 661
Server = ""
Query = ""
End
Begin VB.CommandButton cmdWhois
Caption = "&Check Whois"
Height = 375
Left = -68880
TabIndex = 14
Top = 480
Width = 1215
End
Begin VB.TextBox txtDomainWhois
Height = 285
Left = -72360
TabIndex = 13
Top = 480
Width = 3255
End
Begin VB.TextBox txtBulkResult
Height = 1695
Left = -74760
MultiLine = -1 'True
ScrollBars = 3 'Both
TabIndex = 10
Top = 720
Width = 9375
End
Begin VB.CommandButton cmdExportCSV
Caption = "&Export CSV"
Height = 375
Left = 6840
TabIndex = 8
Top = 480
Width = 1335
End
Begin VB.CommandButton cmdScanDomains
Caption = "&Scan Domains"
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 8280
TabIndex = 7
Top = 480
Width = 1455
End
Begin VB.CommandButton cmdLoadDomains
Caption = "&Load Text File"
Height = 375
Left = 5400
TabIndex = 6
Top = 480
Width = 1335
End
Begin VB.Frame frameQuickAdd
Caption = "Quick Domain Add"
Height = 735
Left = 240
TabIndex = 2
Top = 360
Width = 5055
Begin VB.CommandButton cmdBulkAddDomain
Caption = "&Bulk Add"
Height = 375
Left = 3840
TabIndex = 5
Top = 240
Width = 975
End
Begin VB.TextBox txtDomain
Height = 285
Left = 120
TabIndex = 4
Top = 240
Width = 2655
End
Begin VB.CommandButton cmdAddDomain
Caption = "&Add"
Height = 375
Left = 2880
TabIndex = 3
Top = 240
Width = 855
End
End
Begin MSComctlLib.ListView lstDomains
Height = 4575
Left = 120
TabIndex = 1
Top = 1200
Width = 9615
_ExtentX = 16960
_ExtentY = 8070
View = 3
Sorted = -1 'True
MultiSelect = -1 'True
LabelWrap = -1 'True
HideSelection = -1 'True
AllowReorder = -1 'True
FullRowSelect = -1 'True
GridLines = -1 'True
_Version = 393217
ForeColor = -2147483640
BackColor = -2147483643
BorderStyle = 1
Appearance = 1
NumItems = 9
BeginProperty ColumnHeader(1) {BDD1F052-858B-11D1-B16A-00C0F0283628}
Text = "Domain"
Object.Width = 2540
EndProperty
BeginProperty ColumnHeader(2) {BDD1F052-858B-11D1-B16A-00C0F0283628}
SubItemIndex = 1
Text = "Registrar"
Object.Width = 2540
EndProperty
BeginProperty ColumnHeader(3) {BDD1F052-858B-11D1-B16A-00C0F0283628}
SubItemIndex = 2
Text = "Whois Server"
Object.Width = 2540
EndProperty
BeginProperty ColumnHeader(4) {BDD1F052-858B-11D1-B16A-00C0F0283628}
SubItemIndex = 3
Text = "Name Server 1"
Object.Width = 2540
EndProperty
BeginProperty ColumnHeader(5) {BDD1F052-858B-11D1-B16A-00C0F0283628}
SubItemIndex = 4
Text = "Name Server 2"
Object.Width = 2540
EndProperty
BeginProperty ColumnHeader(6) {BDD1F052-858B-11D1-B16A-00C0F0283628}
SubItemIndex = 5
Text = "Status"
Object.Width = 2540
EndProperty
BeginProperty ColumnHeader(7) {BDD1F052-858B-11D1-B16A-00C0F0283628}
SubItemIndex = 6
Text = "Updated Date"
Object.Width = 2540
EndProperty
BeginProperty ColumnHeader(8) {BDD1F052-858B-11D1-B16A-00C0F0283628}
SubItemIndex = 7
Text = "Created Date"
Object.Width = 2540
EndProperty
BeginProperty ColumnHeader(9) {BDD1F052-858B-11D1-B16A-00C0F0283628}
SubItemIndex = 8
Text = "Expiration Date"
Object.Width = 2540
EndProperty
End
Begin MSScriptControlCtl.ScriptControl ScriptControl1
Left = -67800
Top = 2760
_ExtentX = 1005
_ExtentY = 1005
Language = "JavaScript"
End
Begin MSComctlLib.ListView lstAlexa
Height = 2415
Left = -74760
TabIndex = 40
Top = 3720
Width = 9615
_ExtentX = 16960
_ExtentY = 4260
View = 3
LabelWrap = -1 'True
HideSelection = -1 'True
AllowReorder = -1 'True
FullRowSelect = -1 'True
GridLines = -1 'True
_Version = 393217
ForeColor = -2147483640
BackColor = -2147483643
BorderStyle = 1
Appearance = 1
NumItems = 13
BeginProperty ColumnHeader(1) {BDD1F052-858B-11D1-B16A-00C0F0283628}
Text = "Domain Name"
Object.Width = 2540
EndProperty
BeginProperty ColumnHeader(2) {BDD1F052-858B-11D1-B16A-00C0F0283628}
SubItemIndex = 1
Text = "Alexa Status"
Object.Width = 2540
EndProperty
BeginProperty ColumnHeader(3) {BDD1F052-858B-11D1-B16A-00C0F0283628}
SubItemIndex = 2
Text = "Rank"
Object.Width = 2540
EndProperty
BeginProperty ColumnHeader(4) {BDD1F052-858B-11D1-B16A-00C0F0283628}
SubItemIndex = 3
Text = "Reach"
Object.Width = 2540
EndProperty
BeginProperty ColumnHeader(5) {BDD1F052-858B-11D1-B16A-00C0F0283628}
SubItemIndex = 4
Text = "Full Name"
Object.Width = 2540
EndProperty
BeginProperty ColumnHeader(6) {BDD1F052-858B-11D1-B16A-00C0F0283628}
SubItemIndex = 5
Text = "Phone Number"
Object.Width = 2540
EndProperty
BeginProperty ColumnHeader(7) {BDD1F052-858B-11D1-B16A-00C0F0283628}
SubItemIndex = 6
Text = "Email"
Object.Width = 2540
EndProperty
BeginProperty ColumnHeader(8) {BDD1F052-858B-11D1-B16A-00C0F0283628}
SubItemIndex = 7
Text = "DMOZ"
Object.Width = 2540
EndProperty
BeginProperty ColumnHeader(9) {BDD1F052-858B-11D1-B16A-00C0F0283628}
SubItemIndex = 8
Text = "Title"
Object.Width = 2540
EndProperty
BeginProperty ColumnHeader(10) {BDD1F052-858B-11D1-B16A-00C0F0283628}
SubItemIndex = 9
Text = "Online Since"
Object.Width = 2540
EndProperty
BeginProperty ColumnHeader(11) {BDD1F052-858B-11D1-B16A-00C0F0283628}
SubItemIndex = 10
Text = "1 Month Reach Per Million"
Object.Width = 2540
EndProperty
BeginProperty ColumnHeader(12) {BDD1F052-858B-11D1-B16A-00C0F0283628}
SubItemIndex = 11
Text = "1 Month Pageviews per Million"
Object.Width = 2540
EndProperty
BeginProperty ColumnHeader(13) {BDD1F052-858B-11D1-B16A-00C0F0283628}
SubItemIndex = 12
Text = "Language"
Object.Width = 2540
EndProperty
End
Begin VB.Label lblAlexaTotal
BackStyle = 0 'Transparent
Height = 375
Left = -71280
TabIndex = 50
Top = 3240
Width = 2775
End
Begin VB.Label lblSignUp2
Alignment = 2 'Center
BackStyle = 0 'Transparent
Caption = "Signup Alexa Account"
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = -1 'True
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 495
Left = -69480
TabIndex = 46
Top = 2880
Width = 3735
End
Begin VB.Label Label3
BackStyle = 0 'Transparent
Caption = "<< These two fields require an AWS account you can signup by clicking the link below"
Height = 495
Left = -69360
TabIndex = 45
Top = 2400
Width = 3855
End
Begin VB.Label Label2
Caption = "Secret Access Key:"
Height = 255
Left = -74760
TabIndex = 42
Top = 2760
Width = 1455
End
Begin VB.Label Label1
Caption = "AWSAccessKeyId:"
Height = 255
Left = -74760
TabIndex = 41
Top = 2400
Width = 1935
End
Begin VB.Label lblAlexaDomains
Caption = "Enter Domains:"
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = -74760
TabIndex = 39
Top = 480
Width = 2535
End
Begin VB.Label lblSignup
Alignment = 2 'Center
BackStyle = 0 'Transparent
Caption = "Signup Alexa Account"
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = -1 'True
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 255
Left = -69360
TabIndex = 36
Top = 2950
Width = 3735
End
Begin VB.Label lblAlexa
BackStyle = 0 'Transparent
Caption = "<< These two fields require an AWS account you can signup by clicking the link below"
Height = 495
Left = -69360
TabIndex = 35
Top = 2520
Width = 3855
End
Begin VB.Label lblAWSKey
Caption = "AWSAccessKeyId:"
Height = 255
Left = -74760
TabIndex = 34
Top = 2520
Width = 1935
End
Begin VB.Label lblSecret
Caption = "Secret Access Key:"
Height = 255
Left = -74760
TabIndex = 33
Top = 2880
Width = 1455
End
Begin VB.Label lblClearAll
Alignment = 2 'Center
Caption = "Clear All Domains"
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = -1 'True
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 255
Left = 8040
TabIndex = 30
Top = 960
Width = 1575
End
Begin VB.Label lblUnSelectAll
Alignment = 2 'Center
Caption = "UnSelect All"
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = -1 'True
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 255
Left = 6360
TabIndex = 29
Top = 960
Width = 1215
End
Begin VB.Label lblSelectAll
Alignment = 2 'Center
Caption = "Select All"
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = -1 'True
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 255
Left = 5400
TabIndex = 28
Top = 960
Width = 855
End
Begin VB.Label lblWhoisInfo
Caption = "Whois Information:"
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = -74760
TabIndex = 12
Top = 960
Width = 2895
End
Begin VB.Label lblWhois
Caption = "Enter domain name here:"
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = -74640
TabIndex = 11
Top = 480
Width = 2895
End
Begin VB.Label llbPageRank
Caption = "Enter Domains:"
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = -74760
TabIndex = 9
Top = 480
Width = 3495
End
End
Begin VB.Menu mnuFile
Caption = "&File"
Begin VB.Menu mnuFileImport
Caption = "Import Domains"
Begin VB.Menu mnuFileLoadDomains
Caption = "&Load Domains Text File"
Shortcut = ^L
End
Begin VB.Menu mnuImportSep1
Caption = "-"
End
Begin VB.Menu mnuFileLoadCSVData
Caption = "Load &CSV Data"
Shortcut = ^D
End
Begin VB.Menu mnuFileImportSep2
Caption = "-"
End
Begin VB.Menu mnuImportRecent
Caption = "Recent Files"
Begin VB.Menu mnuMRUFiles
Caption = "Files:"
Enabled = 0 'False
Index = 0
End
Begin VB.Menu mnuMRUFiles
Caption = ""
Index = 1
Visible = 0 'False
End
Begin VB.Menu mnuMRUFiles
Caption = ""
Index = 2
Visible = 0 'False
End
Begin VB.Menu mnuMRUFiles
Caption = ""
Index = 3
Visible = 0 'False
End
Begin VB.Menu mnuMRUFiles
Caption = ""
Index = 4
Visible = 0 'False
End
Begin VB.Menu mnuMRUFiles
Caption = ""
Index = 5
Visible = 0 'False
End
End
End
Begin VB.Menu mnuFileExport
Caption = "Export Domains"
Begin VB.Menu mnuFileExportDomains
Caption = "&Export Domains CSV"
Shortcut = ^E
End
Begin VB.Menu mnuExportSep1
Caption = "-"
End
Begin VB.Menu mnuFileExportSelectedCSV
Caption = "Export Selected Domains CSV"
End
End
Begin VB.Menu mnuFilePrint
Caption = "&Print Domains Infomation"
End
Begin VB.Menu mnuFileCheckExpire
Caption = "C&heck For Expiring Domains"
End
Begin VB.Menu mnuFileSep3
Caption = "-"
Index = 0
End
Begin VB.Menu mnuFileClearAllDomains
Caption = "&Clear All Domains"
End
Begin VB.Menu mnuFileSep1
Caption = "-"
End
Begin VB.Menu mnuFileMinimizeTray
Caption = "&Minimize To Tray"
Shortcut = ^M
End
Begin VB.Menu mnuFileSep2
Caption = "-"
End
Begin VB.Menu mnuFileExit
Caption = "E&xit"
End
End
Begin VB.Menu mnuToolsCustomize
Caption = "&Domains"
Begin VB.Menu mnuCustomColums
Caption = "Database Columns"
Visible = 0 'False
End
Begin VB.Menu mnuDomainsRawWhoisData
Caption = "Raw Whois Data Viewer"
End
Begin VB.Menu mnuDomainsImportRawWhois
Caption = "Import Raw Whois Data for current domains"
End
Begin VB.Menu mnuCustomizeMenu
Caption = "Quick Links"
End
Begin VB.Menu mnuCustomizeSep1
Caption = "-"
End
Begin VB.Menu mnuOptions
Caption = "&Options"
End
End
Begin VB.Menu mnuSearch
Caption = "&Search"
End
Begin VB.Menu mnuReports
Caption = "&Reports"
Begin VB.Menu mnuReportsDomainReport
Caption = "Generate Domains Report"
End
Begin VB.Menu mnuResultsReport
Caption = "Generate Results Report"
End
Begin VB.Menu mnuReportsAlexaReport
Caption = "Generate Alexa Report"
End
End
Begin VB.Menu mnuHelp
Caption = "&Help"