This is a discussion on Audio Conferencing within the C# Programming forums, part of the Software Development category; Hi, I am doing a project of Audio Conferencing in c#.net. It works fine in c# windows application. But, ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
| |||
| Hi, I am doing a project of Audio Conferencing in c#.net. It works fine in c# windows application. But, In web application, the following error occurs. Can't enumerate any more, the associated data is missing 0x80040002.. Can anyone tell me how to fix this bug. |
| Sponsored Links |
| |||
| My first guess would be virus protection is getting in the way. If you have active virus scanning, turn it off, try it again, and see if it works then. If that's the culprit, then you might be able to figure out a way around it. Pete |
| |||
| I think this error comes because of your calling function(build-in) return failed. For example if you use the following function, it will be return this error code when it fails. Public Function ExecuteCommand( _ ByVal Command As String _ ) As AgExecCmdResult To solve this kind of problem, you have to catch the error. in the .NET languages you need to catch an exception of type System.Runtime.InteropServices.COMException. Try Me.AxAgUiAxVOCntrl1.Application.ExecuteCommand("Ba d command") Catch ex As System.Runtime.InteropServices.COMException MsgBox("The command failed: " & ex.ErrorCode & " [" & ex.Message & "]") End Try Hope it will be helpful for you. thanks ![]()
__________________ Karpagarajan. R Necessity is the mother of invention |
![]() |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Audio Record in ASP.NET | kingmaker | ASP and ASP.NET Programming | 12 | 01-08-2008 05:45 AM |
| Full duplex audio conversation in .NET | kingmaker | C# Programming | 0 | 07-19-2007 10:44 PM |
| Full duplex audio conversation in .NET | kingmaker | C# Programming | 0 | 07-18-2007 10:36 PM |
| How to get the audio from MicroPhone? | Balasubramanian.S | C# Programming | 2 | 04-11-2007 02:57 AM |
| How to Add Flash, Video, and Audio to Web Pages | killerkev06 | Web Design Help | 3 | 03-22-2007 04:46 AM |