Search results

  1. gemma-the-husky

    Solved Printing Access Report Using Thermal Printer with Custom Page Size

    Yes, it occurred to me that the variable report size must be the issue. The printer will always print a full A4 page with each iteration, won't it. Other than printing a line at a time, I can't see an easy way round it.
  2. gemma-the-husky

    Solved Automated search for Database Corruption Assistance

    @Pat Hartman Pat. I often work inside the front end. For instance if I am preparing a quotation, I work on temporary tables in the front end. If the user cancels, there's no issues. If the quote is finalised, then the temporary tables get appended to the back end. So in this case having...
  3. gemma-the-husky

    Solved Printing Access Report Using Thermal Printer with Custom Page Size

    Surely you can use page layout/ set up to determine the size of your document. If it's a continuous roll, can't you get the print routine to print a few extra blank lines, and then just tear off the print? How do you actually expect to separate the receipt? On reflection maybe you can't do...
  4. gemma-the-husky

    too slow on getting calc done

    Might the adverse performance be caused by having multiple concurrent users? In which case you might need to look at all users establishing a persistent connection to the backend database. I think that's what you've described in your last post. Each user needs to maintain a connection to the...
  5. gemma-the-husky

    Using Access to download files using FTP

    Here is the full module which includes the public types referred to, and the API process calls. Note that this is for 32bit Access. You can comment out the reference to smode and tblconstants. When I run this the black ftp screen opens and echo's the commands. I was trying to suppress that...
  6. gemma-the-husky

    Using Access to download files using FTP

    I use this command to send/retrieve a file. Call ExecCommand("C:\Windows\System32\ftp.exe -ns:" & Chr(34) & scriptfolder & ScriptFile & Chr(34), vbMinimizedFocus) scriptfolder and scriptfile give the path to the .bat file This is ExecCommand. I haven't kept a note of where I found it. I...
  7. gemma-the-husky

    Using Access to download files using FTP

    But do you need a login when you reach the FTP site?
  8. gemma-the-husky

    Using Access to download files using FTP

    Don't you need a username and password for the FTP site login. You have two cd lines. One needs to be LCD, doesn't it? Or are you trying to navigate to one folder, then a subfolder of that folder. Is the FTP path correct? I create FTP scripts as you are doing and then run them by calling FTP...
  9. gemma-the-husky

    Import text file

    Use transfertext with no delimiter? Or with a delimiter that won't be in the file, such as a pipe symbol, maybe. You could treat it a fixed length text file, and position your own delimiters. I presume it must be fixed width. Then it will create multiple columns. If you already have a the...
  10. gemma-the-husky

    Majp Treeview Error

    What does that "with events" qualifier do? Is there startup code running when you instantiate TVW that could fail without raising an error? Could you include an onerror trap before the "set NVW" statement?
  11. gemma-the-husky

    Solved Automated search for Database Corruption Assistance

    The hard bit that even a lot of system admins don't really get, is that logins to a RDP server, or a Citrix set up, have to be directed to a unique folder for each user. Although in theory a single access front end database is multi user, in practice there can be difficulties and we advise...
  12. gemma-the-husky

    Solved Take three user selected fields and use an INSERT INTO statement to create a new record in a table that only has those three field AND a Key

    Generally you can't have too many spaces. I add them between all terms in a SQL string even if they aren't necessary. Sometimes they are, and it saves hunting for the syntax error.
  13. gemma-the-husky

    Parsing plain text box in report

    Not in a report, but I have stored data in a string field with a separator. I can then assign the string field to a combo box value list, and change the string into a nicely presented layout. I use it to store document version histories for instance, to show a file name, date etc, and then the...
  14. gemma-the-husky

    MS Access: An Ordinal Curiosity

    Do you mean that if the combo box just contains a single column of text values, you can still derive the index number of the selected row? If so, I didn't appreciate you could do that, and I also don't really see a benefit from doing so.
  15. gemma-the-husky

    MS Access: An Ordinal Curiosity

    A bound combo box is set to reference a specified column of the query, normally the first column (column(0)), but it doesn't have to be. It displays the first non zero width column, which is most likely not the same thing. When you say ordinal number, I presume you mean cardinal number...
  16. gemma-the-husky

    Majp Treeview Error

    Do you have option explicit in the module? How have you declared TVW?
  17. gemma-the-husky

    Left/Right/Mid

    Wouldn't Val return the correct value? Not sure if the slashes would interfere.
  18. gemma-the-husky

    How to format date

    But it is awkward to define a date correctly when there is a time involved.
  19. gemma-the-husky

    Who keeps Access opened 2 ?

    Well I assumed the server was on the LAN, and somebody must be able to connect to it. Even if it's Firebird, does Firebird not offer management tools to ascertain who is connected, and stop the connection if necessary? I assume we have a professional corporate system here.
  20. gemma-the-husky

    Who keeps Access opened 2 ?

    What I was wondering was why it was as an issue. Is there still the same problem that you can't perhaps redesign the back end while it is showing as in use?
Back
Top Bottom