Search:

Type: Posts; User: FaithlessDbo

Search: Search took 0.02 seconds.

  1. Replies
    22
    Views
    16,712

    VS 2015 Re: High accuracy timer / delay

    Thank you for the information. I now use a list of strings to collect all the data for my datagridview. Upon completion of the serialport data it will put all the datagrid data in the list. This...
  2. Replies
    22
    Views
    16,712

    VS 2015 Re: High accuracy timer / delay

    Currently I store the data for my grid in an array list. This way I do save the important information for my grid, but the actual control (datagridview) is updated when I stop the timer interval of...
  3. Replies
    22
    Views
    16,712

    VS 2015 Re: High accuracy timer / delay

    Taken your two replies I could store my UI data from the datagrid into an array and display this one based on a different timer / thread. This way the chart is accurate which is the most important...
  4. Replies
    22
    Views
    16,712

    VS 2015 Re: High accuracy timer / delay

    Well every 50 ms a new gets added. Sometimes there are over 50k rows. Would this be the bottleneck? Any advice on this?
  5. Replies
    22
    Views
    16,712

    VS 2015 Re: High accuracy timer / delay

    With this code it does work, but I think due to it being on another thread It's now having problems updating the datagrid as well.
    Currently the chart is working very fluently when my datagrid is...
  6. Replies
    22
    Views
    16,712

    VS 2015 Re: High accuracy timer / delay

    Sure thing, the result: it does keep up the loop now + "Exception thrown: 'System.InvalidOperationException' in System.dll".

    So right now I have:


    Private Sub Form1_Tick(Ms As Integer)...
  7. Replies
    22
    Views
    16,712

    VS 2015 Re: High accuracy timer / delay

    In the debug I can only see one cycle of code. Lets say I see the 50 ms debug once and then it just stops. The program doesn't crash or show any error.

    Edit: sorry it shows: Exception thrown:...
  8. Replies
    22
    Views
    16,712

    VS 2015 Re: High accuracy timer / delay

    I have tried to add this code, however it did not work out the way I hoped for. There is something blocking a second loop.

    Luckily you are dutch (I assume because of your signature :P) so maybe...
  9. Replies
    22
    Views
    16,712

    VS 2015 [RESOLVED] High accuracy timer / delay

    Hey I'm quite the beginner in VB.NET so I don't know all the possibilities with the problem I'm having.
    I'm currently using the default VB.NET timer control, however after a few weeks of testing...
  10. Replies
    6
    Views
    899

    Re: Show a message in game (full screen)

    Thanks, I will check it out!
  11. Replies
    6
    Views
    899

    Re: Show a message in game (full screen)

    Would you happen to know where I can ask this question then? Is it on this forum, or perhaps somewhere else? Thank you for your help so far :)
  12. Replies
    6
    Views
    899

    Re: Show a message in game (full screen)

    I believe in most cases it will be layered over DirectX, yes. These games involve LoL, Dota2, CS:GO and quite some more. But the majority should be DirectX based games.
  13. Replies
    6
    Views
    899

    Show a message in game (full screen)

    Is it possible to show a line of text over a game using VB.NET? I've seen applications like Overlay.NET but this seems to be for C#. I only need to show one line of text for lets say 10 seconds at...
  14. VS 2015 Re: Terminte child process based on window name

    Your post was a bit difficult for me to understand since I am not that advanced yet. However I did get inspiration from it so I found some tutorial and scraped things together so I got it working in...
  15. VS 2015 Re: Terminte child process based on window name

    I can close it through Taskmanger by opening the parent process and then end the child process, OR I can close it by closing the child form in my taskbar. It pop in there. Maybe that could help?
  16. VS 2015 Re: Terminte child process based on window name

    Unfortunatly the process is not listed in tasklist (through CMD) so it will not be listed by this code either:



    Dim processlist As Process() = Process.GetProcesses()

    For Each...
  17. VS 2015 Re: Terminte child process based on window name

    What API functions? Win_32 process?
    The program is not a default windows program, but a third party program (unfortunatly). :(
  18. VS 2015 Terminte child process based on window name

    I'm trying to terminate a program's child process. Basicly a window pops up and this window is not listed in taskmanager as its own processes. It is listed under the parent process.
    Currently I...
  19. Replies
    15
    Views
    1,865

    Re: [VB 2010] Adding php code to form

    You sir, are awesome! Thank you for this :)
  20. Replies
    15
    Views
    1,865

    Re: [VB 2010] Adding php code to form

    If I use


    If doc.GetElementsByTagName("channel_count") Is Nothing Then
    MsgBox("The stream is currently offline!")
    Else
    node =...
  21. Replies
    15
    Views
    1,865

    Re: [VB 2010] Adding php code to form

    I don't really understand all of this... As soon as I put an if statement I assume the program is looking for a boolean, but since this isn't a boolean it will not work.

    What would I have to do to...
  22. Replies
    15
    Views
    1,865

    Re: [VB 2010] Adding php code to form

    Alright so I figured out to use the following method:


    Imports System.Xml


    Dim doc As XmlDocument = New XmlDocument()
    Dim node As XmlNode
  23. Replies
    15
    Views
    1,865

    Re: [VB 2010] Adding php code to form

    bump
  24. Replies
    15
    Views
    1,865

    Re: [VB 2010] Adding php code to form

    How can I extract the xml into a label from

    http://api.justin.tv/api/stream/list.xml?channel=faithlessdbo

    <channel_count>0</channel_count>
  25. Replies
    15
    Views
    1,865

    Re: [VB 2010] Adding php code to form

    I was planning to extract the XML value, but I cannot find anything good on the net right now. Would be nice if you could give me a direction to look at.
  26. Replies
    15
    Views
    1,865

    Re: [VB 2010] Adding php code to form

    I want to know how many people are currently watching the stream. Perhaps this would be usefull to take the count from: http://api.justin.tv/api/stream/list.xml?channel=faithlessdbo <channel_count>...
  27. Replies
    15
    Views
    1,865

    [VB 2010] Adding php code to form

    So first of all I'm very new to all of this, and I am not 100% sure this is the correct forum either!

    I am wondering if I could add this piece of code into my forum:



    <?php
    $streamData =...
Results 1 to 27 of 27



Click Here to Expand Forum to Full Width