Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by peace2007

  1. peace2007

    Voice Conference

    I was looking for a way to implement voice conference over internet as followings: I need to let many users connect to the server and hear the voice but only one user can speak at any time. I mean, each user can be put on a queue and speak for a few minutes and then the next user will speak. Any...
  2. peace2007

    Close Client's Browser

    I resolved it through this javascript function: function ExitBrowser(userid) { rnd++; //userid = location.search.substring( 1, location.search.length ); url = 'Server.aspx?action=Logout&u=' + userid + rnd; req = getAjax(); req.onreadystatechange = function(){ if(...
  3. peace2007

    Problems with using an activeX

    Could you take a look at this: http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=232630&SiteID=1 Actually I've added VAXBROADCASTCLIENTOCXLib.dll as a reference to my web application and have already registered the related ActiveX. It's concluded from the discussion in the above link that...
  4. peace2007

    Close Client's Browser

    Thanks for the information! However, I tried that but didn't help :(
  5. peace2007

    pop up menu

    Thanks for your reply! Actually I've done this but since if password is correct I should select the new tab, I have to do that through code behind page functions. That is, I call this from javascript code: [Ajax.AjaxMethod(HttpSessionStateRequirement.ReadWrite)] public void...
  6. peace2007

    Close Client's Browser

    Hi, I'm developing a web chat application and need to close one of user's browser or disable a few controls from server side. the exact thing I need to do is let one user make another user log out of chat room so I try to redirect it to another page and perform the logout action in it...
  7. peace2007

    Problems with using an activeX

    Hi Everybody, I'm using a prep-written Activex in my C# asp.net application. But when I try to call its functions (Global.vaxClientVoice.SetLicenceKey("TRIAL-LICENSE-KEY");), following exceptions is fired: System.Runtime.InteropServices.COMException was unhandled by user code...
  8. peace2007

    pop up menu

    Hi I have an asp tab control and I need to ask password when user tries to enter to a new tab so I though to open a popup menu on tab control and ask user for password. Is there any way for that?

Part and Inventory Search

Back
Top