Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by djayam

  1. djayam

    Shared db - can goto new record

    Fixed it. I needed to Requery the main form to get all db changes by other users updated. I thought as the Autonumber field was incrementing without error that I didn't need to do this. Cheers.
  2. djayam

    Shared db - can goto new record

    The title of this post should be CAN'T goto new record. Sorry!
  3. djayam

    Shared db - can goto new record

    Hi all, I have a split Access2007 db with ACCDE front-end. With one user all is good. With 2 users it's almost all good...I wonder if you can help with this scenario: Both users create a new record at the same time. The db assigns IDs OK and both records create OK. There is a combo box on...
  4. djayam

    "Me.Detail.Visible = True" NOT WORKING!!

    You are not going to believe this! I'm really sorry guys but I'm still getting used to Access 2007. I was happily pressing what I thought was the Preview Button but it was the Report View button! Do a print preview and it is working after all!! Sorry guys - thanks for your efforts though...
  5. djayam

    "Me.Detail.Visible = True" NOT WORKING!!

    Nope - doesn't work either. This is really weird! Just in case there was something strange happening inside my db I have created a new one - single table, 2 fields only and tried again, Still doesn't work. I'm sure it should - anything new in Ac2007 that might be different?
  6. djayam

    "Me.Detail.Visible = True" NOT WORKING!!

    Tried that too - doesn't work either!
  7. djayam

    "Me.Detail.Visible = True" NOT WORKING!!

    Hi guys, I have a really basic table of team players (ID, PlayerName). I have built a report with tbl_Players.PlayerName in the detail section. When I run the report I get the full list - as expected. Now, I add the following code to the OnFormat property of the detail section: Private Sub...
  8. djayam

    Can't fax via Microsoft Fax - permissions issue??

    Hi all, I am using a function in MS Access to send a fax via Microsoft Fax on a 2003 server with Exchange 2003 SP2, XP Pro SP2 client using Outlook 2007: Public Function SendFax(strTo As String, strPath As String) Dim MyOutlook As Outlook.Application Dim MyMail As...
  9. djayam

    Forms Incrediblly Slow to Load

    Thie single best solution to this for me was to define all control sources in the OnLoad event of the form. Couldn't believe how much this sped everything up!!
  10. djayam

    CDO email not working with Exchange Server

    Thanks John - will do.
  11. djayam

    CDO email not working with Exchange Server

    Hi all, I can't seem to find a soultion to this! I know it's an Exchange issue and probably simple... I have been sucessfully using CDO to send SMTP email from my db for some time. Server died recently and I rebuilt it. Now the db won't send to external addresses. No errors at all, just...
  12. djayam

    Relay

    Did you get this resolved? I have recently rebuilt my Exchange server and I cannot now use the CDO method to send to external addresses. Internal is fine and I get no errors on external ones, but the email never arrives...
  13. djayam

    Hi All, I'm working on a forecas

    Sorry mate but not being in English doesn't help! Maybe post the SQL in this thread?
  14. djayam

    Pass VBA to a SQL query

    Hi mate, I have just done this for my own db yesterday..!! Create a variable for you basic query SQL and another one for the WHERE clause: Dim vSQL As String Dim vWHEREClause As String vSQL = "<your code>" vWHEREClause = " <your code>" 'NOTE THE LEADING SPACE - THIS IS NECESSARY...
  15. djayam

    Using strings that contain speech marks...

    Simple as that eh? Thanks PHV - I'll give it a try.

Part and Inventory Search

Back
Top