Search results

  1. HAMMAMABUARQOUB

    Combobox Dropdown Type

    Use the dropdown method in any procedure, for example,, if you wan to dropdown the list on mouse moves on the Combo,,, Private Sub Combo1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single) Combo1.DropDown End Sub use the X and Y coordinates in a click command to decide...
  2. HAMMAMABUARQOUB

    automatically add fields to a table?

    i suggest you to create a table with refence to day number not employees, coz in this case an employess whp didn;t come to work that day would normally have no logs in the log table, i mean by that to let the work table be as a logfile.., example.. Employee(ID, Name, Salary , Rank...etc)...
  3. HAMMAMABUARQOUB

    Shutdown rEstart and logoff from a form

    this example in case you didn't even open and saw uses one simple line of code for each case of shutdown, restart or logoff rather than a coplete API function,, thanks for notes
  4. HAMMAMABUARQOUB

    Fill Data automaticly using a Timer()

    its very simlpe,,, just need to tell you! in case anyone saw this sentence in the first place,,,all i mean it can be used as tracking realtime entries or changes as automatic log or change history in this particuler table or the other tables..in the comming days i wil post the idea of creating...
  5. HAMMAMABUARQOUB

    More smiles

    this would be disgusting...yet impoilte,, in a programmers community!
  6. HAMMAMABUARQOUB

    Difference in Hours/Minutes between 2 records

    if the EVALID is unique,, use datediff along with Dlast how: DateDiff(Dlast(cond EvalID1) and Dlast(condEvalID2) i didn't try! but i think once something like that really worked nice!
  7. HAMMAMABUARQOUB

    Fill Data automaticly using a Timer()

    Idea for Filling Data automaticly using a Timer() Again,, back with a new tip for developers.. specially who use timers and automation ... and you will learn below that it can be used for monitoring and security... this is the code: Private Sub Form_Timer() Me.s.Caption = Second(Time())...
  8. HAMMAMABUARQOUB

    Removing the list of recent opened files using code

    Simply when the startup for loads,, put this code,, you will no more see the last 4 opened fiels...recent...i e... makes the list invisibel... this i use to prevent a user from opening the files while using my file or in a database secured by the user-level securtiy wizard,,, i put this here for...
  9. HAMMAMABUARQOUB

    Splash screen

    Hello to evry one ... I think most people specially programmers and developers already know about this tip,,, but here I am submitting this,,, create a new bmp pic.. anything you want other than this default splash access screen just: put it in the same folder of you database... name it just...
  10. HAMMAMABUARQOUB

    Using the validation rule based on a value of a filed in the same table!

    soory but maybe i edited that reply simple secods b4 ur last reply., again thats for valuable contribution! HAMMAM
  11. HAMMAMABUARQOUB

    Using the validation rule based on a value of a filed in the same table!

    i did it in the table props and it worked! that's great.. but for finishing this thing i say i used it in a different way in forms! that's all...... right you are
  12. HAMMAMABUARQOUB

    Using the validation rule based on a value of a filed in the same table!

    that was not acceptable by office 2000 upto office 2007 ,, i just tried!! all what i am sayin is that you can use this validation rule in forms rather than tables,, as i know,, and just tried! Access refuses to save the table design! but you are right about the table properities thing...
  13. HAMMAMABUARQOUB

    Using the validation rule based on a value of a filed in the same table!

    What??? what is that,,, yass you can... Creat a table... for ex 3 colms... id, name, Maxallowed, input remember when we want to use the validation rule prop in the table,, it wont allow us to refere to another filed in the same table,, but in forms it can be done with the secret magic of the...
  14. HAMMAMABUARQOUB

    Dynamic form: inventory system

    Heloo,,, nice and important question... as i understood.. and with experince in creating inventory systems using Access over 5 years,, i can say..Northwind DB supplied with ms access can be the right and yet the easiest way to start learning everything about access, you can also use the assets...
  15. HAMMAMABUARQOUB

    Shutdown rEstart and logoff from a form

    Shutdown restart and logoff from a form HELLO EVRYBODY as the title says just see the code first, it's very simple, using the shell of shutdown command,,,, HAMMAM ABUARQOUB FROM PALESTINE
Back
Top Bottom