Search results

  1. E

    combine text and memo fields in one text box

    I've got a report where I need to display a combination of two fields in one text box. The first field is a text field, and the second is a memo. I tried setting the control to =[ACTREQD] & " " & [COMMENT] but this only prints "#error" The COMMENT is really an extension for ACTREQD and...
  2. E

    IIf statment ??

    IIf(chkboxstat Is True, [Forms]![FrmParam]![CmBxStat] = [insert filed name here]) Try this, man. I wasn't sure from your question what value you wanted to assign to CmBxStat. ed
  3. E

    Bold Column(s) on Datasheet???

    I have a query that my users want to viea in datasheet mode. It it possible to select one or more columns and format them as bold print? So far, I have only been able to make the entire sheet appear as bold. Any ideas would be much appreciated. Thanks, Ed
  4. E

    Referring to multiple form names via code

    I would comment out that line and then try changing all your remaining "frm" references to "Me" (referring to the active form) It looks like you're getting that error because Access doesn't know what form you're trying to reference. The variables are "Dim"ed, but they have no values assigned to...
  5. E

    default placement of ctrl-f window

    Is there a way to control the default placement of the ctrl-f find window? Thanks
  6. E

    Secuity only works on development computer

    I have just created my secured, split databse to be run from our small network. Everything works great, except when starting the application from any computer besides the one I developed it on, the user is not even prompted to log in. All of the files are on the server, and I included the...
  7. E

    Error 429 when opening packaging wizard

    Thanks, but I already tried that solution, with no effect. Although, I did notice that "pdwizard.ocx" was not on my Office Developer CD anywhere. I downloaded and registered it, but still got the same error message.
  8. E

    Error 429 when opening packaging wizard

    I hope someone else has experienced this problem. I am ready to deploy my application. When I go to run the packaging wizard, it shows error 429: ActiveX component can't create object. I have looked at msdn, reinstalled MOD, downloaded every SP and patch I could find, but nothing has helped...
  9. E

    Help with form which selects report

    For my firm's billing system, there are 2 different bill formats. I have created a report for each of them. From the switchboard, I need to user to be able to select "Print by Client", "Print by File", or "Print by Attorney." The bill format is stored in the client's record in tblClients. I...
  10. E

    List Different Values of One Field In Detail Footer

    I have never used a subreport. Can I create one in the middle of my report and still retain my formatting? How do I do this, please?
  11. E

    List Different Values of One Field In Detail Footer

    Well, thanks, but I really was looking for a way to do this programmatically. Perhaps my first message wasn't clear enough. The grouping levels are client (displays client info), file (displays file info), and disbursement type (determines if AttorneyTime or Disbursement). In the detail...
  12. E

    List Different Values of One Field In Detail Footer

    If anyone can help me with this problem, I would be most appreciative. I have been working on a series of reports that are attorney bills. Each client can have more than one attorney work on a file(case). In the "Detail" Section, I must list each service performed for each file. I have...
Back
Top Bottom