Recent content by rudeboymcc

  1. R

    String Concatenating on SQL server vs front end

    Hi. I have an Access 2007 database with lots of passthrough queries that go to SQL server, such as Views etc . One View set up on the server for example, returns a list of house addresses in two formats, one for a mail address: 1 The avenue London and one for a list of properties: The Avenue...
  2. R

    How does 1Server+5 client licensing work?

    This sounds like CAL is just a legal agreement then? So there's nothing actually stopping more clients joining, just it breaches the agreement? I find this odd as I'm used to Microsoft product keys which are activated online and you need to de-activate one to add a different client.
  3. R

    How does 1Server+5 client licensing work?

    Hi. I'm interested in buying SQL Server 2008 Standard which is 1 license + 5 CAL licenses. How does this work? Do I need to install a product key on every client that uses the system, or is it 5 simultaneous users? And if I want say 10 clients, where do I buy JUST the CAL licenses from?
  4. R

    Printing forms -datasheet back colour dissappears

    I'm talking about forms (I even gave a reason I'm not using a report). If you open a form, go to file>print> print preview, it shows a print preview of how the form would print if you pressed ctrl+p. If copying from a datasheet is only raw data and not cosmetics, then why is the font colour...
  5. R

    Printing forms -datasheet back colour dissappears

    Hi. I have a split form with lot of Custom formatting on the background colours depending on the date. When vieing on the pc it works fine. When I go to print preview however, all the conditional formatiing is ignored and it goes back to the white/alternate row colour scheme. This is for...
  6. R

    Does Access keep a temp file of an opened database?

    so there's no chance of recovering it even with recovery software or anything else?
  7. R

    Does Access keep a temp file of an opened database?

    Hi. I have an Access 2007 database and am wondering, if I open it, does access copy it to a temp location first and then open it or does it read it directly? and does the same happen if it's on a usb stick? I don't want to open it on a client's computer to show them anything if they can...
  8. R

    Odd problem refreshing when datasheet has focus?

    I don't think it is because after th e code is done, pressing f5 doesn't work either. where as clicking out of the database and then pressing f5 works fine. I've tried doing a set .focus on something outside the database but it errors saying its not possible at this time.
  9. R

    Problem with sql string, wrongly use of "'","!"...

    just noticed that you are searching for a Bundle ID equal to "Crane.0". Is this right? That means your bundle ID is a string. so you should try: rsCable.Open "SELECT * FROM [Cable] WHERE [Cable!BundleID] = '" & midBundle & "'" Notice the apostrophes (one before " & midBundle and the one in the...
  10. R

    Problem with sql string, wrongly use of "'","!"...

    sql doesn't understand bangs the way access does. To reference the field ID on "table" it's table.ID, not table!ID. Try changing "WHERE [Cable!BundleID] " to "Where Cable.BundleID". (square brackets aren't needed, they are normally used if there is a gap in the field name or table name...
  11. R

    Odd problem refreshing when datasheet has focus?

    Hi. I've got a split form based on a pass through query of a list of names. When the user clicks on the name, it opens up the contact details for them to edit. When they close it, I want the list of names to reflect the changes. If I put the code to open the "details" form on the actual name...
  12. R

    Error printing reports in a collection.

    In an effort to strip everything out to upload to here, i've found what i think is causing the problem. I had a group with a sum on one field. As soon as I deleted this the print function worked fine. If I go back to a previous version adn copy that textbox in (with only "=sum([Amount])"...
  13. R

    Error printing reports in a collection.

    sorry didn't make myself clear. All I'm trying to do is print one copy of the report. and this works but with an annoying error. The button on the report with docmd.printout works fine but i want the file>print to work as well.
  14. R

    Error printing reports in a collection.

    Hi. I currently open my reports using collections so i can have multiple instances. Option Compare Database Option Explicit 'Author: Allen J Browne, July 2004 Public clnDS As New Collection Function OpenADSReport() 'Purpose: Open an independent instance of form Dim rpt As Report...
  15. R

    Set new using a string reference?

    nice solution! I guess I could just use a select statement. Sorry I switched to reports it's just the code for that was much tidier. and to your question about why i want multiple instances, it's very useful if you have a list of 4 or 5 hundred people and are doing something with only 5 of...
Top Bottom