Search results

  1. D

    Append to a PDF file using VB

    Thanks, but I am really looking for a way to do this without buying a full version of Acrobat, as this is just a one time project for a volunteer organization (ie, no money available).
  2. D

    Append to a PDF file using VB

    I want to combine several reports, and also some query outputs, into one pdf file. I can do this currently by running each report or query, using PrimoPDF to print it, and then manually selecting the "append" option to append the next report to the existing file. However, this is cumbersome...
  3. D

    Force continuous lines on a chart

    I figured it out. Replace blank fields with "#N/A" and the dots all get interpolated and connected. Works beautifully!
  4. D

    Force continuous lines on a chart

    I can't see that this makes any difference. Now I am back to getting just separate dots with no line in series b.
  5. D

    Force continuous lines on a chart

    But this will make the line go to zero, which is not what I want. In series B, I want a line going from 3 to 8 to 7, NOT 3 to 0 to 8 to 0 to 7.....???
  6. D

    Force continuous lines on a chart

    Is there a way to force continous lines on a chart in Access? So, for example, if I have series A and B, I can get a continuous line for series A, but I just get 3 dots for series B. I want those 3 dots to be connected by a line. Data looks like this:
  7. D

    Poor Image resolution in print preview

    I have recently upgraded to Access 2010 and Windows 7, along with a new PC with a very high resolution display. But now, when I view reports which contain pictures, nearly all the pictures show up on the screen in VERY poor resolution. My pictures are stored as jpeg files external to my...
  8. D

    Intermittent error with jpg on report

    I can't show you the pictures, they are proprietary info. IN any event, it's not the particular picture that's the problem. All pictures work fine as long as I don't include more than about 15 records in the report.
  9. D

    Intermittent error with jpg on report

    I have a report which displays images located outside of Access. This is a fairly large report, with and all the images are jpg's. When I print the report, intermittently, some of the jpg's just don't show up. It's different ones each time. When I view the report on screen, when it gets to a...
  10. D

    Unbound Form Recordset

    Maybe.. what's your exact question? All you should need to do is add something like rst!YourListBoxData=selectmultiple(YourlListBox, Youroptions) to your code.
  11. D

    No one but me can compact/repair

    Pat, yes, that's what I keep telling our IT department, and they keep telling me that all the permissions are there. Besides, if it's a permissions issue, why can the others, when logged in, still create and delete files?
  12. D

    Unbound Form Recordset

    Hope this helps. Let me know... Function SelectMultiple(ListBoxName As Control, Txt As Boolean, Optional NumberData As Boolean) As String Dim ListBoxItm As Variant, Separator As String Dim ListBoxCriteria As String ' this is the criteria string to be used in queries Dim txtList As String '...
  13. D

    No one but me can compact/repair

    Thanks for all of your replies. To give you some idea of where I'm coming from: I have created and managed Access DB's nearly full time for many years, since the days of Access 2.0. It's only since I've started using Access 2010 that I've encountered this problem. Pat, I do not use compact on...
  14. D

    No one but me can compact/repair

    I have an Access 2010 database with about 30 frontends all linking to the same backend. The frontends and backend are both located on my company's internal network. I've set all the frontends to compact on close, but if anyone but me is logged in, they all get the "file permissions" error...
  15. D

    Add a check mark via vb

    I want to add a button to a form that, if clicked, will add a check mark to a field. There is a wingdings checkmark character, but: 1. I can't figure out how to use vb to get the wingdings character into the field.I can insert it using the windows xp character map application, but....character...
  16. D

    Disable/Enable controls on a subform

    Oh, S**T. This was all because I was using the control source (setupstarttime) instead of the control NAME (setupstart). How many times have I been burnt by this in the past?????? You'd think I'd learn.....;-) Works fine as long as you use the correct control name!!!!
  17. D

    Disable/Enable controls on a subform

    This doesn't work. forms![joblookup]![dataentrymaster]!Form.setupstarttime.enabled = False gives error "can't find field "form". forms![joblookup]![dataentrymaster].Form.setupstarttime.enabled = False gives error "object doesn't support this property or method."
  18. D

    Disable/Enable controls on a subform

    I need to be able to disable/enable controls on a subform based on various entries on the main form and/or subform. But when I try to reference the "enabled" property, I get error "Object doesn't support this property or method". For example, using the immediate window, with main form...
  19. D

    Add a trusted location with Access 2007 Runtime

    I just create the registry settings once for each new user, when I am setting them up. So this isn't really an issue for me. Seems extreme to do it at each login, as you only need to do it once for each PC or server....
  20. D

    Phantom Form Class Object

    I have a form in my database named DataEntrySummary. In the Class Objects list, I see two entries: Form_DataEntrySummary and Form_dataentrysummary When I right click on the class object and select View Object, both class objects open the same form. But they open two separate copies of it...
Back
Top Bottom