In my case i am not getting any search results for closedxml package in package manager. What should I do?
@TuanNguyen-gr4ps Жыл бұрын
I am using Visual studio 2022 I have this Using workbook As XLWorkbook = New XLWorkbook workbook.Worksheets.Add(Me.DataGridView1.DataSource, "NameOfSheetInExcel") workbook.SaveAs(sfd.FileName) and it says workbook is not defined. and and it does not know what XLWorkbook is. It suggests to change to ExcelWorkbook but that still does not work. I do have Imports Excel Interloop. Please help
@dominikr87974 жыл бұрын
Finally vb .net
@foxlearn4 жыл бұрын
Thank you ! vb.net too few viewers 😂
@Roman-og4ur4 жыл бұрын
@@foxlearn Yes... microsoft kill vb .NET (((
@robinsandiego21473 жыл бұрын
Hi there, thanks for this tutorial. Just a quick question, how do we export data for filtered searched populating in the datagridview?
@SergioDeSantisWeb2 жыл бұрын
Hi Robin, i use this code for export from datagrig Using workbook As XLWorkbook = New XLWorkbook workbook.Worksheets.Add(Me.DataGridView1.DataSource, "NameOfSheetInExcel") workbook.SaveAs(sfd.FileName) End Using
@digitronix5328 ай бұрын
I need to save a new excel using am existing excel template .how can I do that ?
@hassandamiri3302 жыл бұрын
Thanks a lot I'm extremely grateful
@Liovovv2 жыл бұрын
Спасибо большое! Очень благодарен 😊
@TopVideos.Talent2 жыл бұрын
nothing
@jagadeeshdasari57583 жыл бұрын
I'm getting error at 1:24 when trying to select database names.
@debesmscattv2 жыл бұрын
hi, I'm using SQL server and when I print the excel file there is no data on it. Can you help me solve this, please?
@jimlsdone2 жыл бұрын
Thank you so much!!!
@Yasser_Nabil4 ай бұрын
thanks
@mohammed14064 жыл бұрын
there is no deferent between vb.net and c#.net all same thank you for your Tutorial :)
@foxlearn4 жыл бұрын
Yes. i will upload both
@MASUTOZIL8 ай бұрын
thank u
@لالة_يامنة2 жыл бұрын
the file downloaded is emty. whhhy ??
@trekvrx4002 жыл бұрын
Hi thks for this tutorial, but is not working to me, is saying that XLWorkbook is not defined
@olamas922 жыл бұрын
Import ClosedXML in your code
@EduardoBonillaAircraftDriver4 жыл бұрын
Hi Thanks for this tutorial, do you know any way to do this on .NET 5 thanks
@foxlearn4 жыл бұрын
Do the same way
@EduardoBonillaAircraftDriver4 жыл бұрын
@@foxlearn perfect, thanks
@ahmadridhosyaugi98274 жыл бұрын
How if using mc access data base And export to excel ?
@foxlearn4 жыл бұрын
Connect ms access db, then do the same
@samidool51414 жыл бұрын
Did u stop publishing c#
@foxlearn4 жыл бұрын
No. Don't worry
@victorjoaquin44 жыл бұрын
Falto que exporte el titulo
@foxlearn4 жыл бұрын
By default export data include title
@NA-ms8rl Жыл бұрын
Hi I am seeing "Error" in Exception.. I am trying to save table.. ************************************************** Using sfd As SaveFileDialog = New SaveFileDialog() With {.Filter = "Excel Workbook|*.xlsx"} If sfd.ShowDialog() = DialogResult.OK Then Try Using table As XLWorkbook = New XLWorkbook() table.SaveAs(sfd.FileName) End Using MessageBox.Show("Successfully Exported") Catch ex As Exception MessageBox.Show("Error") End Try End If