Search results

  1. J

    Top of screen occupied

    Which is the QAT? The two toolbars seem to appear when the Runtime is used.
  2. J

    Top of screen occupied

    I attach the whole top part of the screen, when I run the .accde using the Runtime.. There is too much empty space, which does not appear if I run the .accdb from Access.
  3. J

    Top of screen occupied

    As can be seen in the attachment, the top of the screen is occupied by the reddish color. Is there a way to remove this?
  4. J

    Inno: How to check Office Bitness

    Yes, good point to remember
  5. J

    Inno: How to check Office Bitness

    This may be a better way. I would change AppPathsKey = 'SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\ACCESS.EXE'; to AppPathsKey = 'SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\OUTLOOK.EXE'; In my case I need to install the correct Access Runtime, so I am not really interested...
  6. J

    Inno: How to check Office Bitness

    Searching for the following works HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\<version>\Outlook In line with gasman
  7. J

    Inno: How to check Office Bitness

    Does not seem to find the specified Registry folder and does not return the bitness
  8. J

    Inno: How to check Office Bitness

    Many thanks, this should do it.
  9. J

    Inno: How to check Office Bitness

    After some further research the following might work. Will test it out. function GetOfficeBitness(): String; var Bitness: String; begin if RegQueryStringValue(HKEY_LOCAL_MACHINE, 'SOFTWARE\Microsoft\Office\ClickToRun\Configuration', 'Platform', Bitness) then begin Result := Bitness...
  10. J

    Inno: How to check Office Bitness

    I believe there is a misunderstanding. There is no problem checking for bitness using VBA. If you look at my original post #1, the question is how to do it using Inno.
  11. J

    Inno: How to check Office Bitness

    Apologies in advance if this is not the correct place to post. I use the following Inno code to install my software. I would like to check if Office is installed and if it is installed to check the Bitness. Based on the Bitness I would like to install either the 32-bit Runtime or the 64-bit...
  12. J

    Identifying whether Shift is pressed during opening a Runtime

    Hi Pam, I decided to use something along the lines you mention. As I mentioned I have a .accde which is runs and does some preliminary work and if everything is OK it runs the main .accde. Any C and R would need to happen when the first .accde runs. The first .accde cannot have BE tables because...
  13. J

    ACE model request

    Very useful. Was looking at something not that detailed as a start.
  14. J

    Can ADO be used for BEGINTRANS COMMIT TRANS

    Are there restrictions in what you insert between BeginTrans and CommitTrans? If for example I define a recordset, loop through the recordset and change values, can these changes get rolled back?
  15. J

    ACE model request

    Please see attachment
  16. J

    Can ADO be used for BEGINTRANS COMMIT TRANS

    As a last question, since I have never used BeginTrans etc, to anyone who has used it, did you find any problems?
  17. J

    Can ADO be used for BEGINTRANS COMMIT TRANS

    Many thanks cheekybuddha. I have made some minor changes and I include below the code you provided: Function funDoTransaction() As Boolean On Error GoTo ErrHandler Dim lngDum As Long Dim blnReturn As Boolean Dim blInTrans As Boolean Dim strSQL As String blInTrans = False With...
  18. J

    Can ADO be used for BEGINTRANS COMMIT TRANS

    Thanks. I have seen this. Was looking for an example.
  19. J

    Can ADO be used for BEGINTRANS COMMIT TRANS

    Can ADO be used to handle transactions, where the transactions are committed only if all transactions are executed. I have found examples with DAO.
  20. J

    ACE model request

    I have been unable to find a diagram of the ACE structure, as exists for JET.
Back
Top Bottom