Search results

  1. D

    Get file size for big files

    Works great. Thank you! :)
  2. D

    Get file size for big files

    I'm trying to get the file size of files that can be up to 8GB. filelen() only works up to 2GB, as bigger files than that returns a negative value. I understand there are methods to retrive the correct file size for files bigger than 2GB, but I haven't quite understood how it works...
  3. D

    Check each filename in an array to see if file exists

    Excellent! Thanks! I think this should do what I want. :)
  4. D

    Check each filename in an array to see if file exists

    Hi, I'm rather new to the VBA part of Access and hope that maybe someone can help me out. This is what I'm trying to achieve: Find records that meet certain criteria, through an SQL statement (I have a query, but not sure how to do it in VBA) For each record in the array, check if the...
  5. D

    Setting autostart property to true for WMP ActiveX control

    I get an error when trying to set autostart to true for the WMP control in VBA (it's false by default). Me.wmplayer.URL = path_to_file works fine (although Me.wmplayer.filename doesn't). But this gives me the error message "The object does not support the property or method"...
  6. D

    Auto increasing a number, depending on maximum number when condition is met

    Thanks neileg and Pat! I split them up in two fields and have it working quite fine now. Only issue is when someone is changing the member (and thus getting a new code) and then changing it back to the old member. Then the original number is gone and the new number is one higher than the then...
  7. D

    Playout system with Windows Media Player in Access

    Hi, I've set up a database that is acting as an interface for another database that plays mpeg2 files on scheduled times. But now that I've come this far I was thinking of doing that last step too and integrate mpeg2 playout in my own database. I'm writing now to ask about what experiences...
  8. D

    Setting table field to true when exporting to csv

    Hi, I export a query as csv to upload to another database on a web site. When that csv file has been exported I'd like the query to be emptied, so that the next time I export I don't export duplicates. What's the easiest way to do that? I've been thinking of having a field in the table with a...
  9. D

    Auto increasing a number, depending on maximum number when condition is met

    Hi, I'm trying to get the maximum number in a table field to increase it by one depending on the member that is selected in a drop down in a field. I have three tables: members, programs and times. Each member can have N programs and each program can be broadcast N times. Each member has a...
  10. D

    Converting two date/time fields to one integer

    Thanks! Worked excellent (after I managed to find the Swedish equivalent... :) )
  11. D

    Converting two date/time fields to one integer

    Hi, I'm combining two date/time fields in a query to an integer. The first field has the date, the second the time. I'd like the resulting integer to be without the opening 0. How can I do that? That is, these are the two fields: 2006-09-14 (date/time) 15:00:20 (date/time) And I'd like those...
  12. D

    Update two queries at the same time from a form

    Hi, Not sure where to post this as it covers both queries, forms and partly tables. ISSUE: I need to add two records to a query with one record in a form. Is this possible? BACKGROUND: This is a database with TV programs and the times they are to be broadcast. Tables: One table...
Back
Top Bottom