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 wOOdy-Soft 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 rdnzl

  1. rdnzl

    Single/double data types

    To both of you, thank you. Yes, I do understand it, but I was a little confused at the moment :-) I don't know why Access (both '97 and 2002) displays the result in that way... Jens
  2. rdnzl

    Single/double data types

    Hi there! Will you please try the following code, and tell me why this works: Dim sngMin As Single Dim sngMax As Single Dim sngRes As Single sngMin = 145 sngMax = 1440 sngRes = sngMin / sngMax (=0,1006944) But not this: sngMin = 143 sngMax = 1440 sngRes = sngMin / sngMax (=9,930556E-02) TIA Jens
  3. rdnzl

    Backup SQL database

    Thank you, I'll try that.
  4. rdnzl

    Backup SQL database

    But I would like to write the backup routine in VBA or VB6, is that possible?
  5. rdnzl

    Backup SQL database

    Hi! In an Access adp file, it's possible to make backup of the SQL database. I would like to do the same from code (VBA/VB6). I've searched the MSDN (and Google), but I haven't found anything. Anyone here that have a solution for this? (No, the FSO doesn't work either, because the db files are...

Part and Inventory Search

Back
Top