Search results for query: *

  1. F

    How to run specific Code every Day Start=Time End=Time

    I don't have time to throw together an example closer to what you want, but I did find this with a quick google search. Very simpile example of starting and stoping a timer and how to handle event when the timer fires. http://abstractvb.com/code.asp?A=1032 When the event fires in the example...
  2. F

    How to run specific Code every Day Start=Time End=Time

    I think that you can use what you are doing in your other question about timers to help here. If your form is continually running, just have the timer poll every 5 to 10 seconds and if you are in the desired time frame run the code else don't.
  3. F

    Problem selcting active child form but Treeview tab not changing.

    I don't know if this will help, but when I need to do something to a control and not have any of the events fire I call RemoveHandler, do what I need to do, and call AddHandler to turn it back on. May not be the best solution, but it works great so far. Example: RemoveHandler...
  4. F

    How to run specific Code every Day Start=Time End=Time

    Do you need it to run multiple times in the time period? Only once? Only when the user opens the form during that time period? Or what? Why does it have to be in a windows form? Can you just create a service or console app and use windows scheduler?
  5. F

    How to reload a MDI child form???

    I have an app that can have several MDI child forms open at any one time. How do I reload/repaint/refresh the active child and not the others. I've tried form.refresh on the child along with many different combinations of invalidate, validate, focus, sendtoback etc. I've kinda worked around...
  6. F

    Which DB would be best to use?

    I'm writing a little standalone app that will need a backend to store data. It will not hold a great amount, but I would like it to be fast and securable. I don't want anyone mucking around with the data model or viewing data. I would also like this to be really easy to deploy. If my mom can do...
Back
Top