Search results for query: *

  1. S

    Windows Form Threading

    hey, i have tried using timer already... below is my code PrivateSub tmrGrab_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles tmrGrab.Tick If (blnFirstTime = True) Then blnFirstTime = False GrabThread = New Thread(AddressOf GrabLive) GrabThread.IsBackground = True...
  2. S

    Windows Form Threading

    i have a function which will use web request and response objects to read HTML information from webpages.. but while they are parsing the html codes.. the application hangs until the response returns.. therefore i need to put it in a separate thread.. and i want to continuously grabbing the html...
  3. S

    Windows Form Threading

    i already have a main form runnin in my sub main with application.run...
  4. S

    Windows Form Threading

    hey, i am writing an application that runs multiple window forms as objects and i would like to run them in different threads.. may i know how i can do that? right now i am using the following code: GrabThread(0) = New Thread(AddressOf New frm1().Show) GrabThread(0).Start() the windows...
  5. S

    How do I dispose my own class objects?

    thank you very much! i will look into the garbage collection generations =)
  6. S

    How do I dispose my own class objects?

    What if I just use objectname = nothing does the memory dump every resource of the object away?
  7. S

    How do I dispose my own class objects?

    Hey all, I have written some classes and uses various objects to access the methods in my class.. can anyone tell me how to dispose my objects or write a dispose function? Thanks alot.
  8. S

    How to create a multiple colored progress bar?

    Thank you, I will try to learn and customize the control class sample provided. If anyone has samples or knows what attibutes are required please guide me. Thanks.
  9. S

    How to create a multiple colored progress bar?

    Hey guys, I want to create a progress bar which can have multiple colors, e.g. values 0-50 (green), 50-80 (yellow) 80-100 (red). Does anyone have any examples or ideas to do this? Thanks.
  10. S

    How to display webcam output

    Please help guys please give me some guides because i am really in a rush for this project.. thanks..
  11. S

    How to display webcam output

    Guys, im working on a project right now which requires displaying what the webcam is actually capturing in the application.. but im a beginner in vb.net, does anyone have any samples to help me out? i have found c#.net's webcam capture, but im not familiar with c#.. thanks alot!
Back
Top