Hi all ,i would like to find default Audio devicesin my desktop application, i used coredll.dll , while accessing the deviceID i m getting the follwoing error. i have tried TAPI , DirectX for Audio streaming no fruitfull result. code: if (KernelIoControl(IOCTL_HAL_GET_DEVICEID, IntPtr.Zero, 0, outbuff, nBuffSize, ref dwOutBytes)) Error : Unable to load DLL 'coredll.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E) could anyone suggest me whetehr we can use coredll.dll.
SelvaSR
Posts
-
coredll.dll Error -
How to refer dll from our Applicationi have created one dll and i refer this from my Application(Windows) while running it is showing COMException was unhandled Unknown error (0x80005000),can anyone suggest some solution.
-
SQLDMO.dll ErrorIn remote machine SQL server is installed(where i want to create DB and DSN) but no SQL server in my server. Exact working detail: Local Machine RDP to Network Server ( Here i m running Installation Setup to create DB and DSN(This DB and DSN i want to create in other Server machine))
-
SQLDMO.dll Errori m working in VS2005, while creating database locally no error but remotely it is showing the following error Retrieving the COM class factory for component with CLSID {10020200-E260-11CF-AE68-00AA004A34D5} failed due to the following error: 80040154
-
how to use variable form other class? C#use internal variable to access it from same namespace.
-
Dynamic Filling of Autocomplete TextBoxyeah.. searched ...but no clues around Dynamic filling..
modified on Tuesday, December 9, 2008 11:46 PM
-
Multicolumn Textboxhi.. i need multiple columns in Autocomplete Textbox which is reside inside the grid...
-
Dynamic Filling of Autocomplete TextBoxI need to fill Autocomplete textBox dynamically. any one have idea for that?
-
Connecting with remote serveri m trying to configure db in remote server through C# , locally it is configuring but in Remote Server db is is not creating. Following is the code public bool createDB(object sServerName, String sDBName,object sAdminUname,object sAdminPwd) { object objServerName; objServerName = sServerName; SQLDMO.SQLServer gSQLServerDMO = new SQLDMO.SQLServer(); SQLDMO.Database nDatabase = new SQLDMO.Database(); SQLDMO.DBFile nDBFileData = new SQLDMO.DBFile(); SQLDMO.LogFile nLogFile = new SQLDMO.LogFile(); try { gSQLServerDMO.Connect(objServerName, sAdminUname, sAdminPwd); nDatabase.Name = sDBName; nDBFileData.Name = sDBName; nDBFileData.PhysicalName = gSQLServerDMO.Registry.SQLDataRoot + "\\DATA\\" + sDBName + "_Data.mdf"; nDBFileData.PrimaryFile = true; nDBFileData.Size = 2; nDBFileData.FileGrowthType = SQLDMO.SQLDMO_GROWTH_TYPE.SQLDMOGrowth_MB; nDBFileData.FileGrowth = 1; //Adding DBFile object nDatabase.FileGroups.Item("PRIMARY").DBFiles.Add(nDBFileData); nLogFile.Name = sDBName + "_Log"; nLogFile.PhysicalName = gSQLServerDMO.Registry.SQLDataRoot + "\\DATA\\" + sDBName + "_Log.ldf"; nLogFile.Size = 2; nDatabase.TransactionLog.LogFiles.Add(nLogFile); gSQLServerDMO.Databases.Add(nDatabase); return true; } catch (Exception sqlDBException) { String errSqlDBexception = sqlDBException.Message; return false; } finally { gSQLServerDMO.DisConnect(); } } //Section for creating the database login and user in the above created Database.// public bool Createdatabaselogin(String sDataSource, string databsename, String sScriptName, String sUserId, String sPwd, string loginName, string loginpass) { try { string sqlConnectionString = "Data Source=" + sDataSource + ";Initial Catalog=" + databsename + ";USER ID=" + sUserId + "; PWD=" + sPwd + ";Persist Security Info=True"; SqlConnection conn = new SqlConnection(sqlConnectionString); Server ser