Search results

  1. B

    calculate period between 2 Times

    thank you i find the reply Private Sub Clock_Out_AfterUpdate() Dim X, Y, Z As Long X = DateDiff("n", Clock_In, Clock_Out) X = X / 60 Z = Int(X) Y = (X - Z) * 60 Period = Z & ":" & Y End Sub i calculate the minuts first and then i convert it to number
  2. B

    calculate period between 2 Times

    the data type of (clockin and clockout fields) are time not number
  3. B

    calculate period between 2 Times

    Hi every body i create form to calculate the difference between clock-in time and clock-out time, what is the code to do that i have 2 fields the field 1 name clockin field 2 name clockout i have a text box to display result equal the period between time1 and time 2 thanks
  4. B

    Affiliate Program

    Hello every body i would like an affiliate program designed buy MS access
  5. B

    Hello Everybody

    Dears, this is Musab, Sudanese nationality Arabic is my native language i work in Saudi Arabia i always recommend MS access for every employer i work with i love it flexibility very much thank you very much my contact info : aldambo@gmail.com musab@mashaelcorp.com TEl : +966-11-474-0060 Ext...
  6. B

    Navigation Buttons size control

    Sorry i paste the help code by mistake this is the code i put : this is the error : A macro set to one of the current fields properties faild because of an error in a findRecord action argument
  7. B

    Navigation Buttons size control

    i put insteed of this, the exepression : "ID =" & Me.ID
  8. B

    Navigation Buttons size control

    yes it is simple when i'm going to create next,previous,find next but i need the functionality of search button located on the bottom right of navigation button, when you type a char it will search whole fields and match any part in a very high response , it work on text change i try this code...
  9. B

    Navigation Buttons size control

    Hi every body the default navigation buttons on access form is greatest and it has an effective search record field , but there is a bit of problem that is the size of navigation buttons is too small , is there any way to control its size ?? if no !! is there any code to make it as event on...
  10. B

    RFID reader interface

    Hi every body, i have RFID reader (Motorola MC9190-Z ) i would like to send information from reader to MS access 2013 table i have table contain tag number, item name, color, size, Brand and details i need all this information to be inserted on my form or table how it will be is there any...
  11. B

    Filter to match any part of creteria

    it is give me a null value even if i enter a full chars
  12. B

    Filter to match any part of creteria

    Hi guys, i have a text box ( Supplier_Name) on the main form i would like to filter subform by any part of entered charactor on the feild (suplier_Name) here is my code : Private Sub Find_Click() If Not IsNull(Supplier_Name) Then Me.Suppliers_Details.Form.Filter =...
  13. B

    Decimal places

    HI every body i would like to gather the first number of decimal places for example if i ha ve these numbers x = 2.356 & y = 2.6243 i want to be: x = 3 & y = 6 which function may i use
  14. B

    litle confuse with msoFileDialogFilePicker

    i have a code for browsing to determine location and the code work with no Error but the problem is that : for example when i choose D:\bee55\my folder , the text appear in Textbox1 is D:\bee55 only my folder not included on the text box. what shall i do with great thanks Private Sub...
  15. B

    Function to open tables

    i try the following code :- Option Compare Database Public FoodStuff As DAO.Database Public RsFood As DAO.Recordset Public Function Open_Table(Table_Name As String) Set FoodStuff = CurrentDb Set RsFood = FoodStuff.OpenRecordset(Table_Name) RsFood.MoveFirst End Function Public Function...
  16. B

    Function to open tables

    SO my question wasn't clear i mean, my solution has more than 10 forms, on each form i open more recordset so i need a function to be decleared as public like for example:- Function Connect_Table(Table_Name as string) connection = d:\database1.mdb End Function means i need a common...
  17. B

    Remove VBA Code Password

    i have a solution and my VBA was password protected I,m trying to modify the code but i can't remember password is there any way to breake it or remove any answer and reply will be highly appriciated thank you very much
  18. B

    Function to open tables

    Hi every body, i have three table in my project , on each form in my project i open three tables either to edit or add i open these tables an close them too much times on my code i use the following code Dim FoodStuff As DAO.Database Dim RsFood As DAO.Recordset Set FoodStuff =...
  19. B

    look for a file in all drives

    that is what I'm looking for i need a button to open FileDialoge and the value of FileDialoge to be used as the path for my excell file what is the appropiate code and action to do that Great thanks,,
  20. B

    look for a file in all drives

    it seem as it is not clear my question is : how to look for a missed file on other drivers and all its folder and their subfolders your reply will be highly appriciated
Back
Top Bottom