Guest User

Untitled

a guest
Jan 19th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. {
  2. "status": "Success",
  3. "label": "pdf base64 content here",
  4. "order": "ABC123456"
  5. }
  6.  
  7. FileData = pdf_base64_string
  8. fileNum = FreeFile
  9. FilePath = "C:label.pdf"
  10. Open FilePath For Binary Access Write As #fileNum
  11. Put #fileNum, 1, FileData
  12. Close #fileNum
Add Comment
Please, Sign In to add comment