Search results

  1. theDBguy

    Modeling Account types and number of tables needed

    Good question. I am not very familiar with the differences in attributes between the two accounts; but if they have any common traits, I might suggest storing those in one table and just split the rest in separate tables. Unless, if the number of different attributes is not a lot, you might also...
  2. theDBguy

    A general question

    Maybe you could start out by looking at templates. Hopefully, there's something close to what you want, and you can just tweak it.
  3. theDBguy

    A general question

    Hi. I moved your thread out of the Introduction Forum. But to answer your question, I don't see why not. Why do you ask? What are you using now?
  4. theDBguy

    New member

    Hi. Welcome to AWF!
  5. theDBguy

    I need the minimum value among 5 different fields in one record

    You'll need a custom function for that, but it might be easier to handle if you have a normalized table structure.
  6. theDBguy

    50/50 Chance of Working

    You could also add a check for ControlType in your code.
  7. theDBguy

    Some Idea using tables in sharepoint

    Maybe look into using Power Flow or take a look at this article. https://thedbguy.blogspot.com/2021/03/download-file-from-internet.html?m=1
  8. theDBguy

    New Member

    Hi. Welcome to AWF!
  9. theDBguy

    Solved Anyone experienced this before?

    The original file I downloaded earlier didn't appear to have unique values. This becomes more apparent by adding an ORDER BY clause in the Row Source of the combo.
  10. theDBguy

    Solved Anyone experienced this before?

    Hi @Gasman Is the problem happening all the time or only on certain zip codes? The first thing I noticed on the original db file was that there are 1447 records in tbl_Zip and there are 1465 records in tbl_ZpCityState, which means there are 16 duplicate zip code values in the combobox. Since...
  11. theDBguy

    Solved Anyone experienced this before?

    What exactly does that mean? I just tried this and although I thought I would get an error when I set the bound column to 0 but I didn't, the combo seems to work normally - displaying exactly what I selected and the textbox for the other column also displayed what it's supposed to. I can't see...
  12. theDBguy

    PDF Complete

    Just as another way of troubleshooting, could you try manually creating the pdf? So, on the affected machine, open the report in print preview. Then, click on the PDF button on the ribbon. Does it work?
  13. theDBguy

    Poor performance over WiFi

    You might be able to get away with using WiFi if the BE is SQL Server. Just a thought...
  14. theDBguy

    Continuous form with different rowsource in same combobox

    You can; but in a continuous form, it would reflect on all rows. Does it have to be a continuous form? This is not a problem in a single view form and also not a problem if the continuous form is read only. But if you want the user to see the dropdown, it gets tricky.
  15. theDBguy

    PDF Complete

    I fell victim to the "copy & paste" monster. :(
  16. theDBguy

    PDF Complete

    Ah, sorry about that... :)
  17. theDBguy

    PDF Complete

    Which version of Access is on the PC that is failing? Just wondering... PS. If you use the following code, do you still get the same error? DoCmd.OutputTo acOutputReport, "rptFinishedGoods", acFormatHTML, strServerFileShareDir & "All-FG not Shipped.html", True
  18. theDBguy

    How to read IP Address of 'actually used' lan nic?

    Can you describe the main purpose for determining the IP address? Perhaps if the goal was known, someone can offer an appropriate approach. I was thinking of maybe using an HTTP request to get this info.
  19. theDBguy

    Solved Import Filepath Batch

    To see an example of what @Pat Hartman was saying, take a look at this demo. However, this version only uses a listbox to display the file paths. I'll have to find the one that uses a table and post it later. https://www.accessmvp.com/thedbguy/demos/listfiles.php
  20. theDBguy

    Solved Import Filepath Batch

    There's really no need to import the photos into a table. Access can easily display those photos from the folder on a report. All you need in the table are the filepaths. Take a look at Similar Threads below to see previous discussions on this topic.
Back
Top Bottom