Recent content by Louise

  1. L

    Using A Form as a Front End For Restricted Table Fields

    If you don't want to get involved in Db security then you can make separate interfaces for each department. Create a separate backend and only link the tables appropriate for each of your front end interfaces. This will mean that different departments will need to have their own tables (except...
  2. L

    Dynamically change report name on output

    First of all the report name: Before you run your save command, create the name of the report and assign it to a variable. Then the variable is used as the object name in your save command. To create the name based on last day in week, you could use something like the dhLastDayInWeek...
  3. L

    MemoBox Scroll Bars

    Could you not simply set the focus to another control immediately following the enabling of the scrollbars?
  4. L

    Open Report

    You could try something along these lines: Dim intReports As Integer, rpt As Report Dim ReportName As String intReports = Reports.Count If intReports = 0 Then Exit Sub Else: For Each rpt In Reports ReportName = rpt.Name If ReportName = "Your Report Name" Then MsgBox...
  5. L

    Report Width Blues

    Hi, I have a report in which I had to display so many fields that it spans the limit of 55cm. I have formatted it carefully so that the first half of the fields appear on one page and the second half on the second page. This all looks fine. My only problem is that my report header also spans...
  6. L

    UPDATE statement - at wits end - Please help!

    I have generated an UPDATE statement but keep getting the error message that it was expecting a reserved word. Naturally the statement begins with UPDATE so I can't figure out where the problem is. could someone please take a look and help? UPDATE tblComparativeVolume RIGHT JOIN tblVolumeData...
  7. L

    Dynamic Reporting PART 2 - Please help!!

    Thanks Carol for the response. This problem is going to be a little more complex however. Further research is indicating to me that I can't simply use a straight query with parameters that come out of a custom dialog box. What I will have is a the same set of data being pulled out for each...
  8. L

    Dynamic Reporting

    I have a table of volumes processed for a particular financial quarter including the totals for each month within that quarter. I need to create a series of static information reports from this data. The table is broken down into clients, products and activities with their respective volumes...
  9. L

    Import .csv file problem

    Hi everyone, Thankyou all for your input. This problem had me really stumped, however I have managed to solve it. Everything seemed to check out, the same number of rows was appending, there was no rounding, there were no null values that were being omitted, and when I did a straight copy...
  10. L

    Import .csv file problem

    Hi, I'm using the docmd.transfertext action to import a .csv file. The file is a softcopy of an invoice. I have the spec set up and I thought everything worked fine. Now I have found that when I import the file using the code it is somehow changing my values in the (monetary) amount field...
  11. L

    Custom Date Function Nightmare!!

    Thanks Jack! That works terrific now.
  12. L

    Custom Date Function Nightmare!!

    I'm doing a custom function to get the last workday in the month. This will be used in an update query on (obviously) the date field. The function first gets the last day of the month. I then test that day with 2 additional functions to see if that day is a Saturday or Sunday. If Saturday...
  13. L

    Talk about driving me insane!!!

    Thanks for the suggestions. On the report that I'm referring to above this works fine. I actually put those details in under the Vba section where we were also debating this one. However I'm trying to do it in another report within the same database and this one won't work. Again it should...
  14. L

    controls on a report

    I finally got this to work! Yes it must be in the OnFormat event rather than OnOpen. Also I changed the default property on the ole to be non visible. Then because I couldn't get it to work by checking whether the 4 fields were null, I had it check for the 2 fields that total these 4, but...
  15. L

    Making controls non visible - driving me insane!!

    This is a similar problem to RpbertS's listed a little while ago but unfortunately not yet answered. I have a report with 2 fields that are bound ole objects (scanned signatures). The second signature needs to be printed only if the report contains letters that are barcoded. So I'm trying to...
Back
Top Bottom