Search results

  1. IMO

    Refreshing

    In the OnClose event of your second form.. Forms!frmYourMainForm.Refresh IMO
  2. IMO

    Find space location in a text string

    Create an Unbound text box on your report and enter this into the Control Source: =Left([YourField],InStr([YourField]," ")) Changing "YourField" to the name of the field in the table which contains the text IMO
  3. IMO

    Hide combo box's until required.

    In the AfterUpdate Event of your first Combo put code like.. Me.YourSecondCombo.Visible = true and in the AfterUpdate Event of the Second Combo.. Me.YourthirdCombo.Visible = true and so on. In the OnOpen event of the form have.. Me.YourSecondCombo.Visible = false Me.YourThirddCombo.Visible...
  4. IMO

    2 forms questions - size and input...

    In the Forms properties set PopUp = Yes and in the Forms On Open event put this code DoCmd.Maximize IMO
  5. IMO

    2 forms questions - size and input...

    Like this? IMO
  6. IMO

    2 forms questions - size and input...

    Do you want your form to cover everything (taskbar etc.)? If so, see attached. To maximize the form to fill the Access window add the following code in the 'On Open' event of the form... Private Sub Form_Open(Cancel As Integer) DoCmd.Maximize End Sub IMO
  7. IMO

    logging history for each record

    Do a search here on 'Audit trail', there have been many posts and examples on the subject. If you still have no luck, post back and I'll send an example. IMO
  8. IMO

    Publishing reports on the web

    Not much fun :mad: If I come across something I'll let you know IMO
  9. IMO

    Publishing reports on the web

    Maybe this Link could help. IMO
  10. IMO

    Form - re-sort button

    Private Sub YourButton_Click() If Me.OrderBy = "Column1" Then Me.OrderBy = "Column2" Me.YourButton.Caption = "Ordered by Column2" Me.YourButton.ForeColor = vbRed Me.OrderByOn = True Else Me.OrderBy = "Column1" Me.YourButton.Caption = "Ordered by Column1"...
  11. IMO

    Adding Textbox not in Field List

    Glad you got it working IMO
  12. IMO

    Publishing reports on the web

    I see what you mean. Just another idea, What about saving it as a .PDF for your website? IMO
  13. IMO

    Adding Textbox not in Field List

    Create a Query containing the same fields as the table your form is based on adding the extra field within the query, then change the Record Source of the form to your new query. Now you can drag and drop from the field list. IMO
  14. IMO

    Publishing reports on the web

    Is the conditional formatting still there if you don't use Word but just output to html? DoCmd.OutputTo acReport, "YourReport", "HTML(*.html)", "", True, ""
  15. IMO

    Adding Textbox not in Field List

    If it's not listed in the field list then it's not in the table or query that your form is based on, so you'll have to create an unbound textbox and make sure your tables are related correctly, or, add the field to the table or query that your form is based on. If you'd like to post a stripped...
  16. IMO

    List box problem

    In the listbox properties change 'Multi Select' to 'None' IMO
  17. IMO

    Corrupt Database?

    Is this form hidden? Goto Tools >> Options and on the view tab check the 'Hidden Objects' check box IMO
  18. IMO

    Design changes create problem with replication

    I thought you wanted to replicate before updating IMO
  19. IMO

    Design changes create problem with replication

    Maybe... DoCmd.RunCommand acCmdCreateReplica ? IMO
  20. IMO

    Shift+F2 Zoom in Citrix

    In the Double Click event of the textbox you want to zoom, put the following code... Private Sub YourTextBox_DblClick(Cancel As Integer) DoCmd.RunCommand acCmdZoomBox End Sub IMO
Back
Top Bottom