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

    Problem using Sum() with a calculated control

    The table structure is beyond my control. I tried this but it didn't work either: =Sum(DLookUp("[RT1 TOTAL]","SELECT2 RT1")+DLookUp("[RT2 TOTAL]","SELECT2 RT2")+DLookUp("[RT3 TOTAL]","SELECT2 RT3")+DLookUp("[RT4 TOTAL]","SELECT2 RT4")+DLookUp("[RT5 TOTAL]","SELECT2 RT5")+DLookUp("[RT6...
  2. jrollins

    Problem using Sum() with a calculated control

    I have a multiple-record report with a calculated control containing the following expression: =DLookUp("[RT1 TOTAL]","SELECT2 RT1")+DLookUp("[RT2 TOTAL]","SELECT2 RT2")+DLookUp("[RT3 TOTAL]","SELECT2 RT3")+DLookUp("[RT4 TOTAL]","SELECT2 RT4")+DLookUp("[RT5 TOTAL]","SELECT2 RT5")+DLookUp("[RT6...
  3. jrollins

    How to display select query result in a text box

    DLookup worked! Tried a list box, used Expression Builder to select the field in the query that I want to display but when I opened the form the list box was blank.
  4. jrollins

    How to display select query result in a text box

    I created a select query that produces the correct dataset when the query is run directly. I have a text box on a form to display the query results. I went into the ControlSource property in the text box and used Expression Builder to select the field within the query that I want to display...
  5. jrollins

    Find Security Group of a User with VBA

    VBSlammer - I can't get your code to work. It doesn't seem to be reading any groups. The code is as shown, followed by the Debug.Print results: Function InGroup(ByVal strGroup As String) As Boolean Dim varGroups As Variant Dim i As Integer varGroups = Split(GetCurrentUserGroups()...
  6. jrollins

    This action cannot be completed because the Microsoft Outlook applicat

    When attempting to send an e-mail using the following code, Outlook hangs up when the .Send attempts to execute. After clicking anywhere on my open Access form, I receive this error message : This action cannot be completed because the Microsoft Outlook application (Microsoft Outlook) is not...
  7. jrollins

    There isn't enough free memory to update the display.

    FYI I finally fixed this problem my making my forms 'skinnier' (fewer graphics and controls, fewer forms open simultaneously. Apparently, Outlook 2000 doesn't manage GDI memory very well. My original code and forms execute perfectly in Outlook 2002. Microsoft has no fix for this problem in...
  8. jrollins

    Sending e mail with an attached file...

    It's my understanding that this method 'Send now cbrSend.Execute won't work after you've installed the Outlook E-mail Security Update.
  9. jrollins

    There isn't enough free memory to update the display.

    I agree that objOutlook is causing the problem. This database is on the LAN and every workstation that opens it gets the same error at the same point. I tried the objOutlook.quit suggestion but it didn't work. One curiosity: If you're on SR1-A or SP3, you get a security warning when you try to...
  10. jrollins

    There isn't enough free memory to update the display.

    I copied the following code directly from MS Knowledge Base Article - 209948. I only call the sub SendMessage one time when a user changes the value in a combo box. Public objOutlook As Outlook.Application Public objOutlookMsg As Outlook.MailItem Public objOutlookRecip As Outlook.Recipient...
  11. jrollins

    There isn't enough free memory to update the display.

    I was using DoCmd.SendObject to send e-mails from Access. It performed erratically and I discovered it's a known bug. Following the instructions in MS Knowledge Base Article - 209948, I switched to using Automation to send the e-mails. It worked fine but I soon started getting the error message...
  12. jrollins

    Update records

    I agree. It works! A star from me, too.
  13. jrollins

    Update records

    I have two side-by-side workstations looking at the database on the network. When I change the selection in a combobox on the first workstation, the data doesn't update on the second workstation until I select a different record on the first workstation. Placing Me.Requery in the AfterUpdate...
  14. jrollins

    Access security in a Windows 2000 network

    Thanks. I'll go thru this and report back. I think I understand why you're at the top of the experts list.
  15. jrollins

    Screen Size

    You can cause reports to change the user's zoom setting to 'Fit to Window'. As for forms, you might enlist the user's cooperation by detecting their resolution setting and encouraging them to change it. Try this code in the Load event of your introductory form: Private Sub Form_Load() Dim...
  16. jrollins

    Access security in a Windows 2000 network

    Interesting. When I run wrkgadm.exe it says my default .mdw is DLEC_PD.MDW (the new one I created). Then, if I dbl-clk on the file thru Explorer it opens the login dialog box. I log in as the different users I've created and the permissions are all restricted as expected. However, I tried to...
  17. jrollins

    Access security in a Windows 2000 network

    Sorry I didn't mention it but I did use wrkgadm.exe to create a new .mdw file as the first step in the process.
  18. jrollins

    Access security in a Windows 2000 network

    Oh, just shoot me. I have been to every forum and newsgroup and find this problem everywhere. I have read-read-read the MS Access Security FAQ. I have created a new database and imported all the objects. I have renewed the SYSTEM.MDW file from the MS Office installation disk. I have tried...
  19. jrollins

    Fit Report to Screen other than acCmdZoom(%)?

    Bullseye! I wish I could give you more than one star for that one!

Part and Inventory Search

Back
Top