Search results

  1. E

    Sub forms to view all records

    It will only work with an unbound form.
  2. E

    Emailing forms with objects

    You need to transform the report into a SNP file.
  3. E

    All usernames in a listbox ???

    I always use a callback function that displays the users in a list or combo.
  4. E

    Switchboard Passwords

    It is possible but you need to carefully plan your security plan. My technique in those cases: I check the group of the user and decide whether he has access or not. You should NOT hardcode this information.
  5. E

    obj required run time err – why?

    As far as I can see this string: "Use the JTS system instead." _ & Chr(13) & _ "Otherwise, enter a different distributor.", vbExclamation, "Error" is not attributed to a variable or a MSGBOX command! Furthermore: Else Exit Sub in not necessary at all. Maybe you just modify the code and try...
  6. E

    MemoBox Scroll Bars

    I use this system for small applications with an automatic language switch and I think it is a good solution. Concerning the scrollbar, I did not find (maybe because I did not search) a way to activate it. I simply integrated an arrow on the form to indicate where to click to make the scrollbar...
  7. E

    ActiveX Controls Descriptions for Acc2K???

    Hello, TG, There is definitely no problem at all with the standard combo boxes. As far as I remember lies your problem in the combo box' rowsource or in the registry settings. In using the non-standard combo boxes such as Image control you have nice features but big potential if you want to...
  8. E

    Report width limitation

    22 inch is really the absolut limit of one page.
  9. E

    Change Printer in MDE/Runtime

    The easiest solution would be to call the docmd.runcommand acOpenPrintDialog Command. But this requires user input.
  10. E

    snapshots and jpgs...don't mix???

    You can certainly mix different graphic formats on the same report. But you will need to integrate the Graphics Wizard.
  11. E

    Marginal Memory Problem

    This is a real bug in ACCESS: You have to switch OFF the Autocorrect function in the Options Menu.
  12. E

    Displaying a picture on a Report

    The standard functions for the integration of graphics is sometimes not sufficient. Most problems can be solved with the Graphics Wizard at www.unsoftwareag.com
  13. E

    PictureDisplay problem in Reports

    This seems to be a problem of RAM and delay. I suggest that you integrate a "refresh" or doevents in the OnPrint-event.
  14. E

    Sub-reports and columns

    I suppose that the second column can not be displayed because the frame of the subreport is not large enough.
  15. E

    Display Data Sideways in Report

    The only way to solve this problem is in using several sub reports. But this technique hides tremendous difficulties in the details (formatting, borders, memory management).
  16. E

    Calling an Access Report From the Web

    AFAIK you can only manipulate ACCESS' tables and queries with ASP. The forms and reports can not be accessed. You could simply create an ASP-page that looks like your desired report.
  17. E

    multiple reports based on one address

    You will definitely need a supplementary lookup-table to store this information.
  18. E

    Embedding Word Documents in Access Report

    Although you can use all WORD functions from ACCESS you should use WORD VBA for all WORD related functions. The integration of WORD docs can be organized directly in ACCESS. You could simply use the WORD wizard from www.unsoftwareag.com.
  19. E

    How can I copy image box contents to clipboard?

    This is another problem that might be solved with the Graphics wizard (www.unsoftwareag.com).
  20. E

    How to print pictures refered by paths

    Have a look at the "solution"-section of the Graphics Wizard at www.unsoftwareag.com
Back
Top Bottom