Search results

  1. K

    call subform validation from main form

    hi i have a piece of code that carrys out some form validation, see below 'form Validation Function CheckForEmpty() As Boolean CheckForEmpty = True ClearControlFormatting Dim ctrl As Control For Each ctrl In Me.Controls If ctrl.Tag = "FILL" Then...
  2. K

    Solved Field in form is limiting charactors to 255

    Apologies it was due to the query being aggregated, which cause the field to be truncated
  3. K

    calling a sub form bounbd to a form

    hi, ive written an if statement to check if a sub form is open before requering it, but im having an issue with c alling the object, below is my if statement, what is the correct method of calling the sub form inside a form please. If...
  4. K

    Solved query limiting character count in append

    hi, thanks for your reply, i've just loked at that, found out it was an issue with aggregate data
  5. K

    Solved query limiting character count in append

    hi im trying to append data from one table to another, but it seems the query is limiting the character to 255, is there a way around this? the table field is set to long text on both the table the data is coming from and the table where the data is going to.
  6. K

    Solved Field in form is limiting charactors to 255

    ive found the issue
  7. K

    Solved Field in form is limiting charactors to 255

    hi all i have a field on a form that is limiting the charactor count to 255, ive checked in the table and the field is set to long text and rich text the text box on the form is alos set to rich text, but its still limiting the charactor count to 255, is there anywhere else apart from the table...
  8. K

    Filter Query Based on two Date Fields

    ive done it, should of tried a little harder
  9. K

    Filter Query Based on two Date Fields

    hi all im trying to filter a query based on two fields, these two fields are date fields, [DateComp] and [DateCreated] what i would like to do is return all entries when [DateComp] is empty and todays date from [DateCreated] ive tried to add "IsNull" to the [DateComp] critieria, which...
  10. K

    Adding Checkbox to a grouped by query

    thanks for the help, i decided to handle the check box on another form, which achieved the same result
  11. K

    Adding Checkbox to a grouped by query

    thanks for the reply, forgot to mention, on the sub form under Total hours, under the control source of the field i have this "=[Minutes]\60 & Format([Minutes] Mod 60,"\:00")" which converts the total minutes in the hours and minutes, so if i remove the sum this no longer works.
  12. K

    Adding Checkbox to a grouped by query

    thanks ill take a look
  13. K

    Adding Checkbox to a grouped by query

    if i remove the grouping i get an error (which ever field is first i,e Manhours_ID) your query does not include the specified expression manhours_ID as part of the aggregate function
  14. K

    Adding Checkbox to a grouped by query

    the field "minutes" is an aggregate on the form its viewed as "Total hours"
  15. K

    Adding Checkbox to a grouped by query

    Hi all i have an issue im not sure how to resolve. i have a query thats grouped in in that query is an expression, that calculates total hours, baed upon a user and date which is the last box in picture 1 below. picture 2 displays the sub form that the query is bound to, in table TblManHours...
  16. K

    Solved using if statement on continous form

    its ok ive sorted it now, thanks for the pointer
  17. K

    Solved using if statement on continous form

    thanks for your reply, could you elaborate of give an exmple please, im not sure how it would work
  18. K

    Solved using if statement on continous form

    i have two fields on a continous form, reason im using a continous form is so i can use a delete entry button. CbxEventTracker and CbxNonEventTracker when the CbxEventTracker has an entry, i want to grey out the CbxNonEventtracker field this is what i used Private Sub...
  19. K

    Bound Sub form Not loading when linked to MySQL Db

    yes primary key from TblManhours.ManHours_ID and Foreign key from TblManHoursType.ManHours_IDFK
  20. K

    Bound Sub form Not loading when linked to MySQL Db

    yes there is a master/child relationship
Top Bottom