Convert C# to VB code
-
Hi all, I really need to convert the C# code below into VB. If possible can advise me where is the most approriate place to place this portion of code. The code is to wire the parent datagrid for the ItemCreated event and ItemDataBound event. Please help me.
private void InitializeComponent() { this.load += new System.EventHandler(this.Page_Load); this.dgRegion.ItemCreated += new DataGridItemEventHandler(dgRegion_ItemCreated); this.dgRegion.ItemDataBound += new System.Web.UI.WebControls.DataGridItemEventHandler(this.dgRegion_ItemDataBound); }
Thanks in advance, Chiari -
Hi all, I really need to convert the C# code below into VB. If possible can advise me where is the most approriate place to place this portion of code. The code is to wire the parent datagrid for the ItemCreated event and ItemDataBound event. Please help me.
private void InitializeComponent() { this.load += new System.EventHandler(this.Page_Load); this.dgRegion.ItemCreated += new DataGridItemEventHandler(dgRegion_ItemCreated); this.dgRegion.ItemDataBound += new System.Web.UI.WebControls.DataGridItemEventHandler(this.dgRegion_ItemDataBound); }
Thanks in advance, Chiari -
Hi all, I really need to convert the C# code below into VB. If possible can advise me where is the most approriate place to place this portion of code. The code is to wire the parent datagrid for the ItemCreated event and ItemDataBound event. Please help me.
private void InitializeComponent() { this.load += new System.EventHandler(this.Page_Load); this.dgRegion.ItemCreated += new DataGridItemEventHandler(dgRegion_ItemCreated); this.dgRegion.ItemDataBound += new System.Web.UI.WebControls.DataGridItemEventHandler(this.dgRegion_ItemDataBound); }
Thanks in advance, Chiarihttp://www.carlosag.net/Tools/CodeTranslator/Default.aspx This might help u. Check it Srinu