﻿<?xml version="1.0" encoding="utf-8"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Intersoft Community - WebCombo - WebCombo asign OnInitializeRow server side Visual Basic</title><link>http://www.intersoftsolutions.com/Community/WebCombo/WebCombo-asign-OnInitializeRow-server-side-Visual-Basic/</link><description /><generator>http://www.intersoftsolutions.com</generator><language>en</language><copyright>Copyright 2002 - 2015 Intersoft Solutions Corp. All rights reserved.</copyright><ttl>60</ttl><item><title>WebCombo asign OnInitializeRow server side Visual Basic</title><link>http://www.intersoftsolutions.com/Community/WebCombo/WebCombo-asign-OnInitializeRow-server-side-Visual-Basic/</link><pubDate>Thu, 10 Nov 2011 21:57:16 GMT</pubDate><dc:creator>yudi</dc:creator><category>WebCombo OnInitializeRow Visual Basic</category><description>&lt;p&gt;&lt;span style="font-family: 'segoe ui','sans-serif'; color: #1f497d; font-size: 9pt;"&gt;Glad to hear the good news.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: 'segoe ui','sans-serif'; color: #1f497d; font-size: 9pt;"&gt;Should you need further assistance or run into any problems regarding our controls, feel free to post it into our forum. We would be happy to assist you again.&lt;/span&gt;</description></item><item><title>WebCombo asign OnInitializeRow server side Visual Basic</title><link>http://www.intersoftsolutions.com/Community/WebCombo/WebCombo-asign-OnInitializeRow-server-side-Visual-Basic/</link><pubDate>Thu, 10 Nov 2011 03:07:06 GMT</pubDate><dc:creator>jbailon@grupovillar.es</dc:creator><category>WebCombo OnInitializeRow Visual Basic</category><description>&lt;p&gt;Thanks Yudi&lt;/p&gt;</description></item><item><title>WebCombo asign OnInitializeRow server side Visual Basic</title><link>http://www.intersoftsolutions.com/Community/WebCombo/WebCombo-asign-OnInitializeRow-server-side-Visual-Basic/</link><pubDate>Wed, 09 Nov 2011 04:15:06 GMT</pubDate><dc:creator>yudi</dc:creator><category>WebCombo OnInitializeRow Visual Basic</category><description>&lt;p&gt;&lt;span style="font-family: 'segoe ui', 'sans-serif'; color: #1f497d; font-size: 9pt"&gt;Please try to use the following snippet code in order to assign the OnInitializeRow method in VB.&lt;/span&gt;&lt;/p&gt;&lt;pre&gt;&lt;span style="font-family: 'consolas', 'courier new'; color: blue; font-size: 9pt"&gt;Protected Sub&lt;/span&gt; &lt;span style="font-family: 'consolas', 'courier new'; font-size: 9pt"&gt;Page_Load(&lt;/span&gt;&lt;span style="font-family: 'consolas', 'courier new'; color: blue; font-size: 9pt"&gt;ByVal&lt;/span&gt; &lt;span style="font-family: 'consolas', 'courier new'; font-size: 9pt"&gt;sender&lt;/span&gt; &lt;span style="font-family: 'consolas', 'courier new'; color: blue; font-size: 9pt"&gt;As Object&lt;/span&gt;&lt;span style="font-family: 'consolas', 'courier new'; font-size: 9pt"&gt;,&lt;/span&gt; &lt;span style="font-family: 'consolas', 'courier new'; color: blue; font-size: 9pt"&gt;ByVal&lt;/span&gt; &lt;span style="font-family: 'consolas', 'courier new'; font-size: 9pt"&gt;e&lt;/span&gt; &lt;span style="font-family: 'consolas', 'courier new'; color: blue; font-size: 9pt"&gt;As&lt;/span&gt; &lt;span style="font-family: 'consolas', 'courier new'; color: #2b91af; font-size: 9pt"&gt;EventArgs&lt;/span&gt;&lt;span style="font-family: 'consolas', 'courier new'; font-size: 9pt"&gt;)
    ...&lt;/span&gt;
    &lt;span style="font-family: 'consolas', 'courier new'; color: green; font-size: 9pt"&gt;' Setup Events&lt;/span&gt;
    &lt;span style="font-family: 'consolas', 'courier new'; color: blue; font-size: 9pt"&gt;AddHandler&lt;/span&gt; &lt;span style="font-family: 'consolas', 'courier new'; font-size: 9pt"&gt;combo.InitializeRow,&lt;/span&gt; &lt;span style="font-family: 'consolas', 'courier new'; color: blue; font-size: 9pt"&gt;AddressOf&lt;/span&gt; &lt;span style="font-family: 'consolas', 'courier new'; font-size: 9pt"&gt;combo_InitializeRow
    ...&lt;/span&gt;
&lt;span style="font-family: 'consolas', 'courier new'; color: blue; font-size: 9pt"&gt;End Sub

Private Sub&lt;/span&gt; &lt;span style="font-family: 'consolas', 'courier new'; font-size: 9pt"&gt;combo_InitializeRow(sender&lt;/span&gt; &lt;span style="font-family: 'consolas', 'courier new'; color: blue; font-size: 9pt"&gt;As Object&lt;/span&gt;&lt;span style="font-family: 'consolas', 'courier new'; font-size: 9pt"&gt;, e&lt;/span&gt; &lt;span style="font-family: 'consolas', 'courier new'; color: blue; font-size: 9pt"&gt;As&lt;/span&gt; &lt;span style="font-family: 'consolas', 'courier new'; color: #2b91af; font-size: 9pt"&gt;RowEventArgs&lt;/span&gt;&lt;span style="font-family: 'consolas', 'courier new'; font-size: 9pt"&gt;)&lt;/span&gt;
    &lt;span style="font-family: 'consolas', 'courier new'; color: blue; font-size: 9pt"&gt;Throw New&lt;/span&gt; &lt;span style="font-family: 'consolas', 'courier new'; color: #2b91af; font-size: 9pt"&gt;NotImplementedException&lt;/span&gt;
&lt;span style="font-family: 'consolas', 'courier new'; color: blue; font-size: 9pt"&gt;End Sub&lt;/span&gt;&lt;/pre&gt;
&lt;p&gt;&lt;span style="font-family: 'segoe ui', 'sans-serif'; color: #1f497d; font-size: 9pt"&gt;Hope this helps.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>WebCombo asign OnInitializeRow server side Visual Basic</title><link>http://www.intersoftsolutions.com/Community/WebCombo/WebCombo-asign-OnInitializeRow-server-side-Visual-Basic/</link><pubDate>Mon, 07 Nov 2011 11:44:52 GMT</pubDate><dc:creator>jbailon@grupovillar.es</dc:creator><category>WebCombo OnInitializeRow Visual Basic</category><description>&lt;p&gt;I'm creating a webcombo at run time in server side. How can i assign the OnInitializeRow method in VB? with combo.OnInitilizeRow not is posible&lt;/p&gt;</description></item></channel></rss>