Search results

  1. S

    REPORT TO EXCEL FORMAT

    Dear Sir/Madam, I have a report to transfer in excel format, but the heading of the report is not taken, is there any method to get the title of the report in the 1st rown of excel sheet. MY VBA CODE is Private Sub CMDFB_Click() Dim strReportName As String Dim strPathUser As String Dim...
  2. S

    Text Box

    Is it possible to put text in a text box in two three diiferent line/coloumn with same allignment
  3. S

    Can we fetch attachemnt from one table to another through query

    I wan to fetch the Pic of an attcahment to another table, is it possible
  4. S

    How can I delete Duplicate Records from a table

    Hello Sir/Madam Please help me to deleting duplicate records records from a Table I tried but it deletes all the recordes with the key, i am trying.
  5. S

    Finding missing No

    I want to find all the missing IDs in a table starting from 1 to the end of the Table. How can i do that and display the missing IDs IDs are Primary and serially numbered. however one missed the seriality in entering.
  6. S

    Change of a Text Box Color:-

    Hi Sir's Is there any method where a Text Box color can be changed. I.e if Present then BLUE and if Absent then RED
  7. S

    Solved FINDING A RECORD FROM UNBOUND TEXT BOX

    Hello Sir's I have a forn bounded by a Table Master_tbl in which one of the Field in AC_NO i want to find a record from aunbound text box (FINDAC) and the code after event i pu is appended below: but the same is not working Dim rs As DAO.Recordset If Not IsNull(Me![FINDAC]) Then Set rs =...
  8. S

    Pls help me with the VBA code to refresh all Linked tables in DB

    Hi Sir, How to refresh all tables.
  9. S

    What is wrong in the Code

    Cnt = DCount("Mob", "QOCCUPATION", "DepartureDate = Me!sfrRoomOccupations.Form!DepartureDate")
  10. S

    sending PDF in watsup:

    Can any one help me with the vba code ,if any to send PDF file through watsup, and what are the requirements.
  11. S

    GENERATION OF REPORT

    Is it possible to generate a report, in which first all address will be shown and then the all Name and other details from a single table for exampel it should be like this To add1 add 2 add3 ad4 The details are as follws 1. mr david, team leader 2. mr Robin, head reader etc etc
  12. S

    Solved Is it possible to fetch a pic of signature in a report. And can be changed through a table/query or any other means.

    Actually I want tp print a report under the signature of some officials. But if the officer get transfered to other section of duty, other officer will take charge.
  13. S

    Solved Please rectify me

    Code is Cnt = Nz(DCount("*", "[INDIVIDUAL_DATA]", "[TXTGROUP] = GROUP_PRACTICAL And [TXTCODE] = COURSE_CODE")) both GROUP_PRACTICAL and COURSE_CODE are text field
  14. S

    Solved Deleting blank space

    Is it possible to delete blank space in a Text Box. For example, I am fetching data using Dlookup Function LC = Nz(DLookup("OFFICE", "OFFICE_CODE", "OF_CODE = 1 AND CHK=TRUE")) MC = Nz(DLookup("OFFICE", "OFFICE_CODE", "OF_CODE = 2 AND CHK=TRUE")) NC = Nz(DLookup("OFFICE", "OFFICE_CODE"...
  15. S

    Solved How to Extract and append in another table

    Hi Sir I habe a table MASTER in which four fields are there Course_Code, Ind_ID, Date_from and Date_To: I want to run a query to append the recorde in table SESSION in which four field s are there: Course Code, Ind_ID and DOT (Date of Training) How can I append recorde for each day of training...
  16. S

    Solved UPDATE QUERY

    I want to update all records in a tbl of a numeric field AC_NO with AC_NO preceeded by 9 for example if Account No is 8337453 it should be updated to 98337453. What will be the vba code for query
  17. S

    Solved Dcoount

    I want to count the no of records in QPENSIONER_NEW TBL WHERE YR IS YEAR AND MN IN NAME OF MONTH BUT I AM GETTING ERROR Me.TXTCASE.value = DCount("REC_ID", "QPENSIONER_NEW", "YR = Forms!SERVICE_FORM!CYEAR " And MN = Forms!SERVICE_FORM!CMONTH)
  18. S

    UPDATE QUERY

    My qudate query is not running showing error : key violation. Although when i tries to run the query directly is doesnot show any error and it is updating the records. But when i am trying to run it from the form, due to LOCK violation table not updated. my SQL is UPDATE MEMBERS SET...
  19. S

    Records Not getting updated

    Hi Sir/Madam I am usimg the forlloing SQL, but the records are not updating. UPDATE MEMBERS SET MEMBERS.EL = [EL]+(DateDiff("d",[FORMS]![EMPLOYEE_LEAVE_MASTER]![TXTFROM],[FORMS]![EMPLOYEE_LEAVE_MASTER]![TXTTO])+1) WHERE ((([FORMS]![EMPLOYEE_LEAVE_MASTER]![TXLV])="EL") AND...
  20. S

    Solved To Check if the data is alreday there?

    Hello Sir/Madam Is there any method to check if the same value is already taken in the Data base. I mean suppose a person have taken leave from 12-09-23 to 25-09-23. (two Date fields). If some body tries to enter the value for leave from 13-09-23 to 14-09-23 for the same person, it should flash...
Back
Top Bottom