Search results for query: *

  • Users: 22-degrees
  • Content: Threads
  • Order by date
  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

    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...
  3. 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...
  4. 22-degrees

    GridView Row Selection : Can I use border instead of backcolor?

    I use a color scale to set the background color of cells in my dataGrid based on the cell value. However when i select a row for more focused viewing, the default action is for the entire row to be highlighted in a solid color and this overrides my cell color feature making it useless to me...
  5. 22-degrees

    FlowChart Software Recommendations?

    I'm looking for feedback on Free or inexpensive FlowChart designer software.. I was recommended something free called yEd but the website is not responding when I try to download so I am forced to look elsewhere.
  6. 22-degrees

    Value of Time versus Efficiency of Code

    I was reading the responses at this thread and it reminded me of something I, a rookie, see quite often during searches for solutions. Is it better to save time by writing the easy-to-implement solution to a problem or is it better to aim for the most efficient use of code possible? Take the...
  7. 22-degrees

    For Loop difference between vb2005 and vb2010 carries over in converted projects

    In vbExpress2005 I have to declare the integer to use the for loop in one of 2 (that I know) ways: Dim i as integer For i = 1 to 10 Next or For i as integer = 1 to 10 Next In vbExpress2010 it is a simpler: For i = 1 to 10 Next Today I re-opened an old vb2005 project and converted it...
  8. 22-degrees

    New VS2010 installation : Studio constantly crashes on Win7 64-Bit

    I have recently newly installed both Win7 64-Bit and Visual Studio 2010. When I click on a solution file to open it in VS, it seems to open fine.. but when I click on a form in the solution explorer and then click on the code window icon to view the code, it crashes with a very helpful message...
  9. 22-degrees

    Eye-Strain Relief tips?

    Longer hours in front of the screen these days have forced me to address the impact it is having on my eyes and brain. I have invested in a pair of melanin coated glasses which do help a little but I was wondering was there anything else I could be doing to make the screen-glare issue less of a...
  10. 22-degrees

    Anyone else see code in their sleep?

    Or should I be worried?? It's not the kind of dreams where I am 'me' sitting in front of a monitor.. It's the kind where I am the debugger tool running through code and more often than not, getting stuck in loops in code as I try to make small adjustments to try to exit the loop! Waking up can...
  11. 22-degrees

    Re-use a dynamic array created for string.split for another string.split task?

    I'm working with a large amount of csv data and I am utilizing string.split The arrray to hold the values is created like so: Dim tmpArray() as string = readline.split(",") Once I have done what I need to with the values stored in tmpArray, I need to move on and split more data. Is there a...
  12. 22-degrees

    Can write to a txt file but not see if it exists

    A friend of mine has reported a piece of software that I made for him has all of a sudden begun to crash on a regular basis at the same point.. I have narrowed this issue down to the following.. In form_load, the prog checks if a txt file exists, and if yes, reads a bunch of setting data from...
  13. 22-degrees

    Creating Desktop Toolbar : Can I change the default bounds of Windows 7?

    As the title states, I am making a toolbar which will sit neatly at the top of my screen just as the Windows taskbar does at the bottom of the screen. Is there a way I can change the default y-boundary in Windows 7 so that my bar is always visible and never blocking any existing windows...
  14. 22-degrees

    Efficient handling of large .txt files? / StreamWriter V's ??

    Hi all, I have data being exported to .txt/.csv files every 2 seconds. Output at max expected load is c200Mb per hour. I initially started exporting to individual sector files but when I checked on the output after a few hours, 80+ files being written to, 3 lines at a time using...
  15. 22-degrees

    Allow user to build If Statements through UI options

    Hi all, I need to provide a feature to allow a user to select one of several options form several different categories which can then be used to construct an If Statement to access data stored in arrays etc and return a result. Basic Example: (using arbitrary headers and data) Each header...
  16. 22-degrees

    postmessage & Virtual Keys to another application only partially working

    Hi all, I was using postmessage and Virtual Keys to send the F5 keystroke to another non vb-project application. This worked just fine and the application refreshed without needing focus as it was supposed to. Now however, I need to find and replace a string on the same application window...
  17. 22-degrees

    First Collaboration Project - Update Issues

    Hi all, While I have been coding with .net for 7 years now, I am probably still classed as beginner to intermediate because I never learned more than what my needs at the time of my projects required. I can still do anything I want with the knowledge I have which is the only thing that matters...
  18. 22-degrees

    How to delete pen line?

    Hi all, my latest project has me adding a line graph feature to a form. I use the following to draw: Dim myPen As New System.Drawing.Pen(col(a)) Dim formGraphics As System.Drawing.Graphics x = ************ y = ************** x2 = *********** y2 = *********** formGraphics =...
  19. 22-degrees

    First time Utilizing a database

    Hi all, I am not too advanced with vb.net and up until now any programs I have created that needed a database were for personal use and due to the nature of why I needed the programs, I utilized excel in the code to store the data. Recently, a good idea and plenty of inspiration sees me...
Back
Top