Search results

  1. V

    mapping locations

    Thanks the Doc Man. I will be trying this tomorrow. I am always hoping layouts would stay the same but somethings the things we produce changes and the parts boxes have to move around with the new changes or new parts get added in. Not a weekly thing but it does happen on occasion. I will let...
  2. V

    mapping locations

    Pbaldy, so i tried looking at the code but i guess i am too novice to understand, i dont see a table on the database that you told me to look at and the code is somewhat unclear to me. I have designed my code right now but its not really efficient, and somewhat slow. I would love to have it do...
  3. V

    mapping locations

    Thanks Pbaldy! I am going to read this with some tea after the kids are down for bed. I figured out why my boxes are smushed, my data i used "container height" instead of "container length :P but i am still going to read this because im curious about the control limit. The only hard part about...
  4. V

    mapping locations

    oh my gosh! I think i just solved it Dim frmMaps As Form, ctlRect As Control Set frmMaps = CreateForm Set ctlRect = CreateControl(frmMaps.Name, acRectangle, acDetail, , , 100, 100, 12000, 3400) DoCmd.Restore Dim rs As DAO.Recordset Set rs = CurrentDb.OpenRecordset("SELECT * FROM Table1")...
  5. V

    mapping locations

    Playing around with some code i found online i am thinking of using something like: Dim frmMaps As Form, ctlRect As Control Set frmMaps = CreateForm Set ctlRect = CreateControl(frmMaps.Name, acRectangle, , , , 5000, 0, 590, 600) DoCmd.Restore ctlRect.SizeToFit I was able to make a button...
  6. V

    mapping locations

    hey everyone, so i have a small business and i am looking to keep track of my inventory and one of the ways to do that is to do inventory counts. In the past its been tedious due to the layout of the parts because they are organized across multiple different bread racks in boxes. I have over 40...
Back
Top Bottom