Search results

  1. khawar

    Report with dlookup using criteria from group field

    You can add extra fields in crosstab queries
  2. khawar

    Help with Input Box

    Try this Private Sub Command4_Click() DoCmd.TransferText acExportFixed, "VDU", "qryVDU", "C:\FHM\VDU.txt", No DoCmd.CancelEvent Dim strFilename As String strFilename = InputBox("Enter VDU File Name:", "FHM") If len(strfilename)>0 then strFilename = "C:\FHM\" & strFilename Dim...
  3. khawar

    Code Issue for Form Validation

    What is the description of error
  4. khawar

    Report shows all possible values

    It adopted the control of data source you have to change it manually if there are combo boxes or list boxes in data source
  5. khawar

    Continus Form Button to update records

    You can use same criteria in update query which you are using to get records for form
  6. khawar

    Continus Form Button to update records

    You can use update query to update data in table
  7. khawar

    Combo/Toggle Box

    You can make it yourself creat a text box then creat 2 button and add picture to them instead of text on click of button you can change the value in text box
  8. khawar

    Report shows all possible values

    what control you are using in report for showing venue field and what version of access you are using
  9. khawar

    2 Tables struggle to join in query

    Add all three tables in the query grid creat proper joins and select the fields you want in the query
  10. khawar

    Crosstab Query Question

    Can you tell some detail about table and data on which you want to make query
  11. khawar

    Help with Staff DB and Team Tracking pls

    Try following Sql SELECT Team.TeamName, Activity.ActivityName, StaffActivity.ActivityHours, StaffActivity.ActivityDate FROM Team INNER JOIN ((Staff INNER JOIN (Activity INNER JOIN StaffActivity ON Activity.ActivityId = StaffActivity.ActivityId) ON Staff.StaffId = StaffActivity.StaffId)...
  12. khawar

    Text box not showing text

    Instead of writing code in control source of text box use some vba event to populate text box (such as form open event) like me.textbox1=DCount("[UID]","[qTesting]","[Test Subject]='Numeracy' And [Test Level]='Entry Level' and [Passed]=Yes") me.textbox2= ....... and so on
  13. khawar

    prevent navigate to the next record

    Open the form properties while you are in design view and there you can find this property
  14. khawar

    report print problem...need help ...its urgent

    you can use force new page property
  15. khawar

    prevent navigate to the next record

    Instead of using the code just go to form properties and set its "Cycle" property to current record.
  16. khawar

    cmdButton to open form to enter related data

    Does some relation exist between two tables
  17. khawar

    cmdButton to open form to enter related data

    try form wizard and in the sub form use linked pop up form that will automatically do the coding for you
  18. khawar

    Getting report to show texts together based on fields on Form: Txt formatting issue

    You can make a string at opening of report For example Dim StrFooter as string if Forms!MasterTable.TriageOptionsSmoking = "Yes" Then strfooter="-Patient needs to stop smoking." end if if Forms!MasterTable.TriageOptionsSomething = "Yes" Then strfooter=StrFooter & vbcrlf & "-Some More...
  19. khawar

    Form as MsgBox

    Have a look at my custom message box sample Here
  20. khawar

    Incorrect results from Query

    what criterea are you using
Back
Top Bottom