Search results

  1. 2ippy

    picture linking subform

    all the code works as is, but the pictures don't display though the paths are there. more than welcome to have a look.
  2. 2ippy

    picture linking subform

    bumpy bump :(
  3. 2ippy

    picture linking subform

    I'm having a problem with my sub forms and the sample linking image code. Top subform is in data view and the bottom in form. Sync'd with a textbox. notes show individual data per record as you click on them, and the picture updates the location the same. Problem I am having is that the...
  4. 2ippy

    picture linking.

    nvm wrong forum
  5. 2ippy

    getopenfile_CLT

    Private Sub cmdBrowse_Click() On Error GoTo err_cmdBrowse Me![txtPicture] = GetOpenFile_CLT("C:\", "Select the File") Me![txtPicture] = LCase(Me![txtPicture]) Me!Picture.Picture = Me!txtPicture exit_cmdBrowse: Exit Sub err_cmdBrowse: MsgBox Error$ Resume...
  6. 2ippy

    Force switchboard to maintain window size

    Go to design view on the form. Click on the box left and above the ruler (top left corner) right click properties. under event tab, remove the 'On Open' code. It'll have some docmd.maximize code in there.
  7. 2ippy

    Back to main(default) switchboard

    I've tried this code and it will exit all your database. make a button and in properties, under the event tab. On Click - select event procedure. DoCmd.OpenForm ("form name")
  8. 2ippy

    form to form VBA

    that is brilliant thank you. Nice to see someone tells you how it's done and where you gone wrong rather than a fix. I can learn from it ;) How do i stop it now from filtering, so it takes me to all the records, but the correct record in the main form? Atm it's taking me to the record filtered...
  9. 2ippy

    form to form VBA

    well when i click on the name in the list i chose i goto the main form filtered which don't help :(
  10. 2ippy

    open form

    yeah i tried that but i screwed it up somehow.
  11. 2ippy

    form to form VBA

    customerlist is the box the list from from a query appear in and then filter out with the search txt box
  12. 2ippy

    open form

    there is docmd.close but that will close the database.
  13. 2ippy

    form to form VBA

    I'm working on the search sample in the sample database section on forum. I have got it looking as i want and working as i want bar 1 thing. Private Sub CustomerList_DblClick(Cancel As Integer) Dim stDocName As String Dim stLinkCriteria As String stDocName = "Customers" If...
  14. 2ippy

    open form

    DoCmd.OpenForm what is the opposite? there isn't a DoCmd.CloseForm
  15. 2ippy

    open form

    now get on msn and help me with something more complex :D
  16. 2ippy

    open form

    omg i did it without needing the help :D DoCmd.OpenForm ("Customer Search")
  17. 2ippy

    open form

    DoCmd.OpenForm sommat for opening forms?
  18. 2ippy

    pages within a control

    lmao i was messing with tonnes of of combinations and yet it's so simple :D edit: tyvm
  19. 2ippy

    pages within a control

    at top of event?
  20. 2ippy

    pages within a control

    genius me :P I fixed it. DoCmd.RunCommand acCmdRecordsGoToNew come up with a new bug though. If i'm already on a new record and run this then i get a error. I know i need.. if record = new - do nothing.. else DoCmd.RunCommand acCmdRecordsGoToNew
Back
Top Bottom