Recent content by camiramzi

  1. C

    Solved i want to change this code to merge two excel files to one sheet side by side.

    this vba code combines multiple excel files into one spreadsheet how can i change it so it's merging files horizontally next to each other this is the code Sub simpleXlsMerger() Dim bookList As Workbook, bFirst As Boolean, ws As Worksheet, wsO As Worksheet Dim mergeObj As Object...
  2. C

    How do i remove quotations in text file export.

    i found this answer in quora When i remove the commas inside the paragraphs the quotation disappear in the export text
  3. C

    How do i remove quotations in text file export.

    i don't understand what do you mean by exporting the text file to another db.
  4. C

    How do i remove quotations in text file export.

    I get the same problem in CSV , is there a VBA code to prevent quotation from appearing in the beginning of every paragraph.
  5. C

    How do i remove quotations in text file export.

    Hi i'm using this vba code to convert excel sheets to txt file Sub ExportSheetsToText() Dim xWs As Worksheet Dim xTextFile As String For Each xWs In Application.ActiveWorkbook.Worksheets xWs.Copy xTextFile = CurDir...
  6. C

    how can i export filenames of my files in ftp server as a list in excel or text file

    Doesn't work unfortunately i most forgot to add a reference or something thank you
  7. C

    how can i export filenames of my files in ftp server as a list in excel or text file

    please bare with me i'm a complete beginner this is what i did i created a module name it modFTP then i copy paste the first code then i created a class named it FTPlist and put the second (Function for getting the list..) code and the last one (the actual code for obtaining the list of...
  8. C

    how can i export filenames of my files in ftp server as a list in excel or text file

    yes but i didn't know how to implement it in access , i didn't understand what is the Main Windows API declarations for wininet.dll
  9. C

    how can i export filenames of my files in ftp server as a list in excel or text file

    i tried the answer in stackoverflow here but i get path not found error in Set baseFolder = fso.GetFolder(localRoot)
  10. C

    how can i export filenames of my files in ftp server as a list in excel or text file

    Hi as the title suggests i have an ftp server with pdfs inside, i want to retrieve the filenames of all the family tree inside the server and export as an excel sheet or txt file.
  11. C

    trying to scan from phone camera

    i'm asking is it possible to take a snapshot from phone camera and images will automatically imported to access this is the function that scans from the feeder. Public Function feederscan() 'Must include reference to Microsoft Windows Image Acquisition 2.0 dll On Error GoTo Handle_Err Dim...
  12. C

    trying to scan from phone camera

    Hi i use this app to scan and export to pdf from a scanner device but i want to scan with my phone this is my code for the feeder scan With wiaScanner.Items(1) wiaScanner.Properties("3088").Value = 1 .Properties("6146").Value = DLookup("[Colour]", "DPI") 'Colour intent (1 for...
Top Bottom