Example #1
0
 public IBHtmlMessageBox(GameView g, string htmlstring)
 {
     InitializeComponent();
     gv = g;
     button1.Text = "RETURN";
     button1.Font = gv.drawFontReg;
     this.IceBlinkButtonClose.Enabled = false;
     this.IceBlinkButtonResize.Enabled = false;
     this.IceBlinkButtonClose.Visible = false;
     this.IceBlinkButtonResize.Visible = false;
     this.MouseWheel += new System.Windows.Forms.MouseEventHandler(this.form_MouseWheel);
     hlb = new IbbHtmlLogBox(this, gv, 10, 30, 580, 400);
     hlb.AddHtmlTextToLog(htmlstring);
     hlb.numberOfLinesToShow = 16;
     hlb.AddHtmlTextToLog("");
     hlb.currentTopLineIndex = 0;
     //hlb.scrollToEnd();
 }