loading

How to rotate a image in Python tkinter Window

How to rotate a image in Python tkinter Window Question: I am working on a python messaging application using tkinter and i need a loading screen animation but none of them where fitting with my purpose so i Tried to rotate a image in python continusly which will look like a animation. This is the …

Total answers: 1

How to load an excel file in IronPython?

How to load an excel file in IronPython? Question: I am trying to load an excel file within an IronPython script, which is embedded within a software. I tried to do this with the following code: import clr clr.AddReference("Microsoft.Office.Interop.Excel") import Microsoft.Office.Interop.Excel as Excel excel = Excel.ApplicationClass() excel.Visible = True workbook = excel.Workbooks.Open("C:UsersantoiDesktoprimo_reportae-project-reportingcodes_02_heat_recoverydataunit_data_simp_08.xlsx") However, I get …

Total answers: 1