Search results

  1. arnelgp

    Moving objects on form

    just another option. this does not move the label but has fixed label and only change the color or hide the label. open form frmMapStatus.
  2. arnelgp

    Field to enter ONLY time.

    the format is: hh:nn:ss you can create a form (datasheet or anything) against that table and set the format of the Textbox on design view of your form.
  3. arnelgp

    Field to enter ONLY time.

    the field is Date/Time (so it is Date + Time). you can suppress the Date portion by Editing the table structure and adding hh:nn in the Format Property of the Date/Time field. but this is Only for display, the Date portion is still there.
  4. arnelgp

    Field to enter ONLY time.

    isn't it Dec-30-1899? since this CDate(0). and Format(CDate(0),"mm/dd/yyyy") = 12/30/1899 this is what CoPilot explains: In Microsoft Access, 01/01/1900 is often seen as a default or placeholder date—but it’s not the true "zero date" in Access. That honor actually goes to December 30, 1899...
  5. arnelgp

    Moving objects on form

    add an "anchoring point" in your map. you can add 50 invisible label controls on each States on your map. name them same as the State Abbrev they are in, eg: "lblWA". then you can just "move" your labels/checkbox to the "anchoring point" if checkbox WA (chkWA) is checked and want to move it...
  6. arnelgp

    Print Report based on lstbox rowsource

    how does the listbox get pupolated by the combo, show us the code.
  7. arnelgp

    Moving objects on form

    with those numbers, sad to say, it will soon, and you need to backup often.
  8. arnelgp

    Top of screen occupied

    the usual disclaimer applies that it is at your own risk..
  9. arnelgp

    good for you vhung, if you have level up your programming skills! good luck with your endeavors.

    good for you vhung, if you have level up your programming skills! good luck with your endeavors.
  10. arnelgp

    Solved DCount Date field for duplicates giving Error#

    i was guessing to do the DCount() on table tblShiftsMachinesRan? and add the EmployeeID on the Criteria: DupDateCount: DCount("1","tblShiftsMachinesRan","ShiftDate= #" & Format(tblShiftsMachinesRan.[ShiftDate],"mm/dd/yyyy") & "# And EmployeeID = " & tblShiftsMachinesRan.EmployeeID)
  11. arnelgp

    Queries stopped working, & the tool bars disappeared in MsAccess 2003

    as i remember, Nicole is the one who is trying to work on your db, you should ask her.
  12. arnelgp

    Solved Form Filter in VBA

    how did you saved the filter?
  13. arnelgp

    Help make commands to adjust texts in forms and reports

    it is. since it only add Space on each character and not really justify the text.
  14. arnelgp

    Report in unbound Form needs dynamic Recordsource and Filter

    that means to Re-open the report. you can remove the: subform.sourceobject="" to minimize the flicker.
  15. arnelgp

    Report in unbound Form needs dynamic Recordsource and Filter

    I tried it but it does not Refresh the report with the new "filter"
  16. arnelgp

    Report in unbound Form needs dynamic Recordsource and Filter

    I maybe wrong, but, you can't change Recordsource/Recordset of a Report once it is already Loaded. your best option is to use subform for your report and just mimic the design.
  17. arnelgp

    Help make commands to adjust texts in forms and reports

    You might be interested on making the 2-Column contract in MS Word. then use Mailmerge to put the Info to the word docs. Or add Bookmark to word doc and fill it up from Ms Access.
  18. arnelgp

    Microsoft’s “Premier” Mix-Up: A Tale of Access and Amnesia

    expect volumes of refugees flocking in..
  19. arnelgp

    Solved IsNull not working in query

    How about (Query1): SELECT [Master Data].* FROM [Master Data] WHERE (NOT ([MATERIAL SUPPLY DATE] IS NULL)) AND ([TPA DATE] IS NULL) AND ([DD_RECEIPTNO] IS NULL);
Back
Top Bottom