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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

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

    help forcing a record to have an alternating value

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

    How find a record on a form based on a record of another form

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

    Sub Form Problem

    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()...
  18. ALEKSJAY

    Sub Form Problem

    Why do you have the three buttons in the switchboard going to the same form?
  19. ALEKSJAY

    Same VBA code lines for different textbox in a form

    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.

Part and Inventory Search

Back
Top