Search results

  1. L

    How to convert jpg/png files and .txt files to PDF

    I need to convert .jpg/.png/.txt files to PDF files. Any pointers on this?
  2. L

    Saving Excel as PDF

    Here is the code snippet for saving Excel to pDF Dim wb as Object = GetWorkbook(Handle,Workbookname) Dim excel as Object = wb.Application wb.ExportAsFixedFormat (Type:=0, Filename:=PDFPath, Quality:=0, IncludeDocProperties:=True, IgnorePrintAreas:=False, OpenAfterPublish:=False) wb = Nothing
  3. L

    How to save .msg (Outlook mail) as an PDF

    Hi , I have a requirement where i need to save .msg(outlook emails) as PDF file. Any pointers on this ?
  4. L

    RPC server exception

    Getting following error The RPC server is unavailable. (Exception from HRESULT: 0x800706BA) in BP very randomly, any ideas on how to resolve this?
  5. L

    How to click on a new tab ,work on it and come back to original tab?

    How to click on a new tab ,work on it and come back to original tab? How to clear a text box?
  6. L

    Questions on BP

    1.How to clear browser cache. 2.How to enter a value in a text and click enter in the same text box.
  7. L

    How to update a excel file with out using write collection.

    I'm loading queue with cases from excel , wanted to update the excel column whether I got a exception on the case or not. Excel-->getting collection-->loading into queue-->working on the case-->how should I write back to excel, I know we got WriteCollection , is there any way I could update...
  8. L

    How to design a process

    I have couple of excel files in shared folder, in each excel file there are couple of cases and I have to process case by case.How I have to design the process, should I have to use queue's or any other best practices any suggestions are welcome on this.
Top