HI everyone,
Just looking for a website or pdf reference which has a color palette of the .NET (Visual Studio 2008) foreground colors? (E.g. like AliceBlue, AntiqueWhite, Cyan....)
Hi, I have an asp.net web app and I need to launch a pdf report that is developed in SSRS using SQL 2005. The SSRS report query has been created. How can I go about launching the report?
i want to create folders with the name of a pdf file for eg,abc.if it does not exists,i should create a folder with name abc_1...if abc_1 exists,i shud create abc_2.if both exxists,abc_3 and so on...the scripting is in python..can u help me??
Somehow I can't seem to get string replacement within a foreach loop in C# to work. My code is as follows :
foreach (string s in names)
{
s.Replace("pdf", "txt");
}
Am still quite new to LINQ so pardon me if this sounds amateurish ;)
I'm using a JTree to browse the content of a folder and I want that when a user click on a file, the software shows a preview of it (like in the Windows Explorer).
I manage to do it for PDF file using a module downloaded from Sun, but I'd like to know if there is a way to do it using the built-in Windows API.
What are good documents to read on SAT (Boolean satisfiability problem) solvers. I have not been able to find good material via Google. The documents I found were either birds eye view, too advanced or corrupted PDF files...
Which papers/documents do you recommend to learn about the algorithms in modern practical SAT solvers?
I want to print report as pdf format by using crystal report in asp.net mvc but i don't know flow how to create report and print report in asp.net mvc ,
any one could help me for tutorial using crystal report in asp.net mvc ?
I want to use selenium test to cover my rails project ! but i just find little documents on selenium test . I want someone to give me some documents for selenium test of all types !like website ,pdf ,text etc. you can sent them to my gmail [email protected] Thank you ,and best regards!
I`m having problems between two servers, wich use differente odbc dsn.
My apps work great but crystal reports uses the original odbc connection, how can I fix this?
I'm thinking of using the same connection string in the web.config, but I don't know how.
found this but is too confusing for me
this is an example of my code, its a aspx file that loads as a pdf
protected void Page_Load(object sender, EventArgs e)
{
try
{
var par = Request.QueryString;
int pidmun = 0;
if (!string.IsNullOrEmpty(Request["id"]))
{
pidmun = int.Parse(Request["id"]);
}
string pFechaIni = Request["fi"];
string pFechaFin = Request["ff"];
string pTipo = Request["t"];
string pNombreMunicipio = Request["nm"];
var pos = Request.Form;
if (string.IsNullOrEmpty(pFechaIni))
{
pFechaIni = "01/01/2010";
}
if (string.IsNullOrEmpty(pFechaFin))
{
pFechaFin = "01/01/2010";
}
if (string.IsNullOrEmpty(pTipo))
{
pTipo = "FOLIO";
}
if (string.IsNullOrEmpty(pNombreMunicipio))
{
pNombreMunicipio = "NombreMunicipio";
}
ReporteIngresos report = new ReporteIngresos();
TextObject nom;
TextObject periodo;
nom = (TextObject)report.ReportDefinition.ReportObjects["TxtNombreMunicipio"];
periodo = (TextObject)report.ReportDefinition.ReportObjects["TxtPeriodo"];
nom.Text = "Ingresos Municipio de " + pNombreMunicipio;
periodo.Text = "Periodo del " + pFechaIni + " al " + pFechaFin;
report.SetParameterValue("pidMun", pidmun);
report.SetParameterValue("pFechaIni", pFechaIni);
report.SetParameterValue("pFechaFin", pFechaFin);
report.SetParameterValue("pTipo", pTipo);
MemoryStream oStream;
oStream = (MemoryStream)report.ExportToStream(CrystalDecisions.Shared.ExportFormatType.PortableDocFormat);
Response.Clear();
Response.Buffer = true;
Response.AddHeader("CustomHeader", "ReporteIngresos");
Response.CacheControl = "No-cache";
Response.ContentType = "application/pdf";
Response.BinaryWrite(oStream.ToArray());
Response.End();
}
catch (Exception ex)
{
ExBi.log(ex);
throw ex;
}
}
thanks.
Hi Friends,
Is it possible to use more than one java bean datasource or JDBC datasource in jasper report to populate data in the pdf document.If possible can u please tell me how to do? I could not get any details in the internet, Regarding using more than one datasource in jasper report.
Is converting a file to a byte array the best way to save ANY file format to disk or database var binary column?
So if someone wants to save a .gif or .doc/.docx or .pdf file, can I just convert it to a bytearray UFT8 and save it to the db as a stream of bytes?
I have a small server problem when working with LAMPP and WAMP server in PHP.I am using LAMPP server for local development and I need to host in WAMP server.When try to read an image from a dynamic created pdf file in LAMPP, it is working perfectly but, the same one not compact able with WAMP server.What will be the problem?Any additional feature need to configure in WAMP.Please help me to go forward.Please........
I'm looking for a good tool for printing Invoices, Receipts and similar documents in Java Swing. I have tried JasperReports but it is pretty hard to get a dynamic layout and it is designing for reports.
A requirement that I have is that the document should be sent directly to the printer and must not be saved to a file. So some tools that first creates an Office Document or a PDF document isn't a solution for me.
Any recommendations?
Hello Friends,
Actually I am working on Pdf by using IReport Software. This software provided two detail section but i want this two detail section with Column Header .then say me how i changes it
reply me on [email protected]
We have an xml node "item" with an attribute "style", which is "Header1". This style can change however. We have an attribute set named Header1 which defines how this should look in a PDF, generated through xsl:fo.
This works (the use-attribute-sets is mentioned inline, in the fo:table-cell node):
<xsl:template match="item[@type='label']">
<fo:table-row>
<fo:table-cell xsl:use-attribute-sets="Header1">
<fo:block>
<fo:inline font-size="8pt" >
<xsl:value-of select="." />
</fo:inline>
</fo:block>
</fo:table-cell>
</fo:table-row>
</xsl:template>
But this doesn't (using xsl:attribute, because the attribute @style can also be Header2 for example). It doesn't generate an error, the PDF is created, but the attributes aren't applied.
<xsl:template match="item[@type='label']">
<fo:table-row>
<fo:table-cell>
<xsl:attribute name="xsl:use-attribute-sets">
<xsl:value-of select="@style" />
</xsl:attribute>
<fo:block>
<fo:inline font-size="8pt" >
<xsl:value-of select="." />
</fo:inline>
</fo:block>
</fo:table-cell>
</fo:table-row>
</xsl:template>
Does anyone know why? And how we could achieve this, preferably without long xsl:if or xsl:when stuff?
I'm using FOP to generate PDF reports.
The problem is I need the DIN-Regular font instead of the default Times New Roman.
Can anybody tall me how to change the font?
I'm using fop-0.94.boc.02 version. Thanks
It didn't always do this, but ever since I split my database and made the front-end an ACCDE file, any time I try to compact and repair either file, a new file called "Database 1" is generated and my original file size doesn't change.
Is this normal?
My ACCDB is roughly 20MB, and my ACCDE is just over 1M after being used the first time. Before opening, the ACCDE was only 600k (I have lots of forms and queries, and regularly store PDF attachments.
I am interested in Examine for building searching in a standalone desktop app for searching db tables as well as office/.pdf files
This looks like an excellent scenario for Lucene/examine
However the doc there is minimal and while i have plenty of experience with SQL full text search, Lucene is a different beast altogether and hence looking for help/pointers on how/where to start
And yes, i did a google search but did not find any resources as the terms are fairly common ( lucene examine tutorial etc. )
I had code on Download.aspx for downloading different type of file like doc, xls, pdf etc. I usually call the page to download a file. In one of my instance i am calling this from a java script code which works fine for http://loaclhost/tp/howwuworks/howwuworks.aspx but if i put ipaddress instead of localhost then its not working.
Hi, there.
I wish to made available a functionality that searches in all pages and content inside all the documents (word, excel, pdf, etc.) present in our SharePoint Server 2007 that all the users uploaded.
Anyone could tell me if this is possible?
Thanks in advance.
Regards.
Hi,
I have a StreamReader object that I initialized with a stream, now I want to save this stream to disk (the stream may be a gif or jpg or pdf etc).
SO my code so far is:
StreamReader sr = new StreamReader(myOtherObject.InputStream);
I need to save this to disk (I have the filename).
In the future I may want to store this to sqlserver
I have the encoding type also, which I will need if I store it to sql server right?
hi
i try to run pdf to text C# code, i have reference to 2 dll
and i get this error when i try to run the program:
how to add a reference to assembly ?
the type 'java.io.File' is defined in an assembly that is not referenced. You must add a reference to assembly 'IKVM.GNU.Classpath, Version=0.20.0.0, Culture=neutral, PublicKeyToken=13235d27fcbfff58'.
thank's in advance
I created a mail merge using InDesign, and it looked like it went through all of the records but (1) I can't find the option to export to pdf and (2) I can't find the merged file anywhere on my system at all. Where is it?
In Latex, I've created a new command 'changedtext' to mark specifics parts in my document and make it appear blue:
\newcommand{\changedtext}[1]{\textcolor{blue}{#1} }
Is there any easy way to alter the command to have change bars appear next to the text in the resulting PDF?
If not possible, any other suggestion for a visual markup (other than change bars) that would be clear on a black & white printout would be useful as well.