What about if the user opens sol.exe just once and keeps it minimized? He/She could be playing all day, but technically, the file was opened once. You should consider blocking the game at all (at least in his/her computer).
Anyway, you could try this VBS, you will have to replace the shortcut...
I realize this is an old question and might have been solved, but I have a suggestion.
Do any of the people with access to the account(i.e. the CFO and you) have her profile configured in your own outlook? If so, you can verify if the "delete items on exit" is enabled in any of those accounts...
If you have Office Developer edition you can convert your database files into "stand-alone" versions without the need for the end-user to have MS Office. I have not try it, so I can not give any help with this. Anyway, this two links will help you...
It happened to me once. I had administrator rights in the computer where I saved the changes, but not in the one I tried to view them. Don't know if this was the reason, but it's worth a try.
Hi,
I am working as an E-mail Administrator and recently one of the employees received some emails with sex-related content. This email came from a hotmail account and I would like to know if there is any way to track this person. I think the person works here, because in one of the emails, he...
or you can use the "TAG" property to identify them and loop through all your controls and verify the value assigned to "TAG" .
Set the TAG property of your textbox to "GROUP_1" (or whatever value youwant) for example and loop to check "GROUP_1" and act accordingly
Dim c as control
for each c...
Sometimes, when I have that error in some VBA functions, I add "VBA." in front of the name of the function to declare explcitly where it comes from. Try changing "Date" to "VBA.Date" to see if it works.
I'm not sure if the default option for the functions is to be Public or Private, so you might try making the function to be Public explicitly by adding the word "PUBLIC" (no quotes) before the word "Function" in the first line
Public Function SendSubscription(StartMonth As Integer, Frequency As...
You can try doing a query retrieving the last value of 'action' based on the 'serial' you entered.
I'm assuming the table's name is BOOKS for this example:
SELECT books.serialnum, Last(books.action) AS LastAction
FROM books
GROUP BY books.serialnum;
Modify this one to include your serial...
create the " open form " button with the wizard. One of the options when you select the button to open a new form is that it will ask you if you want to show all the records, or if you want to show specific data to display, based on a field in the current form. Choose that option and set the...
You might try setting the PopUp and modal properties of the Disclaimer form to YES, and calling both form from the switchboard
Private Sub btnOpenCaseMgrs_Click()
DoCmd.Close
DoCmd.OpenForm "frmDisclaimer"
DoCmd.openForm "Form1"
End Sub
Private Sub btnOpenMemRep_Click()...
Can you be more specific on what are you trying to do with this code? I'm not sure I'm understanding.
Assuming you want the same code in all the mouseDown events of each textbox you have, you can use a separate SUB routine and call it from each of the mouseDown events you want it to run.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.