As lameid says it sounds like you've already got security of the data provided.
If you just don't want people to change the adp then why not distribute it as a .ade?
Somebody will come up with something neater but
Sheets("Chart1").Activate
ActiveChart.Legend.Top = 100
ActiveChart.Legend.Left = 100
should get you started
Making some assumptions about data consistency...
=LEFT(A1,FIND(",",A1)-1)
=TRIM(MID(A1,FIND(",",A1)+1,LEN(A1)-FIND(",",A1)-(LEN(A1)-SEARCH("@",SUBSTITUTE(A1," ","@",LEN(A1)-LEN(SUBSTITUTE(A1," ","")))))))
M$ do a Visio Viewer if you only need to read the doc
http://www.microsoft.com/downloads/en/details.aspx?FamilyID=d88e4542-b174-4198-ae31-6884e9edd524&displaylang=en
You need M$ SQL Server Management Studio for SQL Server 2005.
There's an "express" (free) version here: http://www.microsoft.com/downloads/details.aspx?FamilyId=C243A5AE-4BD1-4E3D-94B8-5A0F62BF7796&displaylang=en
You say "opens the project again" - so are you opening up two instances of the front end at the same time?
If a front end is already open (by the current or other user) then subsequent users will get a read only warning (which relates to changes to the front end, not the data on the server)...
You need to change the connection. In Access 2003 goto File - Connection & amend appropriately. If you're using Access 2007 it's a bit more complicated & is described here: http://support.microsoft.com/kb/306881
Strange one. Don't know why that's happening.
However, have you tried nesting select statements to get them in the order you want?
eg
SELECT Account, Month_Year
FROM (SELECT BANK_NUMBER AS ACCOUNT, MONTH_YEAR
FROM MYTABLE.... ) tblAlias
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.