Search results

  1. S

    Form as image

    I want to capture a form as an image (or a Word document that keeps the design of the form and doesn't simply export the fields to a Word document) so I can email it to a client to print off and sign. Something similar to producing report snapshots would be great. I've tried to export the form...
  2. S

    highlight form control

    I want to highlight the control on a form which has the focus so users can easily identify where they are on a form. I know how to do this - I have a function which, when called from the GotFocus event, changes the background of the control to yellow. The problem is I want an easier way to call...
  3. S

    populate text field based on list box selection

    Thanks Neal
  4. S

    populate text field based on list box selection

    I have a list box (lstname) based on a Table. The list box is bound by column one (ID) and has a second column (manager) containing a name. I want to double-click the appropriate row and have the name appear in a text field on my form. I've tried Me.txtMytext.Value = lstname.ItemSelected and...
  5. S

    Combo/List Box Populating

    I have several fields associated with each client ID for the names of dependents (dependent1, dependent2 and so on). They are stored in the same Table and of course, in the same record. I want to fill a list box with these values so the user can select one to fill out a form. When I attempt to...
  6. S

    Combo/List Box Populating

    I have several fields associated with each client ID for the names of dependents (dependent1, dependent2 and so on). They are stored in the same Table and of course, in the same record. I want to fill a list box with these values so the user can select one to fill out a form. When I attempt to...
  7. S

    Referencing control on Tab Control

    I thought I could reference a control on a tab control as if I was referencing it on the actual form: Me.hiredate = Now() It doesn't work for some reason. Before I placed it on the tab control there was no problem. Could someone let me know how to reference it properly or give an explanation.
  8. S

    Order By on Form

    Hey JT, I received a tip from someone to try the following and it seems to work. The thing is that I could swear I tried it this way but I must have other code with it that was throwing it off. Thanks for your response. Me.OrderBy = "[LastName], [FirstName]"
  9. S

    Order By on Form

    I set the Order By of my form to LastName, FirstName but when someone changes this order to look for something quickly it resets this property the next time the form opens. I've read several posts about this topic already and I attempted to set the OrderBy property of my form OnLoad but I don't...
Back
Top Bottom