Search results for query: *

  1. S

    Vlc api

    Hi, does anyone have an experience using this API with VB? i was thinking of using it for video still capture. does it perform well? thanks
  2. S

    Problems with VS 2010

    This is essentially what i have resorted to. hopefully it should clear the problem up and maybe MS will get a patch out for it. thanks
  3. S

    Problems with VS 2010

    i do not have vs2008 to try it with. although i have been doing a little research on the web and it seems i am not alone on this Debugging in VS2010 is completely messed up - stepping seems to do what it likes; please help i am pretty certain it is a problem because the debug just seems to...
  4. S

    Problems with VS 2010

    Hi, i have been trying to figure out a strange problem while using VS 2010. certain parts of code seemed to be being ignored in certain spots while running a debug. i adde a few break points and notices that the steps seemed to jump to random parts on the page and ignore certain operations...
  5. S

    authenticate web page access in VB

    well i found a way to do this so thought i might share. webclient class contains a credentials method in which you add the log in details related to the secure URI used. it worked a treat actually,
  6. S

    authenticate web page access in VB

    Hi everyone. i have a question but i am not sure i am aiming at the right place so please feel free to correct me. i am writing a vb program which takes an image from a secure web server and places it into a picturebox. as i mentioned, the web server is secured so it requires a user...
  7. S

    video mjpeg capture .net

    anyone? does .net have a class for handling RTSP streams for instance? struggling to find any information about this. cheers
  8. S

    video mjpeg capture .net

    Hi, does anyone have any experience of video capture using vb.net? i have a ip camera from samsung and want to be able to snapshot images using .net. can i use avicap or perhaps .net has a class for receiving live mjpeg images direct from the camera? i have been reading about RTP, which the...
  9. S

    publish solutions

    can anyone help?
  10. S

    publish solutions

    yes that seems to work great. the gui loads and things happen when i click buttons. Only thing is, i am referencing a mysql.data.dll in vs2010. when i run the bin/exe on another machine i can't get it to carry out communication with mysql database. are the reference paths stored in code, in...
  11. S

    publish solutions

    Hi everyone. i am coming up against a little problem. i have been writing a few .net 4 programs in visual studio 2010 for a little while now. I thought perhaps it was time to make the software into somthing that was a finished product and try to publish it into an exacutable...
  12. S

    filesystem watcher

    yes perfect the Queue(t) class worked perfectly. here was me trying to reinvent the wheel for a couple of days and now i realise they have a tool for the job. much appreciated! i was starting to get a head ache from that
  13. S

    filesystem watcher

    hi everyone, i have been working with the filesystem watcher and have come up against a problem. i have a background worker which carries out a process on each new file event but i am unable to process multiple files landing in a directory at once. i think i need some sort of queue to...
  14. S

    threading tasks

    JohnH thanks for pointing that part of the message out. the trouble is i am struggling to understand the content of it. i haven't been using vb.net for very long so i am afraid i am not up with the terminology... i am trying to find as much information on the web as i can about it but it seems...
  15. S

    threading tasks

    yes i was playing around with the background worker and tried writing to a textbox. i received an error informing me that ' Cross-thread operation not valid: Control 'TextBox1' accessed from a thread other than the thread it was created on'. so asumed that i could not write directly to the UI...
  16. S

    threading tasks

    ok, been doing some more reading here. seems i have a 'background worker' at my disposal. seems pretty straight forward but still need a few points ironing out. if i used the the background worker in such a way that i call'd sub routines from within it. would those routines be processed under...
  17. S

    threading tasks

    i'll be honest here and i really do sincerely appreciate your help but i really am lost now. looks like i have a lot to look into regarding this because not much of what has been said is at all for laymens.... thinking about what i have tried to understand, could i assume that an event raised...
  18. S

    threading tasks

    hi everyone. i am trying to get my head around how the threading within vb actually works. am i of the understanding that every time you create an event, through a button control for instance, that this infact creates a seperate process which will run independantly to another. say for instance...
  19. S

    Is there an alternative?

    hey jmcilhinney, thanks for the explanation there! funnily enough i was in the middle of working out where i went wrong with that and how my code differed to Kulroms so your reply was exactly what i needed. i knew using the 'try' was a bad way of dealing with the problem because...
  20. S

    Is there an alternative?

    Ah thankyou Kulrom, that works much better! yes great class to work with. trying to explore it now and loving it. Again thanks for the help
Back
Top