A skype history message viewer written in c#
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

149 lines
6.1 KiB

  1. namespace Skype_History_Viewer
  2. {
  3. partial class FrmMain
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.lstUsers = new System.Windows.Forms.ListBox();
  29. this.lstChat = new System.Windows.Forms.ListBox();
  30. this.cmdExportAll = new System.Windows.Forms.Button();
  31. this.cmdExport = new System.Windows.Forms.Button();
  32. this.cmdAdd = new System.Windows.Forms.Button();
  33. this.cmdClear = new System.Windows.Forms.Button();
  34. this.chTime = new System.Windows.Forms.CheckBox();
  35. this.chUser = new System.Windows.Forms.CheckBox();
  36. this.SuspendLayout();
  37. //
  38. // lstUsers
  39. //
  40. this.lstUsers.FormattingEnabled = true;
  41. this.lstUsers.Location = new System.Drawing.Point(25, 15);
  42. this.lstUsers.Name = "lstUsers";
  43. this.lstUsers.Size = new System.Drawing.Size(180, 264);
  44. this.lstUsers.TabIndex = 0;
  45. //
  46. // lstChat
  47. //
  48. this.lstChat.FormattingEnabled = true;
  49. this.lstChat.Location = new System.Drawing.Point(227, 14);
  50. this.lstChat.Name = "lstChat";
  51. this.lstChat.Size = new System.Drawing.Size(756, 615);
  52. this.lstChat.TabIndex = 1;
  53. //
  54. // cmdExportAll
  55. //
  56. this.cmdExportAll.Location = new System.Drawing.Point(25, 568);
  57. this.cmdExportAll.Name = "cmdExportAll";
  58. this.cmdExportAll.Size = new System.Drawing.Size(152, 61);
  59. this.cmdExportAll.TabIndex = 2;
  60. this.cmdExportAll.Text = "Export All To Text File";
  61. this.cmdExportAll.UseVisualStyleBackColor = true;
  62. this.cmdExportAll.Click += new System.EventHandler(this.cmdExportAll_Click);
  63. //
  64. // cmdExport
  65. //
  66. this.cmdExport.Location = new System.Drawing.Point(25, 501);
  67. this.cmdExport.Name = "cmdExport";
  68. this.cmdExport.Size = new System.Drawing.Size(152, 61);
  69. this.cmdExport.TabIndex = 3;
  70. this.cmdExport.Text = "Export Selected to Text File";
  71. this.cmdExport.UseVisualStyleBackColor = true;
  72. this.cmdExport.Click += new System.EventHandler(this.cmdExport_Click);
  73. //
  74. // cmdAdd
  75. //
  76. this.cmdAdd.Location = new System.Drawing.Point(25, 367);
  77. this.cmdAdd.Name = "cmdAdd";
  78. this.cmdAdd.Size = new System.Drawing.Size(152, 61);
  79. this.cmdAdd.TabIndex = 4;
  80. this.cmdAdd.Text = "View History for Selected User";
  81. this.cmdAdd.UseVisualStyleBackColor = true;
  82. this.cmdAdd.Click += new System.EventHandler(this.cmdAdd_Click);
  83. //
  84. // cmdClear
  85. //
  86. this.cmdClear.Location = new System.Drawing.Point(25, 434);
  87. this.cmdClear.Name = "cmdClear";
  88. this.cmdClear.Size = new System.Drawing.Size(152, 61);
  89. this.cmdClear.TabIndex = 5;
  90. this.cmdClear.Text = "Clear";
  91. this.cmdClear.UseVisualStyleBackColor = true;
  92. this.cmdClear.Click += new System.EventHandler(this.cmdClear_Click);
  93. //
  94. // chTime
  95. //
  96. this.chTime.AutoSize = true;
  97. this.chTime.Location = new System.Drawing.Point(13, 297);
  98. this.chTime.Name = "chTime";
  99. this.chTime.Size = new System.Drawing.Size(129, 17);
  100. this.chTime.TabIndex = 6;
  101. this.chTime.Text = "Include a Time Stamp";
  102. this.chTime.UseVisualStyleBackColor = true;
  103. //
  104. // chUser
  105. //
  106. this.chUser.AutoSize = true;
  107. this.chUser.Location = new System.Drawing.Point(13, 320);
  108. this.chUser.Name = "chUser";
  109. this.chUser.Size = new System.Drawing.Size(208, 17);
  110. this.chUser.TabIndex = 7;
  111. this.chUser.Text = "Include a User Tag Infront of Message";
  112. this.chUser.UseVisualStyleBackColor = true;
  113. //
  114. // FrmMain
  115. //
  116. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  117. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  118. this.ClientSize = new System.Drawing.Size(995, 646);
  119. this.Controls.Add(this.chUser);
  120. this.Controls.Add(this.chTime);
  121. this.Controls.Add(this.cmdClear);
  122. this.Controls.Add(this.cmdAdd);
  123. this.Controls.Add(this.cmdExport);
  124. this.Controls.Add(this.cmdExportAll);
  125. this.Controls.Add(this.lstChat);
  126. this.Controls.Add(this.lstUsers);
  127. this.Name = "FrmMain";
  128. this.Text = "Skype History Viewer by Jrtechs";
  129. this.ResumeLayout(false);
  130. this.PerformLayout();
  131. }
  132. #endregion
  133. private System.Windows.Forms.ListBox lstUsers;
  134. private System.Windows.Forms.ListBox lstChat;
  135. private System.Windows.Forms.Button cmdExportAll;
  136. private System.Windows.Forms.Button cmdExport;
  137. private System.Windows.Forms.Button cmdAdd;
  138. private System.Windows.Forms.Button cmdClear;
  139. private System.Windows.Forms.CheckBox chTime;
  140. private System.Windows.Forms.CheckBox chUser;
  141. }
  142. }