Creating a simple HTML Editor using Web brower control Create a basic Winform Appln. Drag a Webbrowser( end in the list ) from Toolbox. To create buttons drag a Toolstrip control (near webbrowser ctrl in the list 'Commoncontrols' ) from Toolbox. You can add buttons, text box, progressbar etc by clicking. c To make the Web browser control editable you have to write the following code while initializing. InitializeComponent(); webBrowser1.DocumentText = "<HTML><BODY contentEditable='true'></BODY></HTML>"; toolStripComboFontSize.SelectedIndex = 2; Double click on buttons to generate events. Variable possibilities are there . Some are given below, 1. Change text color if (colorDialog1.ShowDialog() == DialogResult.OK) ...
DayOfWeek ------------------ Returns the weekday index for date (1 = Sunday, 2 = Monday, …, 7 = Saturday). These index values correspond to the ODBC standard. Weekday ------------ 0 = Monday , 1 = Tuesday, 2 = Wednesday, ...... Sunday = 6). DayName ------------ Weekday name of the date.
I have been wonderinghow to do this , microsoft ist currently not encouraging people to use DataSource property. Evenif its existing its not enabled. ############################################################# BindingSource bs = new BindingSource(); Dictionary<int, String> dicKeyValue = new Dictionary<int, String>(); // Add key, values to the dictionary while (Reader.Read()) { dicKeyValue.Add(Convert.ToInt32(Reader["id"]), Convert.ToInt32(Reader["name"])); } // Set the datasource of BindingSource bs.DataSource = dicKeyValue; cListBox.DataSource = bs...
Kommentare
Kommentar veröffentlichen