Search results

  1. L

    Type over default text in text box

    Perfect Wayne Thanks
  2. L

    requery form

    Attached is a zip I made of it the last time I was trying to fix it. There are some errors that you can ignore as they are caused by leaving stuff out. When you open up the form , hit Add and then the error occurs when you try to type in a part number.
  3. L

    requery form

    I have had to remove the parent cild link due to a problem with creating a new record (which I have tried multiple times to fix). SO this is the work around. I would prefer if my Parent/Child link was working properly
  4. L

    Enabling right click

    Yes right click does not pop a menu like it does when you have full Access. So it is possible to simulate it.
  5. L

    requery form

    No afraid not - "Cannot find the field named mySubFormName"
  6. L

    requery form

    I am trying to requery a subform in the oncurrent event of another form. I am using the syntax provided by Mile-O-Phile on this site as follows Me.Parent![fsubDrawRev].Requery Forms!frmDrawings!fsubDrawRev.Form!fsubDrawRevsubform.Requery The first requery works fine but the second one says I...
  7. L

    DoCmd.RunCommand acCmdDeleteRecord

    Thanks worked perfectly.
  8. L

    Enabling right click

    Yes sorry it is Access runtime that is installed with .adp packages. Does this mean that right click etc should work so on these machines.
  9. L

    requery cauisng flickering

    Thanks guys. My flickering was actually cause by unassociated labels (its an MS bug apparently) I just associated the labels with textboxes and it's fine. I still have some of the flickering caused by the things you mention but it is at an acceptable level.
  10. L

    requery cauisng flickering

    Does anyone know how to stop a requery causing the app to flicker.??
  11. L

    DoCmd.RunCommand acCmdDeleteRecord

    I am using the following command to delete records. DoCmd.RunCommand acCmdDeleteRecord which is fine if the user presses OK but if the user presses No it just crashes. How do I code this with my own error messages. Below is what I have so far but that deletes whether you press or no as the...
  12. L

    Enabling right click

    I have been using Access .adp and Packages to deploy the app on a PC without Access installed (thus reducing no of licences required) as far as I was aware that was the purpose of them.
  13. L

    Enabling right click

    ghudson I am now using this method but how do I deal with it when the user hits No. On a machine where Access is not installed it just crashes. I have tried the following butthis just gives me 2 MsgBoxes the access one and my own. Any ideas ? Dim Msg, Style, Title, Response DoCmd.RunCommand...
  14. L

    Enabling right click

    It does I was just hoping to avoid putting in a button as it's not suitable on some of my forms. Think I'll have to go with that.
  15. L

    Access Runtime & Security Files

    I agree you would have to uninstall and reinstall to update the packaged app.
  16. L

    Enabling right click

    Unlike everyone else I want to enable right click but ticking the allow Default Shortcuts Menu won't work for me as I am using Access .adp which runs on machines that don't have Access installed (therefore they cannot have shortcut menus). How do I get around this or do I have to find another...
  17. L

    Help Storing text value of combobox not ID

    Why not use the Access Pivot Charts - saving you the hassle of exporting. Have you tried me.txtbox = me.cboCombo.colum(1) in the afterupdate event of your combo box
  18. L

    Max record for a group of recs

    No joy I'm afraid same result.
  19. L

    Master Child link on subform

    I have a form (1) that is just a list so it does not need to be updateable so I set recorset type to snapshot. On another tab I have another form (2) and a subform (2a) that shows more details about the record shown on form 1. The master child relationship between Form 1 and 2 is as follows (on...
  20. L

    Max record for a group of recs

    I have a view based on 4 tables. From this view I need to show only the highest revision of an item. The revision number and details are held in one table while the main data is held in another. This is the code I was using but which doesn't work as I wanted it. I need to only return 1 line per...
Back
Top Bottom