Search results

  1. khawar

    CrossTab without the GroupBY - Is it possible?

    You have to use group by But you can get the appropriate results by grouping properly
  2. khawar

    Criteria Problem

    But my question was where are you putting the criterea statement I assumed that you have a main form and a sub form from where the query will get data in that case my statement should work
  3. khawar

    Criteria Problem

    I wrote this using the form names you told where are you using this statement
  4. khawar

    Criteria Problem

    I wrote this using the form names you told where are you using this statement
  5. khawar

    Criteria Problem

    use this criterea Between [Forms]![frmMainForm]![frmreports].[form]![txtdatefrom] And [Forms]![frmMainForm]![frmreports].[form]![txtdateto]
  6. khawar

    Design Question, location change

    Have you seen orders form in Northwind Sample It shows a master child relationship between orders and arder details tables using sub form
  7. khawar

    Design Question, location change

    You have to maintain record for each location of patient it could be maintained very easily through master child using forms and sub forms
  8. khawar

    Any/All as a Choice in a Combo Box

    You have to modify your query or apply a filter to report through form. I have used the query method modified sample is attached
  9. khawar

    Any/All as a Choice in a Combo Box

    Use this sql in the row source of combo SELECT ITEMLIST.Ttem_Name FROM ITEMLIST union select '<All>' FROM ITEMLIST order by Ttem_Name;
  10. khawar

    Help needed "SQL Insert into..."

    use this after inserting value in table me.mycombo.requery
  11. khawar

    Help needed "SQL Insert into..."

    try to insert using field names
  12. khawar

    Making custom data check for field

    code for message box is as below msgbox("Enter your message here")
  13. khawar

    Help needed "SQL Insert into..."

    Try this "Insert into tblCountryState values (" & Country.Value & ", " & strValue & ")"
  14. khawar

    Making custom data check for field

    use before update event of form and check there whether the value is provided for the field or not
  15. khawar

    Username Variable

    you can use mytext1=myuserid on some event of form
  16. khawar

    Design Question, location change

    I think you have been told the solution already You have to use main table for patient information and child table for locations enter date transferred to and transferred from room for each record except for the last location where transferred from will be null from which you can show the...
  17. khawar

    Default Value In a field

    Check the attached file
  18. khawar

    Capital Letters In Tables

    On the after update event of text box enter this txt1=ucase(txt1) replace txt1 with your text field name
  19. khawar

    Default Value In a field

    You can set this in the default value property of control
  20. khawar

    date input mask

    You can use United Kingdom
Back
Top Bottom