You are best source for development Learning Purpose..... Great Appreciations and Love from Pakistan
@bachpn37666 жыл бұрын
This is exactly what I required for many days. Thnx foxlearn
@williokine60146 жыл бұрын
Can you recommend good c# books you use,thanks
@bselvi956 жыл бұрын
Hi, thanks for the tutorial, is it possible to adjust the column size? For example I want one column to be wider and one column to be narrower.
@bselvi956 жыл бұрын
I figured it out. For those who wonders the same: just add printer.ColumnWidths.Add("Column Name", 250); to your code. 250 is the changeable column width.
@youneszyadi65392 жыл бұрын
@@bselvi95 thank you bro
@pespinoza6 жыл бұрын
hello, thx for the tutorial, what if i want to add an image in the header? as a logo for example
@infinityverse51046 жыл бұрын
DGVPrinter.ImbeddedImage logo = new DGVPrinter.ImbeddedImage(); logo.ImageAlignment = DGVPrinter.Alignment.Left; logo.ImageAlignment = DGVPrinter.Alignment.Left; logo.ImageLocation = DGVPrinter.Location.Header; logo.ImageX = 0; logo.ImageY = 0; logo.theImage = Properties.Resources.picture; //this is the name of the photo from your resources printer.ImbeddedImageList.Add(logo);
@pespinoza6 жыл бұрын
thx, only that it doesnt let me take the image from my Resources, and i take 1 of the pics that let me, but appears too big and in the center of the page...
@pespinoza6 жыл бұрын
it seems i've found it thx alot again
@GamePixelVR6 жыл бұрын
Paul Espinoza did you find any solution ? because i need one xD
@karakorea41337 жыл бұрын
Thanks for your Tutorial and may i ask if i can transfer datagridview to a crystal report
@foxlearn7 жыл бұрын
Yes, You can make a crystal report, then add datasource to crystal datasource as same as datagridview
@karakorea41337 жыл бұрын
thank you
@Mysterious_Couple_Vlogs5 жыл бұрын
@@foxlearn is it possible to print a datagridview using crystal reports, if yes tell me how .. mail me in ashiklal864@gmail.com tnkz
@tusharbhatnagar56427 жыл бұрын
how do you add labels and textboxes to the the print file?
@agbsoftware80187 жыл бұрын
hi, do you have an example for invoice using this class?
@dailyquran20723 жыл бұрын
my datagrid contain more than 25 column some columns are moving on another page . if any suggestion please reply. thank you
@sultannoor49603 жыл бұрын
hey when i print my datagridview according to this method two of my coloums appears on the next page like it starts . do you have any solution for this ?
@shubhamsahuSD6 жыл бұрын
Can i change resolution of page or content so i can print all data in a4 page in a single row
@foxlearn6 жыл бұрын
You can use RDLC Report or Crystal report to print your data in GridView instead of using DataGridView
@shubhamsahuSD6 жыл бұрын
thanks for suggestion , any video already for that ?
@coollkubi5 жыл бұрын
Hi FoxLearn im getting this error Error 1 'ASAPDP2019.DGVPrinter' does not contain a definition for 'printDocument' and no extension method 'printDocument' accepting a first argument of type 'ASAPDP2019.DGVPrinter' could be found (are you missing a using directive or an assembly reference?) E:\ASAP DP2019\ASAPDP2019\ASAPDP2019\Form5.cs 2032 21 ASAPDP2019
@foxlearn5 жыл бұрын
You should drag the printdocument control from your visual toolbox to your windows forms application
@Beshla6 жыл бұрын
how to print two or more datagridview on one page ? dataGridView1, dataGridView2,dataGridView3....thx
@foxlearn6 жыл бұрын
I think you should use report, print datagridview too simple. I'll make the tutorials about it soon. Thank you !
@salahzoihri44294 жыл бұрын
@@foxlearn please I have Like that problem datagridveiw1 and datagridveiw2
@sashadanisheuskaya64576 жыл бұрын
Hi. I am trying to print a dataGridView. I cannot add one data Source, because it is changed dynamically by the user through loading a DataTableObject that they have selected. However, when I try to print it, dataGridView even with 4 columns takes up to 2 pages. How can I fix it? Thank you for the tutorial!
@foxlearn6 жыл бұрын
I think you should use report to print data in datagridview. Print datagridview too simple
@jairish16708 жыл бұрын
is there any way to remove the lines or grid when i print it?
@foxlearn8 жыл бұрын
I think no, You can do that with report viewer. Thank you
@bachpn37666 жыл бұрын
Hi foxlearn can I apply watermark on my PDF document
@sameerfromfsd8 жыл бұрын
hi is there anyway to show list (double ) item show in single cell of datagridview cell ...... i have list of double want to print somehow and thinking to put them in datagridview any suggestion plz
@foxlearn8 жыл бұрын
Hi, You can add group 2 columns (data column 1 + data column 2). Thanks
@sherwinmanguilin11738 жыл бұрын
hi foxlearn i just wanna ask something how can i add multiple footer example i want to add a sentence for footer ?? thanks
@foxlearn8 жыл бұрын
Hi, You can use report instead of print direct from datagridview. thanks
@sherwinmanguilin11738 жыл бұрын
Oh I see OK thankyou
@bryashaskumar93147 жыл бұрын
can you pl tell me how to add a print preview to this datagridview with header and footer.It saves the file before printing,but i need a preview window before saving and printing the file .
@gazizrstanbek22417 жыл бұрын
whatsup man! clear the code "printer.PrintDataGridView(dataGridView1);" and add to end "printer.PrintPreviewNoDisplay(dataGridView1);". Its work
@gazizrstanbek22417 жыл бұрын
And sorry for my English, I speak English no well
@ApexWehshi4 жыл бұрын
How can i print a textbox (which isn't datagridview) using this ?
@codingthefunway98525 жыл бұрын
Hi, I so enjoyed the video, but can't download DGVPrinter on the link provided here. will supply another please. thank you
@foxlearn5 жыл бұрын
OK. Thank you for your suggestion. Let's me check it
@reubenmwangikibara44344 жыл бұрын
how after dowmloading the dvg class how do i install in my code
@FootballtoQuiz4 жыл бұрын
Add that file into your project then add this library into your form using DGVPrinterHelper; and then you could access all functionalities of this class
@FootballtoQuiz4 жыл бұрын
if you did't get my point then inbox me at facebook facebook.com/IMnobodii
@reubenmwangikibara44344 жыл бұрын
@@FootballtoQuiz let me inbox you sir
@mistersimple73034 жыл бұрын
@@FootballtoQuiz can i inbox you too, sir?
@FootballtoQuiz4 жыл бұрын
@@mistersimple7303 yes u can...
@kristinawerner35115 жыл бұрын
I wanted to add a Logo to my document. I used this code: DGVPrinter.ImbeddedImage logo = new DGVPrinter.ImbeddedImage(); logo.ImageAlignment = DGVPrinter.Alignment.Left; logo.ImageAlignment = DGVPrinter.Alignment.Left; logo.ImageLocation = DGVPrinter.Location.Header; logo.ImageX = 0; logo.ImageY = 0; logo.theImage = Properties.Resources.picture; printer.ImbeddedImageList.Add(logo); but i have this logo in the background behind the datagridview. Can you help me?
@foxlearn5 жыл бұрын
I think you should use rdlc report, crystal report. print datagridview only simple. thank you !
@abdullahsamosindhi6 жыл бұрын
I followed this Video and Printed the Page, but it's not printing the Data of Some Columns, and Its not showing the Original Names of Some Columns example( Installmet#: is a columns name, but it is showing Installment___ ) and also the data is missing from my gridview, how can i cover this?
@foxlearn6 жыл бұрын
how many columns do you print? you should use report
@abdullahsamosindhi6 жыл бұрын
@@foxlearn more than 10 Columns. i don't know Report, I am beginner.
@foxlearn6 жыл бұрын
You can view all clips report Viewer, i've posted. it's very easy.
@abdullahsamosindhi6 жыл бұрын
@@foxlearn Ok i will do that dear brother/sister, and one thing more, that i viewed your videos on SMS through C#, i failed to make the account on clickatell so that i followed your other video in which you told about ipipi.com but it doesn't provide the free messaging service, so is there any website which provide the free messaging service?
@umutfayet3 жыл бұрын
This is so easy. Thank you
@abhinashgupta19816 жыл бұрын
How can i add print preview before printing ?
@foxlearn6 жыл бұрын
From your visual tool box drag a printreview to your window form, then set to print document
@abhinashgupta19816 жыл бұрын
but through your c# class printer
@shubhamsahuSD6 жыл бұрын
You are calling printdatagridview(yourdgv) Instead you should call printpreviewdatagridview(yourdgv) something like this you can check on class. Thanks to fox learn
@sheikhshuaib84517 жыл бұрын
how to do page range printing, example (from 3rd page to 7th page) please
@Technzo6 жыл бұрын
How can i print only selected rows?
@foxlearn6 жыл бұрын
OK. Thank you for your suggestion !
@rizkyyannapradana22695 жыл бұрын
hello Fox Learn can you help me ididn't have northwind database how to connect or download the database
@foxlearn5 жыл бұрын
Please view this video kzbin.info/www/bejne/iZ2boodtf62mjck to know how to download and install northwind database. you can find northwind database at foxlearn.com .Thank you !
@ramustore21077 жыл бұрын
how to add page number in print coding
@WaqasAli3018 жыл бұрын
please tell me how to save this document to disk as pdf
@foxlearn8 жыл бұрын
Hi, You can install adobe pdf or pdf viewer to your computer. From your program you can save to pdf file. Thanks
@eaae71786 жыл бұрын
how to add a print preview?
@foxlearn6 жыл бұрын
From your visual tool box drag a print preview control to your window form
@eaae71786 жыл бұрын
may i see a sample codes hehe please i tried so many ways but i failed thank you in advance miss fox learn
@eaae71786 жыл бұрын
anothe question how to print your dgv centered ? \
@indresh_malviya7 жыл бұрын
how to print only specified column of gridview.
@bachpn37666 жыл бұрын
Indresh Malviya I also want same but no where find the solution so I made many print option pages on menubar that are connected with the pages which consist all option required by my client.
@itwind99124 жыл бұрын
in my project i have more then one subtitle how to add more?
@foxlearn4 жыл бұрын
Remove subtitle auto generate, then select the language you want to add the subtitle
@servandom.rebanaljr.91568 жыл бұрын
Thank you very much !
@foxlearn8 жыл бұрын
Thank you :)
@surajshinde92586 жыл бұрын
Thanks You are great
@MDMASUM-nn3ze6 жыл бұрын
this is very useful to my, but i want to add multiple subtitle like company name and details. can anyone help me with that????
@alibarznji20005 жыл бұрын
are doing magic or something, because i'm losing my mind over here. i've downloaded the class 4 times. but it doesn't work. it gives me errors,
@foxlearn5 жыл бұрын
What error are you getting?
@alibarznji20005 жыл бұрын
@@foxlearn conflicts between bgvprinter version=4.4.0.0 and the imported one
@TheThreeeye7 жыл бұрын
Thanks for the code! I'm converting it to VB... Is there a way to continue the report after the DGV? e.g. I want more than 1 DGV, or a text after it... Thanks
@mmramohamed27806 жыл бұрын
Pls Why Arabic Format Is bad > I Want Write Arabic Good