Search results

  1. JPaulo

    suddenly combo autofill not is working ?

    Hi; In the properties of the combo box set Autoexpand = Yes
  2. JPaulo

    Can i do the conditional format in subform with Query?

    Hi, one simple example; http://dl.dropbox.com/u/771097/teste.mdb
  3. JPaulo

    Happy Christmas

    Happy Holidays for all
  4. JPaulo

    Show and not print

    Resolved; I created a form equal to the report which put the textbox.displaywhen = 2 and works perfect. (Access 2003) Thanks to all who helped
  5. JPaulo

    How do I display a name for a form that is not its real name?

    Private Sub Form_Open(Cancel As Integer) Me.TimerInterval = 1000 End Sub Private Sub Form_Timer() Me.Caption = " Hello - " & Format$(Now(), "DDDD, d MMMM, yyyy h:nn:ss") End Sub
  6. JPaulo

    Show and not print

    Thanks anyway friend
  7. JPaulo

    Show and not print

    thank you for idea, I will examine how.
  8. JPaulo

    Show and not print

    Someone please, just what is needed to finalize...
  9. JPaulo

    Show and not print

    thanks but still does not work for report. Microsoft: In many cases, certain controls are useful only in Form view. To prevent Microsoft Access from printing these controls, you can set their DisplayWhen property to Screen Only. For example, you might have a command button or instructions on a...
  10. JPaulo

    Show and not print

    Hi; which the tab in the properties of texbox, I do not see this option ?
  11. JPaulo

    Show and not print

    Hi all; I want to see the data from a text box in the report, but do not want to print. Private Sub Report_Page () TextBox.Visible = False End Sub works for first page, for the following does not work. ms access 2003 suggestions please ?
  12. JPaulo

    A query that shows records from now until the end of the month...

    hi man, remove the space: Next Month: Between DateSerial(Year(DateAdd("m",1,Date())),Month(DateA dd("m",1,Date())),1) And DateSerial(Year(DateAdd("m",1,Date())),Month(DateA dd("m",1,Date()))+1,0) Next 2 Months: Between DateSerial(Year(DateAdd("m",2,Date())),Month(DateA dd("m",2,Date())),1)...
  13. JPaulo

    Frames

    try; Private Sub Form_Current() Me.Frame3.TextBox1.Value = Date ' for example End Sub
  14. JPaulo

    spaces in table names and fields

    Many thanks for your feed back.
  15. JPaulo

    Combo or List Box Error

    use Compact/Repair in tools to resolve.
  16. JPaulo

    spaces in table names and fields

    use DLookup to check If Me.[1st Date Issued].Value = DLookup("[1st Date Issued]", "[table A]", "ID = " & Me.ID) < DateSerial(Year(Date), Month(Date), Day(Date) - 14) Then
  17. JPaulo

    spaces in table names and fields

    Or: Private Sub Ctl1st_Date_Issued_AfterUpdate() If Me.[1st Date Issued].Value < DateSerial(Year(Date), Month(Date), Day(Date) - 14) Then MsgBox ("OnEnter :- Date is before 14 days ago") DoCmd.CancelEvent Me.Undo Else Exit Sub End If End Sub
  18. JPaulo

    spaces in table names and fields

    try: Private Sub Ctl1st_Date_Issued_AfterUpdate() If Me.[1st Date Issued].Value < Date - 14 Then MsgBox ("OnEnter :- Date is before 14 days ago") DoCmd.CancelEvent Me.Undo Else Exit Sub End If End Sub
  19. JPaulo

    linking combo box problem

    Hi campo88, see this example; http://dl.dropbox.com/u/771097/CombosExpandem_II.mdb
  20. JPaulo

    Change font color on ALL form controls on "Got Focus" and "Lost Focus"

    Re: Change font color on ALL form controls on "Got Focus" and "Lost Focus" ChrisO, brilliant example, congratulations.
Back
Top Bottom