Feeds:
Posts
Comments

Archive for March 16th, 2007

Print PDF file in .net

I found this question at many places that how to print pdf file in .net in which you have only the full path of that pdf file
here is you solution in vb.net
Dim psi As New ProcessStartInfo
psi.UseShellExecute = True
psi.Verb = “print”
psi.WindowStyle = ProcessWindowStyle.Hidden
psi.FileName = sReport
Process.Start(psi)

Read Full Post »

How to use login control in .net

As a web developer we know that most of the time our application is having a login as well as the forget password kind of requirement.
Now, using visual studio 2005 it’s very easy to design a login page because the inbuilt login tab has been added into the toolbox of VS 2005 editor, which has [...]

Read Full Post »