Search results for query: *

  1. 22-degrees

    Question MouseUp event of button on tabpage not working with l.click but does with r.click

    Hi all, is there any reason why the MouseUp event handler of a Button would not work if the Button was located on a TabPage of a TabControl? The MouseDown, MouseEnter, MouseMove & MouseLeave event handlers are all triggered correctly but the MouseUp event handler is not triggered when I left...
  2. 22-degrees

    Resolved Try Catch Exception handling has become very sluggish following recent system restart

    Just completed the reinstall which seems to have fixed the issue. Back to work..
  3. 22-degrees

    Resolved Try Catch Exception handling has become very sluggish following recent system restart

    Yes it appears to be happening over a variety. I tried creating a simple deliberate format exception and again it took 20+ seconds to handle. I'll try a re-install of the Service Pack, perhaps a wire or two got crossed. (Edit) On second thought, a reinstall sounds like a lot of hassle for...
  4. 22-degrees

    Resolved Try Catch Exception handling has become very sluggish following recent system restart

    I have recently moved house and my PC was packed away for about 5 weeks. I hooked it up again about 2 weeks ago. Everything appears to be working fine. Last week however, following a restart of my PC to allow Windows 7 Updates to install, I discovered that exceptions thrown in Try Catch...
  5. 22-degrees

    Question need to get first line with the lottery numbers from html text

    Your problem is with "myNumberMatcher" It's only pulling double-digit numbers. It's not the final solution that Ian Provided.
  6. 22-degrees

    Question Stopwatch help

    Publicly declare your stopwatch in your module Public myStopWatch As New Stopwatch Then you can check if it is running, start it, stop it, reset it, whatever, from any of your forms.
  7. 22-degrees

    Question need to get first line with the lottery numbers from html text

    Must be something on your side InkedGFX, Ian's code does the job correctly for me based on the HTML sample you provided. ((Edit: I really need to stop leaving the PC midpost.. 9 times out of 10 I come back and someone else has posted ahead of me :-) )) My apologies IanRyder and InkedGFX
  8. 22-degrees

    Fastest way to download complete HTML string?

    Thanks JMC I will get to work.
  9. 22-degrees

    Fastest way to download complete HTML string?

    Hi, I have been using WebClient and DownloadString() to get the HTML from a site that I need data from. Halfway through the parsing process of the downloaded HTML string I parse several more URL's and download the HTML and parse some particular data from those as well. This midpoint download...
  10. 22-degrees

    Scrolling in a datagridview when it doesn't have focus?

    One option is to use the datagridview's MouseEnter and MouseLeave event handlers to Select the datagridview or move focus away from the datagridview respectively.
  11. 22-degrees

    compare excel files highlight the differences

    Yes, it can be done easily.. Just research how to get/set cell values in excel through vb.net. It's as simple as looping and comparing after that.
  12. 22-degrees

    compare excel files highlight the differences

    Do you have any experience with excel cell manipulation at all?
  13. 22-degrees

    Execute command saved in variable...

    This might be of interest to you http://www.vbdotnetforums.com/vb-net-general-discussion/53330-allow-user-build-if-statements-through-ui-options.html
  14. 22-degrees

    Question Extract from string

    If the string will always be an address like the example you gave then you just need to get the indexes of the common factor locations, Namely the last index of "\" and the last index of "." and use that index data to extract your substring. String.LastIndexOf Method (Char) (System)
  15. 22-degrees

    Resolved msgbox help

    See here MessageBox Class (System.Windows.Forms) See how DialogResult is used.
  16. 22-degrees

    Question vb Buttons help

    I suggested that to him earlier in the thread but as he went his own route I thought i would let him make his own decision.
  17. 22-degrees

    Question vb Buttons help

    Not sure I am understanding you correctly here. I thought you had 24 forms to chose 10 from? In your code, you have only listed 10 forms to chose from so you will always get the same 10. Also, you are using the Rnd Function but you will always get the same sequence unless you use the...
  18. 22-degrees

    Question vb Buttons help

    How are you exiting the game and how are you generating your random numbers? With code please.
  19. 22-degrees

    Question Screen Bounds Problem

    My apologies, it looks smooth and clean on my screen, otherwise i wouldn't have suggested it as a solution. The reason I decided to try this solution in order to help you with your problem was because logic dictated that if a form was set to maximized and max = the working area boundaries then...
  20. 22-degrees

    Read Only Rows in Data Grid

    DataGridView.ReadOnly Property (System.Windows.Forms)
Back
Top