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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. EnidtheDog

    Display opened report instead of the popup form.

    Try this: You will need a module with the following code: Function IsReportLoaded(strName As String) IsReportLoaded = (SysCmd(SYSCMD_GETOBJECTSTATE, A_REPORT, strName) > 0) End Function Then add this code to your Print Preview button on the popup form: Forms![frmPopup].Visible = False...
  2. EnidtheDog

    System.mdw bloat

    Hi all, We are running an access 97 db (split) over an NT network. The data mdb and system.mdw are held on a network drive and the application is installed on each client. This has worked fine for years, but recently I have noticed the mdw file bloating - it is now 4mb. It is easy enough to...
  3. EnidtheDog

    Stopping record navigation via mouse scroll wheel?

    Laos - Luterguy explained in the first post that he has already written code to prevent use of page up and page down. I think its a safe assumption that this is a single record form :) Your point is still valid - I was just trying to explain that if you need only one record - then call only one...
  4. EnidtheDog

    Stopping record navigation via mouse scroll wheel?

    Folks - I think you are coming at this the wrong way. The issue is not how to control what the user does, but how to control how the records work. If you have a form which will only look at a single record, then pre-define that record in the form's underlying query before it is opened. This...
  5. EnidtheDog

    Clearing the query on open of a search form

    Hi Dan, This may be more than astehtics as you are using unnecessary resources populating your search with unneeded records. There is an alternative... I have the search results returned in a listbox. Initially the listbox is unbound - it has no Row Source. The RowSource is set by an after...
  6. EnidtheDog

    Optimal Subform Link?

    Hi all, A very quick question.... Is it better to link a subform using the Link Master Field / Link Child Field properties in the parent form or by filtering the records in the subform's record source query eg "Select JobId, JobName, RaisedBy from tblJob Where RaisedBy=...
  7. EnidtheDog

    Locks - A2000 and Win2k Server

    Hi all, I have a split database running on about 8 clients. The db was developed in A97 and ran on an NT server beautifully for some years. The client recently "upgraded" to a win2k server, mainly win2k clients but with 2 W98SE clients. They also decided to upgrade to Office 2000...
  8. EnidtheDog

    Access and SAGE

    Yes on both counts Phil. First, which version of Sage? I do most of my stuff with Line 50... You can read Sage records in Access using ODBC. You can then export Access data to a csv file and import into Sage. Or, even better, use the SDO (which comes with V8 of Line 50). The SDO allows you...
  9. EnidtheDog

    Exchange or not Exchange...

    Thanks for the prompt reply Steve. The server will host a half dozen external internet domains and will use AD. We won't be using it for intranet / print services but we hope to keep a small library of data on the site to be accessed via web page or public folders. I guess my main questions...
  10. EnidtheDog

    Exchange or not Exchange...

    Hi all, We are a SME with about 30 users and have a single web server runing Windows 2000 Server as follows: Intel PIII 866 256mb PC133 Ram 2x 15 Gig IDE Harddrive 7200rpm 52 Speed CD 1.44mb Floppy Drive 2 "u" SSI Server Case D-Link 530TX NetCard Tyan Tomcat Motherboard We are...
  11. EnidtheDog

    OWA and Win2k

    Hi all We have an Windows 2000 server running Exchange 2000. Users accessing OWA using Win 98 clielts have no problems. But, if a user attempts to access OWA using a Win 2K Client they get asked for their password 4 times and finally get a 404 error. If they click on the refresh url in the...
  12. EnidtheDog

    Public Folders Permissions

    Oops. I have "accidently" Denied all permissions for "Everyone" for the default (MAPI) Public Folder. There really was quite a good reason for this! But now the Public Folder Store will not mount (since no-one has permission). Worst of all the default Public folder has...
  13. EnidtheDog

    Access speed crawls (snails) on multi-user instalation

    I am NOT a Novell expert, but I know its worth setting the network locks to the maximum allowed number. The default is much too small.
  14. EnidtheDog

    Putting an Access 2.0 database on the internet

    I would suggest upgrading to A97 at least. There's a great site www.ASP101.com with heaps of stuff on how to do this (but I would steer clear of the built in Publish to the Web Wizards!)
  15. EnidtheDog

    Validating a field in a form

    You could probably use an Input mask and Validation, but I prefer to use the Before Update event 'cos it gives more control...eg: If Not Right(Me![Text1], 5) = "I" Then MsgBox "Put the right information in you dozy $%^&!" DoCmd.CancelEvent End If
  16. EnidtheDog

    How to import data from Foxpro 2.6a

    I am not sure about Foxpro versions, but I have always done it by attaching the FoxPro tables to my Access db using ODBC then building an append query. This way I get to see the Foxpro schema too!
  17. EnidtheDog

    POP-UP REPORTS????

    I am a little unclear just how this dosen't work. It should, even with your mods. What is the error? The biggest issue you might get is the order in which the Forms "reappear". If any of the forms are modal this may give you a problem. Try making the forms not modal and give it a...
  18. EnidtheDog

    POP-UP REPORTS????

    Annoying, ain't it: Someone at the Compuserve Access forum showed me this: Private Sub Command49_Click() Forms![frmLocation].Visible = False DoCmd.OpenReport "rptSite", acViewPreview While IsReportLoaded("rptSite") DoEvents Wend...
  19. EnidtheDog

    Fixed IP address?

    Good question! I think I am going back to Mdaemon. It is much simpler, cheaper, it works, and supports Multi-Pop mail collection to collect mail from a number of pop accounts.
  20. EnidtheDog

    Fixed IP address?

    Hi - a really basic q, but I am getting mixed info... Is it possible to run exchange on a network that does not have a permanently assigned IP address? We have a v small network and connect to an ISP vis a Modem Router. I would like to sertup shared folders so we can eaily share emails. The...

Part and Inventory Search

Back
Top