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. Nevets

    Help! Access 2000 opens as Read-Only despite obvious solutions

    We don't use AD, so that doesn't apply here. Good thought, though...
  2. Nevets

    Help! Access 2000 opens as Read-Only despite obvious solutions

    All are on Access 2000 SR-1 Professional.
  3. Nevets

    Help! Access 2000 opens as Read-Only despite obvious solutions

    Yes. All of the users have the same permissions. Also there was nobody else in the database at the time, so it doesn't appear to be another user locking it. I know I'm missing something simple, but I seem to have exhausted the obvious answers. Oh, how easy it would be if I could just go and see...
  4. Nevets

    Help! Access 2000 opens as Read-Only despite obvious solutions

    I have an Access 2000 application that I developed. I recently put a prototype onto a shared network drive for a group of users to test/give their feedback. The app is split into front end/back end. The problem is that one of the users out of a group of three or four can only open in read-only...
  5. Nevets

    A2K database opens only in read-only mode for one user

    I have an Access 2000 application that I developed. I recently put a prototype onto a shared network drive for a group of users to test/give their feedback. The app is split into front end/back end. The problem is that one of the users out of a group of three or four can only open in read-only...
  6. Nevets

    REPORT EMAIL?EXPORT HELP

    If you're on a LAN, just download it once, then istall it to the users' PCs. Or, you could download it once and burn it onto a CD ROM. Install from that. Those are just two suggestions of a number of ways to go about it. But essentially you needn't do a separate download for every single user.
  7. Nevets

    REPORT EMAIL?EXPORT HELP

    I have used two options to do this myself. One is to use the SendObject method via either macro or module in VBA as a .rtf (rich text format) attachment. This format opens in MS Word. It is a little bit tricky and finicky to get the initial formatting and layout just right. You have to play...
  8. Nevets

    Parent/Child form problem

    In an Access 97 application I am developing, I have a parent form, "Maintenance". From this form the user can open another for "Financial Scenarios". The idea is that the user can play around with the numbers for a given product in the database to see the results of negotiating better financial...
  9. Nevets

    Pop-Up Calendar for Access Forms

    Below I have pasted some code from a module I created. In this case I am selecting records, and appending them into a table based upon a date range. The user selects the date range from calendar controls on a form. While this is not exactly what you are trying to acheive, you can utilize the the...
  10. Nevets

    How do I populate list box with field names of a table?

    Thanks. I had the feeling I was missing something fairly simple.
  11. Nevets

    How do I populate list box with field names of a table?

    I am trying to build an interface to allow users to select which fields from a specific table they wish to include in a query. For some reason I am stumped on trying to figure out how to get the field names of a table, rather than it's records to populate the list box. Can anyone help? The next...
  12. Nevets

    Trying to Hide Zeros in a report

    If I understand correctly, you simply don't want zeros to display on the report?... By which I mean that you want the records to show, but not the zero values attached to them? If this is the case, you can probably make that particular text box on the report handle the zeros with an 'IIF'...
  13. Nevets

    How do I connect to a SQL server back end?

    I generally set up my users with system DSNs. That way the DSN can be used by anyone who logs onto that PC, as long as they have permissions assigned on the SQL server. I also recommend that you come up with standardized DSNs. i.e: the description of a given DSN should be the same on each...
  14. Nevets

    ActiveX Calendar in Acc97

    I have used the calendar control in a number of my apps. So far, I have always used it in conjunction with a command button. I declare a variable(s) for the date, then set their values by what the user has selected on the calendar controls: Dim StartDate As Date Dim EndDate As Date...
  15. Nevets

    Access97 calculate how many days fall between two dates

    Try this: DateDiff("d",[DateField1],[DateField2])
  16. Nevets

    need search & replace function to replace words w/abbreviations

    I'm not quite clear on where I would identify what words are to be abbreviated, and what their abbreviations would be. Examples being: Advanced = Advd Illustrated = Illus Cookbook = Ckbk Where would this fit into the code? Sorry if I'm being a bit dense... I am self taught in VBA, as well as...
  17. Nevets

    need search & replace function to replace words w/abbreviations

    Can anybody help me with a function to perform a search and replace for a string within a string (Access 97)? I am working with tables containing book titles. For reporting purposes, I need to search within the title for certain words and abbreviate them. For example, if there were a book titled...
  18. Nevets

    Report Writer Limitations

    I cannot remember the specifics, but I have run into problems where I exceeded the number of fields permitted on a report. I had to work around this by getting fancy with subreports. Also there is some limitation on the number of fields containing expressions which can be contained within a...
  19. Nevets

    Very odd printing issue

    Go into the Page Setup for the report in question. Click on the Page tab. You will see an option to Use Specific Printer. Perhaps this is where your problem lies?
  20. Nevets

    Concatenate

    ...just a little refinement on the previous response = [Field1] & [Field2] will result in combining the two as one string without spaces. For example MainSt. = [Field1] & " " & [Field2] will add a space in between to give you Main St

Part and Inventory Search

Back
Top