Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Crownknox

  1. Crownknox

    Insert current user name into text field

    Add the following to a text field in a form =CurrentUser()
  2. Crownknox

    inactivity timer / idle time

    There is a FAQ under Microsoft:Access Other Topics
  3. Crownknox

    "How can I close My Application if Nobody works on it?"

    OK Thanks: HERE is what I did. I CUT and pasted the section below under the Option Explicit. ---------- Static PrevControlName As String Static PrevFormName As String Static ExpiredTime ---------- I get the ERROR MESSAGE: "Invalid Outside Procedure"
  4. Crownknox

    "How can I close My Application if Nobody works on it?"

    Sounds like it would work better that way....but, it's unfamiliar territory for me. It is something I want to do though. Is there any faq's with a sample of this global code. Maybe a download? Or does anyone want to share theirs?
  5. Crownknox

    "How can I close My Application if Nobody works on it?"

    How might I make the variables global to the form? I have had some problems noticed since I've been using the inactivity procedure that I previously listed using the timer function.
  6. Crownknox

    "How can I close My Application if Nobody works on it?"

    Thanks for the reply: After posting I searched many web sites for help. I found this solution in a Microsoft support community post. I then have added the formname "Closemsg" that has the command Application.Quit. after a msg "....will close in 5 minutes". The command...
  7. Crownknox

    "How can I close My Application if Nobody works on it?"

    Thanks for the help. I am a new user. fExitApplication has not been established by me. Do I need to add it to a module? If so, do you have a sample code? Also, the only thing I have done to accomplish logging off inactive applications was adding the code I first mentioned in a hidden form...
  8. Crownknox

    "How can I close My Application if Nobody works on it?"

    "How can I close My Application if Nobody works on it?" I found this link in a previous post. http://www.unsoftwareag.com/FAQ_Start.asp What I have done is 1.Made Form "IDLE MINUTES" to startup in hidden mode 2.Added the code(Listed below) to OnTimer()event to this form...
  9. Crownknox

    How do I Format Max(Value) in a Report to be Bold

    I am working an a stats report that gives detailed info for individuals. (For Example: If an individuals [Daysworked] is more than anyone else, I would like it to be bold or another color.) I've tried using an if...Then statement in the OnFormat section but I get errors about using...
  10. Crownknox

    Is Null - Field Color Change

    I have a similiar situation but the form is in Datasheet view and list records of Parts inventory. I would each record instead of whole fields background to be different if the Part records Due Date is past due. Example: &quot; I just don't know the code for this&quot; If me!duedate < Date...
  11. Crownknox

    Copy from subform to Text box

    What I'm trying to do is add all ticketid's in subform to the comments field on the main form. Subform TicketID fields: 89100; 89102, 89103 MainForm Comments field: Processed with 89100, 89102, 89103 ANY HELP?
  12. Crownknox

    Copy from subform to Text box

    Just to be clear. I have a field on the main form bound to the comment field with the same record as the ticketid on the main form.
  13. Crownknox

    Copy from subform to Text box

    I want to put the comment on the main form. Would the same code apply?
  14. Crownknox

    Copy from subform to Text box

    I have records for each product that we process at work. In a form, there is a field [TicketID]. Also in this field I have a subform from a query to show all other [ticketID]'s that were processed at the same time in the same machine. Example: Current Form [TicketID] = 89100...

Part and Inventory Search

Back
Top