Search found 98 matches: sheets

Return to advanced search

Re: Fwh 23.10 TGet another problem (UNSOLVED)

Mr. Rao,

I'm not use tdialog but I Use TFolderEx. TFolderEx each sheets is use tdialog. I just wanted to remind

My All tget controls of TFolderEx is perfectly works.

Best regards,
by ertan
Sun Feb 04, 2024 4:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fwh 23.10 TGet another problem (UNSOLVED)
Replies: 132
Views: 54090

Re: Xlsxlibhb_ver2

Exporting multiple tables to different Sheets/Tabs of one single ExcelBook: #include "fivewin.ch"REQUEST DBFCDXfunction Main()   local oXlsx   USE STATES SHARED NEW   USE WWONDERS SHARED NEW VIA "DBFCDX"   USE CUSTOMER ...
by nageswaragunupudi
Thu Oct 19, 2023 6:00 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xlsxlibhb_ver2
Replies: 57
Views: 8967

Re: DBF to Excel Sheet, without Excel, using ADO ?

Some points: 1. I prefer adopting the sql approach than using ADOX. 2. We need to be aware of the limitations of creating Excel sheets using ADO. a) Whatever length we specify, all character columns are VarChar(255) b) Whatever numeric datatype, like int, numeric(w,d), etc we specify the ...
by nageswaragunupudi
Mon Aug 14, 2023 10:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF to Excel Sheet, without Excel, using ADO ?
Replies: 50
Views: 2561

Re: DBF to Excel Sheet, without Excel, using ADO ?

nageswaragunupudi wrote:I suggest creating one blank xlsx file and then copy it and use it to create our ado tables as sheets


Interesting .... Maybe code inside the sample ?
by Marc Venken
Wed Aug 09, 2023 9:45 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF to Excel Sheet, without Excel, using ADO ?
Replies: 50
Views: 2561

Re: DBF to Excel Sheet, without Excel, using ADO ?

... own, without Excel. Or that may be very difficult. I suggest creating one blank xlsx file and then copy it and use it to create our ado tables as sheets
by nageswaragunupudi
Wed Aug 09, 2023 7:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF to Excel Sheet, without Excel, using ADO ?
Replies: 50
Views: 2561

Hidden objects in Excel file

... delete them one by one. But if the file is large, it is VERY long. I can open a file in the program via ODBC and delete objects via a command like sheets(1):drawind:delete() . However, such a file opens VERY slowly via ODBC. Maybe someone has encountered something like this ?
by Natter
Sat May 21, 2022 7:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Hidden objects in Excel file
Replies: 0
Views: 177

Re: Insertar Hoja en libro Excel

... derecha. La segunda opción me da error y no la puedo poner en marcha Encontré por el foro la siguiente instrucción oBook := oExcel:ActiveWorkbook:Sheets:Add( oExcel:ActiveWorkbook:Worksheets( oExcel:ActiveWorkbook:Worksheets:Count() ) ) Pero actúa como el primer caso
by juanjogascem
Thu Mar 31, 2022 10:32 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Insertar Hoja en libro Excel
Replies: 2
Views: 203

Re: Insertar Hoja en libro Excel

No no he probado, pero supongo que antes del oExcel:sheets:Add() debes posicionarte en la última hoja, algo así: nultima := oExcel:Workbooks:Sheets:Count() oExcel:Sheets:Item(nultima):Select() oExcel:sheets:Add() o también puedes después del oExcel:sheets:Add() ...
by Sebastián Almirón
Thu Mar 31, 2022 8:50 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Insertar Hoja en libro Excel
Replies: 2
Views: 203

Insertar Hoja en libro Excel

... y me desplaza esta a la ultima posicion Hoja1, Hoja2, Hoja6, Hoja5, Hoja4, Hoja3 Existe alguna forma de que las hojas se añadan al final? como Sheets.Add After el codigo que utilizo es: oExcel := ExcelObj() // Inicio If oExcel == nil MsgInfo( "Excel no está instalado", "Informe" ...
by juanjogascem
Thu Mar 31, 2022 6:45 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Insertar Hoja en libro Excel
Replies: 2
Views: 203

print pixels in certain positions

... in the image you see I put the image below just to help me but in printing it is not printed also because in the printer I put the receipts as sheets of paper https://i.postimg.cc/m2yy8sn5/print.png I built a grid to understand what the exact position is compared to the one ...
by Silvio.Falconi
Fri Mar 18, 2022 9:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: print pixels in certain positions
Replies: 13
Views: 722

Re: FW_AdoToExcel and sheet

Thanks Rao
This Works :D ,
is there a possibility to export more recordest in different Sheets of the same Excel file?
Maurizio
by Maurizio
Tue Sep 28, 2021 12:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW_AdoToExcel and sheet
Replies: 4
Views: 513

Re: GetExcelRange ERROR

nageswaragunupudi wrote:GetExcelRange() can not open xls file, if it is already opened by any application other than Microsoft Excel.
Close Google Sheets and try.
Also give full path.



please I not open the xls file with another app
please do you see my test sample ?
the file orario.xlsx is on the root of exe
by Silvio.Falconi
Fri Sep 17, 2021 2:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: GetExcelRange ERROR
Replies: 10
Views: 862

Re: GetExcelRange ERROR

GetExcelRange() can not open xls file, if it is already opened by any application other than Microsoft Excel.
Close Google Sheets and try.
Also give full path.
by nageswaragunupudi
Fri Sep 17, 2021 10:58 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: GetExcelRange ERROR
Replies: 10
Views: 862

Re: FW_ExceltoDbf version in FW 2102

... dbf with the corrected/linked header You can get a error if the exel file has more than 1 tab. I did not yet find a solution to select one of the sheets in exel if there are more than 1 #include "fivewin.ch"REQUEST DBFCDXfunction Main()   SET DATE BRITISH   SET CENTURY ON   SET ...
by Marc Venken
Sat Mar 27, 2021 9:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW_ExceltoDbf version in FW 2102
Replies: 19
Views: 2567

Error en excel

... cFile:="Prueba.xls" objExcel = TOleAuto():New("Excel.Application") objExcel:Visible := .T. objExcel:Workbooks:Add() objExcel:Sheets("Hoja1") oHoja:=objExcel:ActiveSheet() oHoja:Shapes:AddPicture("C:\Prueba\logo.jpg",.t.,.t.,10,5,88,80) objExcel:Cells(1, ...
by servicomver
Thu Mar 18, 2021 6:39 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error en excel
Replies: 0
Views: 335
Next

Return to advanced search