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

    Mouse Position

    Try using the detail_MouseDown event and check for button 2 Danny Never Think Impossible
  2. dmksas

    help with security issues!!!

    First rule of Access Security is back-up your database before attempting.. Danny Never Think Impossible
  3. dmksas

    how can i encrypt a field

    A simple method of encryption would be to Xor the Asci value of each character, although this is very easy to break by a determine hacker it will confuse the average user. Function Crypter(pStrSent As String) As String Dim i As Integer Dim NewLetter As String For i = 1 to Len(pStrSent)...
  4. dmksas

    CHARTS DRIVING ME CRAZY

    please see my reply on AccessVBA.Com Danny Never Think Impossible
  5. dmksas

    Docmd.sendReport to an existing .xls file

    No Such Command DoCmd.TransferSpreadsheet Danny Never Think Impossible
  6. dmksas

    Input ASCII file into DB

    If you use a delimiter in the file (comma, tab) then you could import this through the import right click and then save the file specification. To automate importing you would then be able to use the DoCmd.TransferText function in VBA (Look it up in vba help for full list of parameters) Danny...
  7. dmksas

    Error "Can't find form [formname] referred to in Visual Basic Code

    Is this supposed to be a variable representing the form name [+transcript] or is this the actual form name? Is the Form Loaded (Open)? Danny Never Think Impossible
  8. dmksas

    Change contents of menu bar according to login

    You can either set up custom menus for each type of user and activate the respective one for each form as the enter the database. Or if the permutations are going to be too many then you might consider coding these in at run-time, although trickier it can be done. You would be better using the...
  9. dmksas

    Access Reports Formatting/ Can you make Images Repeat at the top?

    Place the image in the page header should do it. Danny Never Think Impossible
  10. dmksas

    prevent copying to blank database?

    Hi, This has already been discussed in this thread Danny Never Think Impossible
  11. dmksas

    exporting a query to a excel workbook

    sk8er1, If this is to be either part of an automation or a regular method then please take a look at this example Danny Never Think Impossible
  12. dmksas

    What resets the Error object ??

    mordja, because you are submitting to the logerror function before your if statement you are infact sending the information from the Error Object, which will populate your table. Inside this function you are again setting the error event handler, so therefore you are resetting the Err object...
  13. dmksas

    Help with function

    Traycee, The function will take parameters not table fields. Could you post some more of the function so we can establish what is trying to be achieved. Danny Never Think Impossible
  14. dmksas

    Open Form based on parameter

    You can capture the form names by using the AccessObjects Collection.. It does however depend on what version of Access you are using. If A2K or above then I'll demonstrate. Danny Never Think Impossible
  15. dmksas

    VB SQL INSERT Statement (Help!)

    hi, Try CRS.Open _ "INSERT INTO tbl_Input_In_CBD (" & DataTo & ") IN " & RemoteDb Location &" SELECT * FROM tbl_Output_From_DB _ WHERE " & DataFrom & " ", _ CDB, adOpenDynamic, adLockOptimistic Danny Never Think Impossible
  16. dmksas

    Problem with opening a database

    How are you connecting to Access through Excel, and what do you need out of Access Danny Never Think Impossible
  17. dmksas

    How to submit batch jobs in SAS Programming using task scheduler

    However, using a vbscript file placed on a server installed with sas, and using windows scheduler running this file every couple of minutes I have been able to offer up gui interfaces that submit sas code to the server for the server to run and return the results, without the need for the...
  18. dmksas

    How do you place the user login name on a Report?

    You could also just change the footer to =Environ("Username") Danny Never Think Impossible
  19. dmksas

    Need format and basic instructions for creating custom Functions

    earthandfire.. True, but as I have always been instructed, always include a relevant return value to minimise the memory allocation. Danny Never Think Impossible
  20. dmksas

    Need format and basic instructions for creating custom Functions

    Yes... But Creating every function as public in a standard module will increase the memory that your database needs to allocate, also not qualifying a correct return variable will also declare your function as variant, which again increases the amount of memory needed. Private Functions behind...

Part and Inventory Search

Back
Top