Search results

  1. K

    Auto refresh

    thanks i got it
  2. K

    Auto refresh

    How can i refresh my form automatically based on the time i select in my combo box thanks
  3. K

    How to create a custom based search form?

    try and edit this you should get what you want Private Sub cmdSearch_Click() Dim strStudentRef As String Dim strSearch As String 'Check txtSearch for Null value or Nill Entry first. If IsNull(Me![txtSearch]) Or (Me![txtSearch]) = "" Then MsgBox "Please enter a value!"...
  4. K

    blinking text colour

    i used this code to blink the colour of my label but its not working please can somebody show me where i'm wrong Private Sub Form_Timer() With Me!label1 .ForeColor = IIf(.ForeColor) = vbblack, vbblue, vbred) End With End Sub
  5. K

    blinking text colour

    thanks i'll do just that
  6. K

    blinking text colour

    how do i catch my user's attention by making the colour of my text alternate/change from one colour to the other continously. thanks
  7. K

    adjusting screen resolution automatically

    so how much does this tool cost? or i do i get it?
  8. K

    adjusting screen resolution automatically

    think i get that, no point chasing shadows when you can easily get the real being.. thanks bro
  9. K

    adjusting screen resolution automatically

    then teach me how to write it please
  10. K

    adjusting screen resolution automatically

    but how can i do it with codes
  11. K

    adjusting screen resolution automatically

    yeah thanks for that.
  12. K

    adjusting screen resolution automatically

    i designed my application with a wide screened laptop but if i run it on a desktop with a small screen some part of it always cut off. please how can i make my application adjust to any screen size and resolution automatically any help will do thanks
  13. K

    sorting table randomly

    I’m having problems with writing codes for this: I have this object 1st 2nd 3rd 1-10% 5 8 8 11-20% 6 9 9 21-30% 7 2 10 The issue here is that: I have 3 people 1) If either of the 3 people scores between...
  14. K

    date format

    yeah thanks bro exactly what i wanted..
  15. K

    date format

    thanks that helps a lot
  16. K

    date format

    thanks for that, but even after formating that way dates like 6/7/2010 would read 7/6/2010 and when user query a report they dont seem to get what they want.
  17. K

    date format

    please i want my date to read dd/mmm/yyyy so that users can enter their date into access in that format and retrieve it in that format too without access changing it into mmm/dd/yyyy i need help cause its frustrating thanks
  18. K

    Please Help me with Check Box issues

    even with this THEQUERY2 = "delete from [NEW PAYMENTS] WHERE [TAG] = -1" the query still executes. it is the check box that i cant seem to get to do what i want i.e when i check it the code should do this THEQUERY = "INSERT INTO [NEW PAYMENTS3] SELECT * FROM [NEW PAYMENTS] WHERE TAG = -1" but...
  19. K

    Please Help me with Check Box issues

    it was a mistake i admit that.
  20. K

    Please Help me with Check Box issues

    thanks for that it actually dis some work, but not as i want 1) if you check one it might say you are appending 2 or 0 records 2) if you check two it might say you are appending 1 record etc. so its not actually following the check option thanks for your help
Back
Top Bottom