Search results

  1. skeeter23

    Run Access front end as a "Public Service"?

    Unfortunately that is what I presumed but thought I would ask. I think I'll instead have to try to write it in a way that another instance can be run under a different profile until the issue is resolved by the first :( I'm tired of being the only person in the entire company that can admin...
  2. skeeter23

    Run Access front end as a "Public Service"?

    Simply put, I have a front end that does a bunch of file moving and if it encounters an error and stops processing (which is intentional) I am the only that can login to the machine and fix it. Is there any way to run it that would allow others to login on their own user profile, solution the...
  3. skeeter23

    File moving system - best method?

    Thanks for the reply DJkarl... Since this system is largely passive I won't be able to use a shell command that requires user response. I actually use an unhandled error of "file already exists" to stop all the code until the issue is resolved. This in turn also alerts another system that...
  4. skeeter23

    SQL Backend warranted?

    Not sure why I never responded back to this but thank you all for the help. In the end the system ended up being split access only. I am now working on v2.0 which IS being built ground up on SQL :)
  5. skeeter23

    File moving system - best method?

    File staging/copying/moving system - better method? Hello all! It's been quite some time since I've been able to post here but I am in a bit of a quandry here redesigning a system I created a few years ago and hope someone can lend some help with a possible better solution for my code. I...
  6. skeeter23

    SQL Backend warranted?

    No I have not migrated a backend before. I was forced by management to begin development before I could prove my case to them that I felt we needed a SQL server for this. Now the server has finally been approved and built (well virtually configured anyway) but I still dont have create...
  7. skeeter23

    SQL Backend warranted?

    I am currently developing a system that will eventually handle large portions of job control, tracking, and billing data. This system may be accessed simultaneously by 25 or more users at any given time. So far the interface, subsequent code, and structure are built on a split access...
  8. skeeter23

    Help: How to sum in the Form View

    Yup that's it ;)
  9. skeeter23

    Help: How to sum in the Form View

    Simply go back to the one where you had added =[Amount]-[Discount] in the form for the total box and then delete the total feild from the table and query.
  10. skeeter23

    Help: How to sum in the Form View

    What we're referring to is that when you know that "total" is simply a calculation of other feilds it should not be stored, only displayed. You know that the total is always derived from the equation of amount-discount so total is redundant. Total should not be a field in your table. When the...
  11. skeeter23

    Help: How to sum in the Form View

    Yes that is a true statement. That is something to keep in mind phatus. That "total" really should not be stored but rather queried whenever you need it. That being said really the way you had it setup in the first place was fine. However that wasn't your question though so I answered it the...
  12. skeeter23

    Help: How to sum in the Form View

    Fixed. The main problem though is that you did not have a control source set to the table. Since the control source was = [Amount] - [Discount] it was only displaying the result and not actually doing anything with it. I switched the source to Total and added the VBA I suggested in the after...
  13. skeeter23

    Multiple queries data on one form

    I know this is a topic that has been searched and asked alot since this afternoon I did it myself and found lots of questions and no simple answers. Therefore I thought I would share the simple quick and dirty solution for displaying data from multiple sources on one form without recordset...
  14. skeeter23

    Help: How to sum in the Form View

    In the "After Update" event of both the amount and discount fields add this... Me.Total.Value = Me.Amount - Me.Discount DoCmd.RepaintObject
  15. skeeter23

    Non alcoholic VBA

    Good point. I like your solution. It probably also needs to be within the construct of an if else statement as well for supply outages :D
  16. skeeter23

    Force "Cancel" on subform

    I must admit that I hadn't thought of that. I did try it and it didn't work but I know why. I need to provide more info... The subform runs an append query on load to create a ticket ID and then stores that assigned ID as a tempvar to be used in append query criteria and make it unavailable to...
  17. skeeter23

    Force "Cancel" on subform

    I have a subform that is used to create sequential job tracking tickets. It has a cancel button so that if the user needs to back out the status of that ticket will be set to cancelled. The problem I have is that this operation can be easily bypassed by simply clicking the nav links on the...
  18. skeeter23

    Non alcoholic VBA

    DoCmd.MixMeAdrink acDrink "Jack & Coke",True Keeps returning an error of "Invalid Outside Procedure" :mad: Damn I thought VBA could do anything. I guess not :rolleyes:
  19. skeeter23

    Hello everyone :-)

    I actually had an account here before but I forgot the username and email it was registered to so alas I am new again ;) Although I am still a rookie I hope I've learned enough over the last few years to help some people out the way I hope to be. Glad to be here once again :-)
Back
Top Bottom