I have created an msACCESS database with a report and subqueries. As I am developing it I am able to print to a printer.
I have now copied the database and the new database does not print -- Says printer not found -- and the original database no longer prints.
I have been able to duplicate this 5 times so far.
How can i fix this ?
Search Result
Collapse
2 results in 0.0013 seconds.
Keywords
Members
Tags
-
Why won't MSAccess 2007 print after copying the database?
-
Why pack_into doesn't write correctly some bytes?
When I try to write a specific byte (letter 'p') in a writable buffer using pack_into the result is a corrupted data:
The answer should be '\x30'....Code:>>> from ctypes import create_string_buffer >>> from struct import pack_into >>> test = create_string_buffer(1) >>> pack_into("B", test, 0, 48) >>> print repr(test.raw) '0'