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

    linked table from local mysql-server has only #deleted entries

    Ok, figured it out! This page has general hands-on information about linking tables from mysql servers into access: http://www.washington.edu/computing/web/publishing/mysql-access-3.5.html The following webpage has valuable tips to make the odbc-linked tables work flawlessly...
  2. spitzmuller

    linked table from local mysql-server has only #deleted entries

    Hi there I tried to link some tables that reside on the mysql-Server on my local machine into a new access database using the ODBC 3.51 driver everything worked fine with no errors. But when I open the linked table in Access, all entries have #deleted values, although when I check via...
  3. spitzmuller

    Prevent Closing Access with the X by mistake

    Thanks for all your help so far. But it still doesn't work. I created a hidden form and i open it from the Form_Open-Routine of my Main Window. When the hidden form's unload function is called, i can set Chancel = True as much as I wan't, I can't prevent the Database from closing. I guess...
  4. spitzmuller

    Prevent Closing Access with the X by mistake

    Hi PaulF Well, maybe your users can, but my users definitely cannot do that (as in: they are total windows newbies). Otherwise yeah - you're right.
  5. spitzmuller

    Export Access-DB to SQL-Format to load it into mySQL

    Love it too!! Thanks so much for this hint! Greets Simon
  6. spitzmuller

    Export Access-DB to SQL-Format to load it into mySQL

    Hi out there Is there a simple way to export the tables (and maybe the relationships as well) of an Access 2003 Database into SQL-Format, so that it can be read into mySQL? Or does anyone have another suggestion on how to transfer a database from Access to mySQL? Thanks in advance for...
  7. spitzmuller

    relink table links to the back-end when backend is password protected

    Hi out there Finally got the right connection string working: instead of reconnecting the linked table to the backend I create a new linked table with this code: Dim td As TableDef Set td = CurrentDb.CreateTableDef(TableArray(Nr), dbAttachSavePWD, TableArray(Nr), ";DATABASE=" & dbPath &...
  8. spitzmuller

    Prevent Closing Access with the X by mistake

    Hi mstrmage1768 Tanks for your reply. Your code works fine if a form window within access is closed with the "X" But I am talking about the Access-application window itself (the mother window if you want). There is no UnLoad-Event for Access itself... Simon
  9. spitzmuller

    Prevent Closing Access with the X by mistake

    Hi out there Great Forum! But couldn't find an answer for this one... I'd like to stop the closing process of access when a user hits the X in the upper-right corner of the application window. I'd like then to ask the user if he is sure and if he clicks yes close access, if he clicks no cancel...
  10. spitzmuller

    relink table links to the back-end when backend is password protected

    By the way: I am using Access 2003 (upgraded from Access 2000 about a year ago)
  11. spitzmuller

    relink table links to the back-end when backend is password protected

    Hi PHV Thanks for the link. But it still doesn't work. I keep getting an error: 3170 Couldn't find insatallable ISAM In the above code, i have just replaced td.Connect = ";DATABASE=" & dbPath with td.Connect = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & dbPath & ";Jet...
  12. spitzmuller

    relink table links to the back-end when backend is password protected

    Hi out there I have a Front-End database that contains links to tables in a password protected backend database. The two databases reside on a server and the user start the database from there. Due to IT-restructurisation, the location where the databases are saved will change a few times...
  13. spitzmuller

    Please Help! Print group footer wit last detail

    Thanks Remou Quite clever, really! Should have come up with it myself. Still odd that there's no "Keep together with last detail" Option in Access for this. Have a star. Simon
  14. spitzmuller

    Please Help! Print group footer wit last detail

    Hi there This must be a common problem but I couldn't find a thread that helped... I would like to print a group footer with the last detail (if it doesn't fit on the page and a new page is required). Right now I sometimes get the group footer on a new page without any data and that's quite...
  15. spitzmuller

    Error Propagation from Report back to Opening Call

    Hi out there I have a report that - using VBA - is configured based on user input. That input is possibly invalid and then opening the report will throw an error, which I would like to intercept and then let the user know in a decent way. This is the code that I use to try to open the report...
  16. spitzmuller

    Custom Toolbar Button: How to change it's color

    Hi there AceMan Yeah, i guess when it comes to customizing toolbar buttons, the icons are the only option. That's unfortunate but I'll just work with icons Thanks anyway for your help, you name fits! Greets Simon
  17. spitzmuller

    Custom Toolbar Button: How to change it's color

    Hi there Is it possible to change the background color of a toolbar button (on a toolbar that I created) in code? Thanks for your help Simon
  18. spitzmuller

    OnAction-Property of ToolbarButton needs to call a function with param

    Hi there again I figured out what the problem was: my ShowForm-Procedure was defined as as Sub, but the OnAction Property needs a FUNCTION n to be called. So I changed Sub to Function and It works a charm. Thanks AceMan for giving me some fresh ideas about the problem... I was beginning to...
  19. spitzmuller

    OnAction-Property of ToolbarButton needs to call a function with param

    I'm fine, AceMan. Thanks for your reply your code is what I tried first, but I get the error: "The expression you entered has a function name that MyDatabase can't find." As I said: it works if the same function does not take an argument. Is it possible that .OnAction cannot call functions...
  20. spitzmuller

    OnAction-Property of ToolbarButton needs to call a function with param

    Hi there I am currently writing code to create a custom toolbar. At runtime, this toolbar will be populated with buttons - one for each open form - to give one-click access to all open forms. For that i need to have the OnAction-Property call a function with an argument (the name of the...

Part and Inventory Search

Back
Top