Forum Replies Created

Viewing 15 posts - 46 through 60 (of 61 total)

  • RE: Export Query out

    DoCmd.TransferSpreadsheet ....

    Look this up in help and it will give you all the parameters to use.

    HTH, Vic

  • RE: Help Needed Debugging Query

    Charle,

    Are you writting the SQL code yourself?  If you use the Design Window for queries, I think you might find this quite a bit easier.

    Vic

     

  • RE: Documenter stopped displaying object properties

    Don,

    I would call Microsoft support.  You get at least two (2) free calls with every license you have.  If it is their fault, which I doubt in this case, the...

  • RE: Recommendations for tools used to convert access to SQL

    I am currently in the process of upsizing a large Access DB to SQL Server and have not found anything to "assist" in the upsizing other than just getting into...

  • RE: Access gives error No -7776 for linked ODBC tables

    Have you tried (just testing) to see if this same error would happen using local tables?  Then try them in a second Access database, and use ODBC to connect them...

  • RE: MSGbox

    Ritesh,

    This is just a normal form within Access.  The only difference is that when you open the form, you would use this type of line in your VBA:

    DoCmd.OpenForm "frmName",acNormal,,,,acDialog,"Color=Red;Style=MyStyle; "...

  • RE: MSGbox

    Ritesh, 

    No way to customize msgbox, but it would be very easy to write your own popup form just the way you want it.  Use a function to do the...

  • RE: To do with redirecting

    ritesh-

    I would suggest you ask this question in another forum altogether.  This question has nothing to do with SQL or ACCESS.  Look for a forum on web site programming.  I can...

  • RE: Urgent: Reserevd Error -7776

    >I have linked tables from ODBC datasource.

    >when I go for updating any record then it gives me error as follows:

    >Reserved Error (-7776); there is no message for this error.

    >What...

  • RE: Query Is Required?

    Click here to download an Access database that shows you a suggested solution to your question.  Review Query4, which is a Crosstab query to show the number of minutes worked...

  • RE: Connecting to SQL Server table

    Yes

  • RE: Using DSN-less connection link table to SQL Sever

    a quick Google search using "ms access dsnless connection to SQL Server" gave the following link in the number 2 spot:

    http://support.microsoft.com/default.aspx?scid=kb;EN-US;892490

    It appears this article should answer the question.

     

  • RE: Connecting to SQL Server table

    Within Access, using the menu, File/Get External Data/Link Tables... then select "Files of type" (at the bottom of the "Link" window) and click on "ODBC Databases."

     

  • RE: Protecting table structure from viewing

    This is the only way I can think of to protect your tables from unauthorized viewing by knowledgable users:

    1.  Assign a ownership of the "production" database to a newly created...

  • RE: Calculating month

    What about:

    abs(datediff("m", #3/1/04#, #5/26/05#)) which equals 14 months?

    or

    abs(datediff("m", #5/26/05#, #3/1/04#)) which still equals 14 months?

    By using "abs" (absolute) it does not matter which date is first, all you want is...

Viewing 15 posts - 46 through 60 (of 61 total)