We have LINQPad which is great for testing Linq expressions targeting database.
Can any one recommend "free ware" tool, that could help us convert
"Sql Queries" to LINQ expressions
and why you recommend it?
NOTE: Please keep in mind, we use c#.
How can I convert My LINQ to SQL ?
i have this LINQ statement:
int LimCol = Convert.ToInt32(LimitColis);
result = oListTUP
.GroupBy(x => new { x.Item1, x.Item2, x.Item3, x.Item4, x.Item5 })
.Select(g => new
{
Key = g.Key,
Sum = g.Sum(x => x.Item6),
…
I use Mac OS X Snow Leopard. I have a PDF with form fields, annotations, and stamps on it. I would like to freeze (or "flatten") that PDF so that the form fields can't be changed and the annotations/stamps are no longer editable. Since I actually have many of these PDFs, I want to do this automatically on the command line.
Some things I've…
I am using TCPDF to generate PDF file using following command
$pdf-writeHTML($htmlcontent, true, 0, true, 0);
TCPDF also provides a way to create barcode with following commands
$pdf-Cell(0, 0, 'C39+', 0, 1);
$pdf-write1DBarcode('Code 39', 'C39+', '', '', 80, 15, 0.4, $style, 'N');
$pdf-Ln();
I want to be able to write barcode as part of the…
I have a odt(or pdf, or ps) file. [Really I have odt, but I can easily convert it], it consist of 1 page.
No I want to print it to another pdf 4 times to 1 page. There is an option pages per side, so If I copy-paste 4 times my document and set this option to 4 I'll have my expected result.
But I want to do it without copy-paste because it's…
I typically have two needs:
Scenario A. Change a single PDF page.
In this case I have a PDF but not the original source file used to create the PDF. I don't want to try to recreate the document from scratch. I'd like to open the PDF and change a few things. A good example of this scenario: I was responsible for planning a big event at a…
Hi guys,
I was given the task of adding some usability to one of our applications, ie. make sure that every controll has a shortcut key, and that they can be reached by "tabbing" through the page.
The gui runs in a IE. control on a winform, and consists of asp.net pages, so basically it is just asp.net always running in internet…
I'm trying to convert the first page of a PDF to a JPG. I'm pretty sure I got this to work with certain PDFs, but is it really possible that certain PDFs are made incorrectly and cannot be converted?
I tried running this first:
$ convert 10-03-26.pdf[1] test.jpg
And I got the follow:
Error: /syntaxerror in readxref
Operand…
Does anyone know if the following is possible and if so what the best way of doing it is for free?
I am generating a PrintDocument in a project I am currently working on and displaying a print dialog box so a user can choose which printer they want to use etc. The is currently a windows form application and if a user wants to…
I am using ITextSharp to generate pdf on the fly and then saving it to disk and display it using Frame.
The Frame has an attribute called src where I pass the generated file name.
This all is working fine what I want to achieve is passing the generated pdf file to Frame without saving it to disk.
HtmlToPdfBuilder builder =…
Hi all,
I'm writing a Python+Qt4 application that would ideally need to pop up a window every once in a while, to display pdf documents and allow very basic operations, namely scrolling through the different pages and printing the document.
I've found the reportLab to create pdf files, but nothing about pdf viewers. Does…
I use liferay 5.2 with jsf-portlet.
From the page I want to press a button to generate one PDF.
In managedbean i build pdf and I want to show it in response.
In a ByteArrayOutputStream named outputStream i have my pdf built with JasperReport.
I write:
PortletResponse portletResponse =…
I am creating a pdf document using C# code in my process. I need to protect the docuemnt
with some standard password like "123456" or some account number. I need to do this without
any reference dlls like pdf writer.
I am generating the PDF file using SQL Reporting services reports.
Is…
Hey everyone,
I have CSS and HTML that I will be converting into PDF. I want to specify a header on each page that, in the PDF, will repeat on each new page.
I know that I can use THEAD to specify the header, however, is there a free html-to-pdf converter that will respect the THEAD tag?…
My Query
I want to extract only images from a PDF document, using Objective-C in an iPhone Application.
My Efforts
I have gone through the info on this link, which has details regarding different operators on PDF documents.
I also studied this document from Apple about PDF parsing with…
I'm in need of generating and viewing PDF/X-1a. After spending quite some time I came to the conclusion that the only way (hopefully someone will prove me wrong) to achieve this is to use Cocoa.
More context: I need to generate PDF/X-1a, that is, all the fonts embeded, spot colors,…
Hi
Does anybody know of a product that allows loading and editing of PDF files into Delphi? We need to break apart a pdf document with multiple images (one per page) into single pdf's.
Regards, Pieter
Hi,
I am working on C#.Net windows application. Here i create report using Infragistics.Documents.Report and export to .pdf & .xps format. Here i want to bringthose 2 files(.pdf & .xps) into WinForms and display. How to bring saved .pdf & .xps file into win forms.
…
Can anyone help with extracting text from a page in a pdf?
<?php
$pdf = Zend_Pdf::load('example.pdf');
$page = $pdf->page[0];
I would assume a page method would exist but I could not find anything to let me extract the contents.
Example: $page-getContents();…
I'm developing a simple GAE application that crawl some data from a given site and present it formatted in html\css.
What i would like to do now is to offer the "Export to PDF feature" trasforming the formatted html\css to PDF.
I've imported Reportlab Toolkit and it…
I'd like to print PDF file(s) on windows' network printer via GhostScript.
(I dont want to use Adobe Reader)
I've read gswin32c.exe which can do the job.
I experimented with many commands and coudn't find the way how to force gs to print PDF on my (windows…
I am extracting a pdf into images / swf and text with the help of SWFTools and XPDF.. I am running these in a PDF script.
But now I am trying to go one step further and try to get the TOC from the PDF is it possible to extract this information?
I have been tasked with evaluating our current system that we use for creating and outputing reports.
Currently we are using Crystal Reports ver 8, (I know that this is and old version.), which has a custom commandline app that we wrote in C# to execute the…