ExceptionForm.Designer.cs 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. namespace FastReport.Forms
  2. {
  3. partial class ExceptionForm
  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.lblHint = new System.Windows.Forms.Label();
  29. this.lblStack = new System.Windows.Forms.Label();
  30. this.tbStack = new System.Windows.Forms.TextBox();
  31. this.lblException = new System.Windows.Forms.Label();
  32. this.btnCopyToClipboard = new System.Windows.Forms.Button();
  33. this.SuspendLayout();
  34. //
  35. // btnOk
  36. //
  37. this.btnOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  38. this.btnOk.Location = new System.Drawing.Point(252, 92);
  39. //
  40. // btnCancel
  41. //
  42. this.btnCancel.Location = new System.Drawing.Point(8, 232);
  43. this.btnCancel.Visible = false;
  44. //
  45. // lblHint
  46. //
  47. this.lblHint.AutoSize = true;
  48. this.lblHint.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  49. this.lblHint.Location = new System.Drawing.Point(12, 12);
  50. this.lblHint.Name = "lblHint";
  51. this.lblHint.Size = new System.Drawing.Size(275, 13);
  52. this.lblHint.TabIndex = 1;
  53. this.lblHint.Text = "Your report has thrown the following exception:";
  54. //
  55. // lblStack
  56. //
  57. this.lblStack.AutoSize = true;
  58. this.lblStack.Location = new System.Drawing.Point(12, 108);
  59. this.lblStack.Name = "lblStack";
  60. this.lblStack.Size = new System.Drawing.Size(65, 13);
  61. this.lblStack.TabIndex = 2;
  62. this.lblStack.Text = "Stack trace:";
  63. //
  64. // tbStack
  65. //
  66. this.tbStack.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  67. | System.Windows.Forms.AnchorStyles.Left)
  68. | System.Windows.Forms.AnchorStyles.Right)));
  69. this.tbStack.Location = new System.Drawing.Point(12, 128);
  70. this.tbStack.Multiline = true;
  71. this.tbStack.Name = "tbStack";
  72. this.tbStack.ReadOnly = true;
  73. this.tbStack.ScrollBars = System.Windows.Forms.ScrollBars.Both;
  74. this.tbStack.Size = new System.Drawing.Size(433, 148);
  75. this.tbStack.TabIndex = 3;
  76. this.tbStack.WordWrap = false;
  77. //
  78. // lblException
  79. //
  80. this.lblException.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  81. | System.Windows.Forms.AnchorStyles.Right)));
  82. this.lblException.Location = new System.Drawing.Point(12, 32);
  83. this.lblException.Name = "lblException";
  84. this.lblException.Size = new System.Drawing.Size(433, 52);
  85. this.lblException.TabIndex = 4;
  86. this.lblException.Text = "label3";
  87. //
  88. // btnCopyToClipboard
  89. //
  90. this.btnCopyToClipboard.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  91. this.btnCopyToClipboard.Location = new System.Drawing.Point(332, 92);
  92. this.btnCopyToClipboard.Name = "btnCopyToClipboard";
  93. this.btnCopyToClipboard.Size = new System.Drawing.Size(114, 23);
  94. this.btnCopyToClipboard.TabIndex = 5;
  95. this.btnCopyToClipboard.Text = "Copy to clipboard";
  96. this.btnCopyToClipboard.UseVisualStyleBackColor = true;
  97. this.btnCopyToClipboard.Click += new System.EventHandler(this.btnCopyToClipboard_Click);
  98. //
  99. // ExceptionForm
  100. //
  101. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  102. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  103. this.ClientSize = new System.Drawing.Size(457, 288);
  104. this.Controls.Add(this.btnCopyToClipboard);
  105. this.Controls.Add(this.lblException);
  106. this.Controls.Add(this.tbStack);
  107. this.Controls.Add(this.lblHint);
  108. this.Controls.Add(this.lblStack);
  109. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Sizable;
  110. this.MinimumSize = new System.Drawing.Size(320, 320);
  111. this.Name = "ExceptionForm";
  112. this.ShowIcon = false;
  113. this.Text = "Exception";
  114. this.Shown += new System.EventHandler(this.ExceptionForm_Shown);
  115. this.Controls.SetChildIndex(this.btnOk, 0);
  116. this.Controls.SetChildIndex(this.lblStack, 0);
  117. this.Controls.SetChildIndex(this.lblHint, 0);
  118. this.Controls.SetChildIndex(this.btnCancel, 0);
  119. this.Controls.SetChildIndex(this.tbStack, 0);
  120. this.Controls.SetChildIndex(this.lblException, 0);
  121. this.Controls.SetChildIndex(this.btnCopyToClipboard, 0);
  122. this.ResumeLayout(false);
  123. this.PerformLayout();
  124. }
  125. #endregion
  126. private System.Windows.Forms.Label lblHint;
  127. private System.Windows.Forms.Label lblStack;
  128. private System.Windows.Forms.TextBox tbStack;
  129. private System.Windows.Forms.Label lblException;
  130. private System.Windows.Forms.Button btnCopyToClipboard;
  131. }
  132. }