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.

162 lines
6.6 KiB

8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
  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.chTitle = new System.Windows.Forms.CheckBox();
  37. this.SuspendLayout();
  38. //
  39. // lstUsers
  40. //
  41. this.lstUsers.FormattingEnabled = true;
  42. this.lstUsers.Location = new System.Drawing.Point(25, 15);
  43. this.lstUsers.Name = "lstUsers";
  44. this.lstUsers.Size = new System.Drawing.Size(180, 264);
  45. this.lstUsers.TabIndex = 0;
  46. //
  47. // lstChat
  48. //
  49. this.lstChat.FormattingEnabled = true;
  50. this.lstChat.Location = new System.Drawing.Point(227, 14);
  51. this.lstChat.Name = "lstChat";
  52. this.lstChat.Size = new System.Drawing.Size(969, 615);
  53. this.lstChat.TabIndex = 1;
  54. //
  55. // cmdExportAll
  56. //
  57. this.cmdExportAll.Location = new System.Drawing.Point(25, 568);
  58. this.cmdExportAll.Name = "cmdExportAll";
  59. this.cmdExportAll.Size = new System.Drawing.Size(152, 61);
  60. this.cmdExportAll.TabIndex = 2;
  61. this.cmdExportAll.Text = "Export All To Text File";
  62. this.cmdExportAll.UseVisualStyleBackColor = true;
  63. this.cmdExportAll.Click += new System.EventHandler(this.cmdExportAll_Click);
  64. //
  65. // cmdExport
  66. //
  67. this.cmdExport.Location = new System.Drawing.Point(25, 501);
  68. this.cmdExport.Name = "cmdExport";
  69. this.cmdExport.Size = new System.Drawing.Size(152, 61);
  70. this.cmdExport.TabIndex = 3;
  71. this.cmdExport.Text = "Export Selected to Text File";
  72. this.cmdExport.UseVisualStyleBackColor = true;
  73. this.cmdExport.Click += new System.EventHandler(this.cmdExport_Click);
  74. //
  75. // cmdAdd
  76. //
  77. this.cmdAdd.Location = new System.Drawing.Point(25, 367);
  78. this.cmdAdd.Name = "cmdAdd";
  79. this.cmdAdd.Size = new System.Drawing.Size(152, 61);
  80. this.cmdAdd.TabIndex = 4;
  81. this.cmdAdd.Text = "View History for Selected User";
  82. this.cmdAdd.UseVisualStyleBackColor = true;
  83. this.cmdAdd.Click += new System.EventHandler(this.cmdAdd_Click);
  84. //
  85. // cmdClear
  86. //
  87. this.cmdClear.Location = new System.Drawing.Point(25, 434);
  88. this.cmdClear.Name = "cmdClear";
  89. this.cmdClear.Size = new System.Drawing.Size(152, 61);
  90. this.cmdClear.TabIndex = 5;
  91. this.cmdClear.Text = "Clear";
  92. this.cmdClear.UseVisualStyleBackColor = true;
  93. this.cmdClear.Click += new System.EventHandler(this.cmdClear_Click);
  94. //
  95. // chTime
  96. //
  97. this.chTime.AutoSize = true;
  98. this.chTime.Location = new System.Drawing.Point(12, 285);
  99. this.chTime.Name = "chTime";
  100. this.chTime.Size = new System.Drawing.Size(129, 17);
  101. this.chTime.TabIndex = 6;
  102. this.chTime.Text = "Include a Time Stamp";
  103. this.chTime.UseVisualStyleBackColor = true;
  104. //
  105. // chUser
  106. //
  107. this.chUser.AutoSize = true;
  108. this.chUser.Location = new System.Drawing.Point(12, 308);
  109. this.chUser.Name = "chUser";
  110. this.chUser.Size = new System.Drawing.Size(208, 17);
  111. this.chUser.TabIndex = 7;
  112. this.chUser.Text = "Include a User Tag Infront of Message";
  113. this.chUser.UseVisualStyleBackColor = true;
  114. //
  115. // chTitle
  116. //
  117. this.chTitle.AutoSize = true;
  118. this.chTitle.Location = new System.Drawing.Point(12, 331);
  119. this.chTitle.Name = "chTitle";
  120. this.chTitle.Size = new System.Drawing.Size(149, 17);
  121. this.chTitle.TabIndex = 8;
  122. this.chTitle.Text = "Include Conversation Title";
  123. this.chTitle.UseVisualStyleBackColor = true;
  124. //
  125. // FrmMain
  126. //
  127. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  128. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  129. this.ClientSize = new System.Drawing.Size(1208, 640);
  130. this.Controls.Add(this.chTitle);
  131. this.Controls.Add(this.chUser);
  132. this.Controls.Add(this.chTime);
  133. this.Controls.Add(this.cmdClear);
  134. this.Controls.Add(this.cmdAdd);
  135. this.Controls.Add(this.cmdExport);
  136. this.Controls.Add(this.cmdExportAll);
  137. this.Controls.Add(this.lstChat);
  138. this.Controls.Add(this.lstUsers);
  139. this.Name = "FrmMain";
  140. this.Text = "Skype History Viewer by Jrtechs";
  141. this.ResumeLayout(false);
  142. this.PerformLayout();
  143. }
  144. #endregion
  145. private System.Windows.Forms.ListBox lstUsers;
  146. private System.Windows.Forms.ListBox lstChat;
  147. private System.Windows.Forms.Button cmdExportAll;
  148. private System.Windows.Forms.Button cmdExport;
  149. private System.Windows.Forms.Button cmdAdd;
  150. private System.Windows.Forms.Button cmdClear;
  151. private System.Windows.Forms.CheckBox chTime;
  152. private System.Windows.Forms.CheckBox chUser;
  153. private System.Windows.Forms.CheckBox chTitle;
  154. }
  155. }