Search results for query: *

  • Users: NssB
  • Order by date
  1. NssB

    Multithreaded dynamic form generation/handling

    Hi all, I appreciate this is somewhat of a complicated idea to grasp, however I'm sure there is someone out there capable of figuring this out :) Background: I have 3 forms: Update form, Reader Form and Popup Notification form. I add data to the DB from the "Update Form" and the "Reader Form"...
  2. NssB

    Little help how I could simplify it

    Hi John, Many thanks for your replies. I shall review the code you provided. Sounds to me like the route I need to take. And when you say the code is easy and understandable, that is open to perspective :) I shall however get back to you if I have any problems. Thanks again NssB
  3. NssB

    Little help how I could simplify it

    Hi AB, That would be the idea yeah.... But let me explain a little bit more.. The 'Aux Code' times must continue from where last left off. i.e If 10 minutes is spent in 'Aux 4', then half an hour later, the user hits 'Aux 4' again, it must continue from the 10 minute marker....hence the...
  4. NssB

    Anyone have any good keystroke saving code?

    Hey AB... I myself wrote a small app which requires logging in. Albeit its contained in the App itself and not a webbrowser control. The app uses a login form and queries a MySQL DB for UserID's and populates the UserID combo. This may be beyond the requirements of your app, but if you can...
  5. NssB

    Little help how I could simplify it

    As well as the streamlining done by AppleBag, Can anyone else see a way in which I can reuse the timers/stopwatches? i.e Use one of each for all the different 'Aux Codes', instead of 10 of each. I realise I need to get upto scratch with OO....but for now, I'm trying to maximise code re-use...
  6. NssB

    Little help how I could simplify it

    Hi Applebag, Yep, that is somewhat along the lines of what I was aiming at. A lot of my initial code was replicated, but couldn't think of a way to call a 'general' type of sub.....like your Ticker/Toggle ones. That certainly helps a lot. Appreciated :D
  7. NssB

    Counting and recording time

    You could also make use of the System.Diagnostics.Stopwatch class. http://msdn2.microsoft.com/en-us/library/System.Diagnostics.Stopwatch.aspx NssB
  8. NssB

    Little help how I could simplify it

    I have written a small single form windows application. However, I feel for the purpose it serves, it is probably overly complicated. I wanted to know if any of you could have a look and advise on how I could simplify it if at all possible. I have just moved over from VBScript/HTA's and haven't...
  9. NssB

    UDP Hole Punching -- NAT Traversal

    Hi all, As I am fairly new to VB.Net, I was wondering if anyone could point to, or write something on the subject of UDP Hole Punching(NAT Traversal). My goal is to be able to developa client/server model/framework for applications that require this sort of functionality. e.g VOIP, Gaming...
  10. NssB

    Progressbar monitoring stored procedures progress

    Hi, OK, under the assumption your transaction last approx 30 secs, you could do the following, which is somewhat simpler and probably better practice than the looping timer I suggested. Add a Timer Control to your form and set the milli-seconds property to 1000 On your ProgressBar control, set...
  11. NssB

    Sticky Button

    Very impressed. Kinda makes my method look rather OTT. Thanks very much for that. NssB
  12. NssB

    Progressbar monitoring stored procedures progress

    The progressbar control has a Min/Max and Value property. You need to identify a parameter of the stored procedure you can define a min and max value from start to completion. Sometimes this is not possible and Progress Bars are 'guestimated'. You say the procedure runs for approx 30 secs? Min...
  13. NssB

    Sticky Button

    Hi all, Looking for help with a VB.NET form issue. Have a button which runs a Do Loop until a variable is set by the click event of another button. However, the Button which starts the logging routine remains depressed until I click elsewhere on the form.....more of an annoyance issue, which...
Back
Top