Search results

  1. Auntiejack56

    Deploy MS Access on Web

    My company does this if you are happy for your backend to be migrated to SQL Server. Spoiler alert: monthly per user charge.
  2. Auntiejack56

    Seeeking BrowseFolder coe

    vOpenAt = "C:" Set ShellApp = CreateObject("Shell.Application").BrowseForFolder(0, "Please choose a folder", 0, vOpenAt) strFolderPath = ShellApp.self.Path Try this.
  3. Auntiejack56

    Elegant ways to handle multiple queries within a single sub

    It was called the Data Dog, because it ran around burying bones in the data, and then when the bones were all buried we went thru and dug 'em up.
  4. Auntiejack56

    Elegant ways to handle multiple queries within a single sub

    It reminds me of a Treasury department job I had in a bank where there were many classifiable reportable transactions coming in from all over, and we had to do a very similar thing. I added five new booleans to the input data, and we ran five big queries against it. We scanned the data set of...
  5. Auntiejack56

    Elegant ways to handle multiple queries within a single sub

    Your description is interesting. You know what I would be tempted to do? After importing the data, run a big wide query against it, including if possible all the fields from all the tables that you will be checking - that is, link in the products and stock, supply windows, prices, original...
  6. Auntiejack56

    Elegant ways to handle multiple queries within a single sub

    Also FWIW, where the task is very complex, as yours seems to be, consider your main sub to be just an index or ToC for the work you are trying to do. This is easier where the main queries are snapshots and you can confidently pass the variables into other subroutines. So for example Private...
  7. Auntiejack56

    Phone Numbers Update

    This is a very complex area, and one option would be to get the C# version of the above library, and create a DLL that will format the numbers correctly. That might be daunting for you, but possibly a straightforward task for a helpful colleague, if you work in a large shop. And before you ask...
  8. Auntiejack56

    odbc sql cannot generate sspi context

    You might be able to get a clue about this by going to the microsoft doco regarding the Kerberos Configuration Manager. If you have a spurious SPN on the server, then there are ways to fix or remove it. I have zero-raised-to-a-mighty-power experience in this, but a download of the Kerberos...
  9. Auntiejack56

    Solved Mousepointer

    Ah, ok, I was setting it in the Mousedown event and expecting it to display. In fact, you have to change the pointer before the mousedown. Got it now, thanks Kita.
  10. Auntiejack56

    Solved Mousepointer

    Thanks. Hmmm ...
  11. Auntiejack56

    Solved Mousepointer

    Hi, Once upon a time, Screen.Mousepointer = 7 would change the cursor to a double-ended arrow, but it seems to no longer do so. In fact, it does nothing at all. No error, no nuffin. If I put Debug.print screen.Mousepointer on the next line, it shows 7 in the immediate window, but there is no...
  12. Auntiejack56

    Ubound does not work

    Yep, you have a two dim array created from "SELECT HorseID FROM tbHorse WHERE ... " etc So the array has: dimension 1=Fields (there is 1 field, HorseID, so the ubound for that dimension is 0) dimension 2=Rows (there are .recordcount rows, so the ubound for that dimension is recordcount - 1) The...
  13. Auntiejack56

    How to set Subform data from a main form?

    Hey CJ, I think you have an extra 'Me' in there ... Me!AbteilungFunktion.Form!Abteilung.Form!AbteilungCboBox = Me.MAF_AbteilungsID
  14. Auntiejack56

    Solved Is it possible to search for gaps between records?

    Sometimes well documented RBAR in VBA can be great in a DB that is going back to an SME who has NFC.
  15. Auntiejack56

    Ms access online back end / via internet .... without affecting performance

    Azure was fine last time I used it, conversion and upload is easy. But not fast enough for POS I wouldn't think. As arnelgp has suggested, you could download stock/barcodes/prices to a local table before starting each day. If your users via the internet need to access a local stock table at POS...
  16. Auntiejack56

    Button on Subforms - showing related records

    The OP is quite right. He is talking about design view, the cue being his reference to the button wizard. When you create a continuous form, and drop a button on it, the button wizard opens. If you then add the continuous form to a main form as a subform, the behaviour is different. If you drop...
  17. Auntiejack56

    Solved Using the same subforms on different forms utilising a dynamic query

    You note that you can't link the subforms because the main form is a cross-tab. I'm not 100% sure what you mean by that, but you can master/child link a subform to any main form. The link uses the value of a control on the main form - it doesn't matter what the data is (the main form doesn't...
  18. Auntiejack56

    Create an Addin - xla, COM, VSTO, Office or what

    Hi, I'm about to create an Excel addin, and would like to deploy as an Excel task pane addin rather than a VBA xla. I prefer this path because it makes the code more secure, the pane is a great UI that will provide guidance for users, and it will run in Excel without needing to download and...
  19. Auntiejack56

    Loop through controls Ms Access 365

    I think, of the top of my headlights, that it should be Dim ctr as Control
  20. Auntiejack56

    Subform to display records based on form combobox

    So this would be one (very quick) way to do it. Add a new column to the table with the surcharges: For the FET record, the new column would contain: oft/faf/doc/hcs For the TAT record, the new column would contain: oft/buc/psc/pss/thc For the EXW record, the new column would contain: oft/faf/buc...
Back
Top Bottom