A
Al
Can anyone write this code in vb
string highligh(object ytdsales)
{
if (ytdSales.Equals(DBNull.Value)
{
return",<i> No Sales</i>;
}
else
{
if (((int) ytdSales) >1000)
{
return "Good sales"
}
}
basically, I am trying to know how to write functions with
both languages
Al
string highligh(object ytdsales)
{
if (ytdSales.Equals(DBNull.Value)
{
return",<i> No Sales</i>;
}
else
{
if (((int) ytdSales) >1000)
{
return "Good sales"
}
}
basically, I am trying to know how to write functions with
both languages
Al