Search results

  1. kec

    Image Linking In Reports

    Here is some code to link images in reports. I've seen this asked several times on this board, so I hope this helps... Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer) On Error Resume Next Dim DBpath As String DBpath = [Forms]![Main]![Img_Path] If Dir$(DBpath...
  2. kec

    Screenshots - Part 2

    Well, since we lost the screenshots thread, I thought I'd start it up again. Here's my DVD database (URL deleted as it is a dead link) -Ken
  3. kec

    Draw expanding lines in report detail

    This code comes from Stephen Lebans, http://www.lebans.com/Report.htm This code draws lines around each field in the report detail and expands with the text. Private Sub Detail_Print(Cancel As Integer, PrintCount As Integer) Dim CtlDetail As Control Dim intLineMargin As Integer ' Stephen...
  4. kec

    Error Using LDB Viewer

    I'm getting an error when running the LDB Viewer (2K version). The error is "Error: 9, Subscript out of range". Even though I get the error it still gives me the users who are logged in. And, it seems that the error shows up for each user. If there are 9 users logged in, it comes up 9 times. Has...
Back
Top Bottom