Forum Replies Created

Viewing 15 posts - 61 through 75 (of 111 total)

  • RE: Capture Quit event in order to Disconnect ADP project before leave

    You need to create a hidden form that loads on startup.  When the user quits the app (using any method), your hidden form will close.  Use the Close event of...

  • RE: Error with SQL statement

    AFAIK, RunSQL (in MDB ODBC connections) uses Access SQL to run an action query, not T-SQL.  Therefore you have to modify the T-SQL for Access (JET) syntax:

    The syntax is:

    DELETE [table.*]

        FROM...

  • RE: securing SQL SERVER when using MS-ACCESS-frontend & ODBC

    "If you do have a security breach and someone finds out a password though, you will have to deny access to everyone using that connection, and redistribute a completely new...

  • RE: securing SQL SERVER when using MS-ACCESS-frontend & ODBC

    As I mentioned above, Application Roles can solve that problem completely.  You can also embed obfuscated connection info for for hidden accounts into your code. 

    You can also use a web front...

  • RE: securing SQL SERVER when using MS-ACCESS-frontend & ODBC

    A few things come to mind:

    I don't trust any method (including Windows authentication) that gives any permissions to users outside of the application.  Therefore, I use application roles (applied on...

  • RE: Frequent blocking in SQL

    What error messages are you seeing?  Perhaps you are just getting write conflicts due to many people working on the same records.  If this is the case, perhaps this will...

  • RE: adp Parameter

    Your welcome, Paul.

    I wonder if the event was firing at the proper time (i.e. if the OnClick property was properly set to "[Event Procedure]").  Also, the OnClick event for combos...

  • RE: Determine Scanned Image Page size from Access

    "The most consistant advice I've seen re images is to keep them out of SQL Server altogether...just use references to the physical files stored on a LAN/SAN."

    IMO, this advice only...

  • RE: adp Parameter

    Hi Paul,

    Your very welcome.  I'm glad to help.

    A few comments:

    First of all, do debug.print to get the actual SQL that the combo receives.  Is there a space between the SP...

  • RE: adp Parameter

    One more thing: Instead of typing in your SQL, create it in the Query designer on the property sheet, just add a ? in the criteria box.  I wonder if...

  • RE: adp Parameter

    I just created a test database to search a text field (nvarchar) using an unbound form search field.  I set up the InputParam exactly as you are doing, and it...

  • RE: adp Parameter

    OK, good so far.

    It looks like your permissions are fine.

    I suspect that perhaps your field is returning a value from your form field(e.g. in a date format) that is misinterpreted by...

  • RE: adp Parameter

    Hi Paul,

    Last things first:

    To link the subform, you should be able to simply add the linking field names in the subform properties.  Access should read the fields from your SP...

  • RE: adp Parameter

    Hi Paul,

    I'm glad you got the SP to work.  Regarding your parameterized SQL, it looks basically correct, so please provide some more details.  For example:

    --Error message returned

    --Variable type for academic year...

  • RE: adp Parameter

    If you put "EXEC" in the recordsource, then you will have to supply the parameters on the recordsource line.  In this case, I think the InputParameters will be ignored. 

    To...

Viewing 15 posts - 61 through 75 (of 111 total)