Visual Studio 2008 – Windows Embedded con SQLite

¿Cómo probar si un DataSet está vacío?

¿Cómo probar si un DataSet está vacío? Esta sería la mejor forma para validar un DataSet vacío: if(ds != null) if(ds.Tables.Count > 0 ) if(ds.Tables[0].Rows.Count > 0) Aca un ejemplo: if (MiDataSet != null && MiDataSet.Tables.Count...
Visual Studio 2008 – Windows Embedded con SQLite

Verificar los controladores ODBC en C# .NET

Verificar los controladores ODBC en C# .NET El sistema operativo almacena una lista de los controladores ODBC instalados en el registro HKEY_LOCAL_MACHINE. Hay dos ubicaciones diferentes para los controladores de 32 bits y 64 bits: 32bit:...
Visual Studio 2008 – Windows Embedded con SQLite

System.Threading.Task no funciona

System.Threading.Task no funciona En algunas ocasiones no funciona el Threading al utilizar .NET 3.0 o .NET 3.5, apareciendo el siguiente mensaje: The type or namespace name 'Tasks' does not exist in the namespace 'System.Threading' (are you missing an assembly...