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 wOOdy-Soft 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 ALEKSJAY

  1. ALEKSJAY

    Users getting mail that is not intended for them??

    did you check if there is any "alternate email address" configured for any of these users or Distribution Lists?
  2. ALEKSJAY

    Need a simple BAT or (shell) script, newbie question.

    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...
  3. ALEKSJAY

    Why the left(string,1) function could not be used??

    replace LEFT, RIGHT, MID, etc with VBA.LEFT, VBA.RIGHT, VBA.MID,etc
  4. ALEKSJAY

    Deleted Items folder empties itself... really

    Glad I helped. :) Alexis J.
  5. ALEKSJAY

    Deleted Items folder empties itself... really

    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...
  6. ALEKSJAY

    Security Warning Message

    A star for telling us about that website.
  7. ALEKSJAY

    Selling application developed in Access

    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...
  8. ALEKSJAY

    Restrict textbox input to numeric between 0 & 255

    there is a RangeValidator control that can be used for this. ControlToValidate="textbox1" MinimumValue="1" MaximumValue="255
  9. ALEKSJAY

    Event viewer - who changed to native mode

    Hi, Is there any way in Windows 2003 Server Event Viewer or any other place to see who changed the Domain to Native Mode?
  10. ALEKSJAY

    Unable to View Code

    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.
  11. ALEKSJAY

    Is there any way to find who is the user of a hotmail acccount?

    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...
  12. ALEKSJAY

    Can you use an "array" of controls on a form?

    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...
  13. ALEKSJAY

    How do I use this Module in a query???

    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.
  14. ALEKSJAY

    How do I use this Module in a query???

    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...

Part and Inventory Search

Back
Top