Print a doc which was inserted in BLOB field

tompynation
Member Posts: 398
How can we print the *.doc files which are imported into BLOB fields?
0
Answers
-
If it's only word documents, then i'd save the BLOB to a temporary file, and use automation to open and print it.0
-
Hi,
From Toolbox use Picture box
In Picture box properties--> Source expression--> enter:Picture
Example: Item.Picture0 -
i cant get it to work...
the lv_CommentLine.Attachment is my BLOB field but whenever it reaches the EXPORT method
i receive the error that i cannot export an empty blob file?
lv_CommentLine.RESET;
lv_CommentLine.SETRANGE("Table Name",lv_CommentLine."Table Name"::Item);
lv_CommentLine.SETRANGE("No.",lv_PackingLine."No.");
lv_CommentLine.SETRANGE(Type,lv_CommentLine.Type::MSDS);
lv_CommentLine.SETFILTER("Document Name",'<>%1','');
IF lv_CommentLine.FINDSET THEN BEGIN
lv_TremRoute.SETCURRENTKEY("Customer No.",Language);
REPEAT
IF lv_TremRoute.GET(lv_PackingHeader."Sell-to Customer No.",lv_CommentLine.Language) THEN BEGIN
lv_FileName := lv_CommentLine.Attachment.EXPORT;
PrintFile(lv_FileName);
END;
UNTIL lv_CommentLine.NEXT = 0;
END;0 -
You have to first do a CALCFIELDS on the BLOB field to see if it has value:
............ IF lv_TremRoute.GET(lv_PackingHeader."Sell-to Customer No.",lv_CommentLine.Language) THEN BEGIN lv_CommentLine.CALCFIELDS(Attachment); IF lv_CommentLine.Attachment.HASVALUE THEN lv_FileName := lv_CommentLine.Attachment.EXPORT; PrintFile(lv_FileName); END; ............
Regards//Bogdan0 -
ok thanks working fine now0
Categories
- All Categories
- 73 General
- 73 Announcements
- 66.6K Microsoft Dynamics NAV
- 18.7K NAV Three Tier
- 38.4K NAV/Navision Classic Client
- 3.6K Navision Attain
- 2.4K Navision Financials
- 116 Navision DOS
- 851 Navision e-Commerce
- 1K NAV Tips & Tricks
- 772 NAV Dutch speaking only
- 617 NAV Courses, Exams & Certification
- 2K Microsoft Dynamics-Other
- 1.5K Dynamics AX
- 320 Dynamics CRM
- 111 Dynamics GP
- 10 Dynamics SL
- 1.5K Other
- 990 SQL General
- 383 SQL Performance
- 34 SQL Tips & Tricks
- 35 Design Patterns (General & Best Practices)
- 1 Architectural Patterns
- 10 Design Patterns
- 5 Implementation Patterns
- 53 3rd Party Products, Services & Events
- 1.6K General
- 1.1K General Chat
- 1.6K Website
- 83 Testing
- 1.2K Download section
- 23 How Tos section
- 252 Feedback
- 12 NAV TechDays 2013 Sessions
- 13 NAV TechDays 2012 Sessions