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!

Search results for query: *

  • Users: Guern
  • Order by date
  1. Guern

    webbrowser control link.attacheventhandler memory issue

    Hi, Just can't figure out a solution for this one. If you run a webbrowser control and Dim link As HtmlElement Dim links As HtmlElementCollection = WebBrowser1.Document.Links For Each link In links link.AttachEventHandler("onclick", AddressOf LinkClicked) Next This is in the...
  2. Guern

    Avaya IP Office to 3300 via SIP

    Hi, Did you ever get your answer? Looking for the same solution now. IP500 running 4.2 to 3300.
  3. Guern

    Collection type with key for fast lookup but also itterated numericaly

    Hi, I'm trying to find a collection type with key that offers fast lookup but also can be itterated though in order of insertion. The reason fot this is I am using it as a first in first out object cache. The cache has maybe 30,000 items. I used the dictionary class but this eventualy...
  4. Guern

    Scalable multi threading

    Hi, I've created a multi threaded tcp/ip app. It works just fine, but it's not scalable. At the moment I have a single master thread that listens for incoming connections and spawns off another thread to handle that connection. The problem is this really starts to grid a bit at 100...
  5. Guern

    Form array help

    Thank you very much. That works fine. I had just read through a few javascript tutorials and the names keys bit was explained there. Obviously either incorrect or I got the wrong end of the stick (most likely). Once again, thanks for your help. Paul Smith Microtech Limited http://www.mtgsy.net
  6. Guern

    Form array help

    Hi, I use PHP primarily and have some form variables (text fields) on a form as follows ip[1372] ip[5436] ip[7618] I've trying to update these dynamically when a user clicks a text box. The number in the brackets is a key for the php array, not the number of elements in the array, which from...
  7. Guern

    Calls on hold dropping

    I belive I am. This is a problem that has just popped up. The system has been running happily for a few month before this. No changes to the system software or phone manager have been made. Very strange.... Paul Smith Microtech Limited http://www.mtgsy.net
  8. Guern

    Calls on hold dropping

    ISDN 2E's, not sure which PMPro, but it's a pretty new build. Will find out. Paul Smith Microtech Limited http://www.mtgsy.net
  9. Guern

    Calls on hold dropping

    Version 3.2 (61) A reboot cured the problem for a couple hours yesterday, but the issue is back again this morning. Click the hold button in phone manager and the call just disappears :( Paul Smith Microtech Limited http://www.mtgsy.net
  10. Guern

    Calls on hold dropping

    Hi, Weve suddenly starting having the issue described here by these users thread940-847381 Call put on hold via the phone manager simply disapear. Anyone find a solution for this? Paul Smith Microtech Limited http://www.mtgsy.net
  11. Guern

    Voice recording

    Thanks. I think that is the way I will go about it. Recordings will seldom be refered to. Paul Smith Microtech Limited http://www.mtgsy.net
  12. Guern

    Voice recording

    Do they then not show in phone manager or get deposited in the mailbox? Paul Smith Microtech Limited http://www.mtgsy.net
  13. Guern

    Voice recording

    Hi, Thanks. Doesn't this just provide another application for users to search recordings? I was really after and easy way for users to identify them in Phone Manager. Paul Smith Microtech Limited http://www.mtgsy.net
  14. Guern

    Voice recording

    Hi, I've enabled voice recording of all inbound calls. These are deposited into the users normal voice mail boxes. The difficulty is trying to see what was left as a voice mail and what was a recorded message. Does anyone know if there is there any way to easily distinguish what is a...
  15. Guern

    Option to run as a service or an app

    Hi, I can build a vb app or service without difficulties, but I want to emulate some of the other utilties I have seen where you can distribute just one app but with the option to 'run as a service'. Does anyone have any ideas how to do this with a vb.net app? The App I have requires user...
  16. Guern

    Change image src of button type="image"

    Thanks tsuji, My first example actually DOES work fine, just not in IE as IE stops the animation of GIF's as soon as the form is submitted. The page being submitted can take several seconds to start loading, hence the animated waiting gif. The solution, or so I have read, is to use settimeout...
  17. Guern

    Change image src of button type="image"

    Hi, Many thanks for the example. Yes, this does work, but my image is not actually just an image on the page, it's actually the submit button as well. I'm using an image instead of a button like this <input name="searchb" id="thisImage" type="image" src="../graphics/button_go_big.gif"...
  18. Guern

    Change image src of button type=&quot;image&quot;

    Hi, I did try that and could not get it to work. Looking on the elsewhere I have read that the .src of a input type=image is not able to be referenced in this way. Certainly all the combinations I tried didn't work. Do you have an example of how you would reference the src? Thanks. Paul...
  19. Guern

    Change image src of button type=&quot;image&quot;

    Thanks, Yes, I might have to. Only problem is that stops the form working for anyone without javascript support.
  20. Guern

    Change image src of button type=&quot;image&quot;

    Hi, This is driving me a little crazy! I have the following line <input name="searchb" type="image" src="../graphics/button_go_big.gif" width="65" height="66" OnClick="this.src='/graphics/icons/busy8.gif';"> This works fine in browsers other than ie. The image changes as the form submits...

Part and Inventory Search

Back
Top