Search:

Type: Posts; User: HiTechCoach; Keyword(s):

Page 1 of 5 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    3
    Views
    116

    Um ... not a good assumption. By default...

    Um ... not a good assumption.

    By default nothing is trusted. Every folder and/or file must be explicitly trusted. This can be done manually or by executing trusted code. It is also by user...
  2. The original answer was may partially correct. ...

    The original answer was may partially correct. They said "...the second method the combo box is looking at a form based on a select query not a table ..." which is not a problem if the select query...
  3. That really is not correct. A table can be empty,...

    That really is not correct. A table can be empty, no records to look up, and it works. If the record source is a query (saved SQL) it works. There is a "bug" in the Access Combo box wizard. The...
  4. Replies
    3
    Views
    116

    Does the issue happen on multiple PCs with 2010...

    Does the issue happen on multiple PCs with 2010 or just one PC?

    It would help to know:
    Are the databases split?
    Are the front ends on the local hard drive?
    Are the database in a trusted...
  5. From within Access you can call a Windows API to...

    From within Access you can call a Windows API to get the current user. See: http://access.mvps.org/access/api/api0008.htm

    I use this to auto log in to Access apps. I get the User name at start up...
  6. Replies
    15
    Views
    1,165

    I have seen forms and report become corrupted....

    I have seen forms and report become corrupted. You can try repairing the forum using this: Backing up and Restoring Objects I have had success repairing corrupt forms and reports with thi8s method....
  7. That is only true if a Full versions of Access is...

    That is only true if a Full versions of Access is not already installed.


    Thee issue is with Access starting. It has not even go to the point of loading he database when it ask for the License...
  8. I would urge you to run the Office Setup to see...

    I would urge you to run the Office Setup to see if Access was part of the install. Until you verify that it will be impossible to help you.
  9. Did you first run the Office setup and make sure...

    Did you first run the Office setup and make sure that the Full version of Access was not installed? If it is installed you will nee to remove it before you install the Access runtime
  10. Replies
    4
    Views
    113

    I would not recommend that as a good method for...

    I would not recommend that as a good method for deployment.

    I would highly recommend that you compress the database into a ZIP file before burning to a CD/DVD. This done outside of Access.

    It...
  11. Replies
    15
    Views
    1,165

    When you compact, it is important to do both the...

    When you compact, it is important to do both the front end and back end.

    When I make back end changes, like add a date field, I do the following:

    1) backup up the back end
    2) Add the field....
  12. Yes, I have seen it with the Home and Student. As...

    Yes, I have seen it with the Home and Student. As far as I know this is try of all version of Office 2010 that do not include a license for Access.

    FWIW: I have tried the built in Package and...
  13. I do this using VBA and Outlook automation. The...

    I do this using VBA and Outlook automation. The key is to set the body type to HTML. I loop trough a recordset and write the data into the email body using HTML Table tags to create the grid. You...
  14. I understand that the MS Office Home & Student...

    I understand that the MS Office Home & Student version is not a trial version. I was referring to Access only being a trial version. With MS Office Home & Student and MS Office Home & Business 2010...
  15. Sounds like the trial version of Access was...

    Sounds like the trial version of Access was installed with the MS Home and Student Office. Try running the setup for MS Home and Student Office and remove Access if it was installed.
  16. What database format? Also is it a web database?...

    What database format? Also is it a web database?

    I just looked in both a .mdb and .accdb and the default property is on the data tab for text box controls. Just like in 2007.

    With which ...
  17. See if this helps: How to reset the page number...

    See if this helps: How to reset the page number and the total page count for each group in a Microsoft Access report
  18. Beej, It is true a "typical" (common) use of a...

    Beej,

    It is true a "typical" (common) use of a form/sub form is to show parent/child related child records. But it doe not have to work that way. A sub form (or sub report) does not have to show...
  19. Replies
    7
    Views
    564

    For the the most important reason to manually...

    For the the most important reason to manually compile is make sure there are not errors when you can create a mde/.accde. I would never deploy an Access app without compiling it into an mde/accde.
    ...
  20. Replies
    6
    Views
    1,229

    It was easy to fix. I turn off the page header...

    It was easy to fix. I turn off the page header and footer on each sub report.

    NOTE: If you view the report in Report view this sub reports will probably always show. They will auto hide properly...
  21. Replies
    6
    Views
    1,229

    Not sure why you need all that VBA code. I have...

    Not sure why you need all that VBA code. I have never had to use any VBA code to do what you want.


    :confused: I do not understand what this means.



    Which event? I have never had to do...
  22. Replies
    6
    Views
    1,229

    Are the sub report control's Can Shrink property...

    Are the sub report control's Can Shrink property set to Yes? You will also need to be sure that each section that has a sub report is also set to Can Shrink = Yes.
  23. Replies
    3
    Views
    620

    If your database is opened every day then it...

    If your database is opened every day then it could be set to send the emails the first time it is launch on a specific date.

    You could also use the task scheduler on a Computer that is always on...
  24. Replies
    16
    Views
    3,152

    For efficiency I would use this: Public...

    For efficiency I would use this:


    Public Function StripHTML(zDataIn As String) As String

    Dim iStart As Integer
    Dim iEnd As Integer
    Dim iLen As Integer
  25. Replies
    16
    Views
    3,152

      really needs to be replaced with a space....

      really needs to be replaced with a space.

    Try:


    zDataIn = Replace(zDataIn," "," ")
Results 1 to 25 of 104
Page 1 of 5 1 2 3 4