Search results

  1. M

    Distribution of Database (without Access)

    You'll need Office Developer Edition or Access Developer Extensions. The alternative is to redevelop the app using VB - which would be more expensive than using the first option
  2. M

    Adding a "Tip of the Day" feature to a database

    Please ensure that your References include the DAO library
  3. M

    "Do not show this screen again" : Splash Screen

    Here's a sample that I have posted that shows how this is done http://www.access-programmers.co.uk/forums/showthread.php?t=111241
  4. M

    Compile of hidden files error

    You should try to compile the application, i.e. go into any module then Debug->Compile and see if any errors show up
  5. M

    Linked tables problem , any suggestion?

    also, what version of Access are you using?
  6. M

    Linked tables problem , any suggestion?

    also, what version of Access are you using?
  7. M

    Linked tables problem , any suggestion?

    Good morning Can you send me the file..I'll see what's going on with this. My email address is STCYRM@AOL.COM
  8. M

    Linked tables problem , any suggestion?

    Normally the DBF file format should follow the DOS naming convention, ie. the name is 8 letters with the .DBF extension
  9. M

    Adding images to records

    The sample database that I posted a while back might be of some help to you. http://www.access-programmers.co.uk/forums/showthread.php?t=108698
  10. M

    Adding a new field to a table in Access 2000

    As mentioned in the other posts, you should rethink your design
  11. M

    ranking in a listbox

    Hi I've posted a sample database that does just that. It's available at: http://www.access-programmers.co.uk/forums/showthread.php?t=103456
  12. M

    Place a photo on a contact form

    Check the Sample Database area, there's an example there
  13. M

    Not in List function

    Don't forget that you have to set the Limit To List to YES
  14. M

    field names

    You don't need to modify your table. Simply create a query and do your calculations there
  15. M

    Moving records to a specific position in a recordset

    In this case, with the use of 2 listboxes you could possibly use the sample that I posted before: http://www.access-programmers.co.uk/forums/showthread.php?t=107665 where you could modify this sample as per the MoveRecord sample.
  16. M

    Dates in Reports

    Here's a function that may be useful Function fCardinalDate(bytDay As Byte) As String Select Case bytDay Case 1, 21, 31 fCardinalDate = bytDay & "st" Case 2, 22 fCardinalDate = bytDay & "nd" Case 3, 23 fCardinalDate = bytDay &...
  17. M

    Can't Find Known field??

    Is the new field part of your Recordsource for your report?
  18. M

    Screenshots - Part 2

    Hi Look at the Movesize command
  19. M

    Screenshots - Part 2

    Outlook Style Interface here's a screenshot of an Outlook Style interface that I use in some applications
  20. M

    report won't open - even in design view

    Maybe you should try the following for starters: 1) repair / compact the current database 2) create a new blank database and import all of the objects from the "bad" database into the new one.
Back
Top Bottom