View Single Post
  #1 (permalink)  
Old 07-30-2007, 09:51 AM
oxygen oxygen is offline
D-Web Architect
 
Join Date: Jun 2007
Posts: 633
oxygen is on a distinguished road
Default Cannot implicitly convert type 'void' to 'System.Data.DataTable'

Cannot implicitly convert type 'void' to 'System.Data.DataTable'


private static void FromDictionary(SqlDataReader dr)
{
string eText = string.Empty;
DataTable dictionaryWords = new DataTable();
DataTable dt = new DataTable();
dt = dt.Load(dr);
if (dr != null)
{
dictionaryWords = dt; <<<<<<<<<< ERROR: Cannot implicitly convert type 'void' to 'System.Data.DataTable'
}
__________________
The OXYGEN
Delivers edgy, intelligent Technology to all...
Reply With Quote
Sponsored Links