Search found 147 matches: freeze

Return to advanced search

Re: leer y pdf y extraer datos

Paco, La respuesta de la IA de Bing (copilot): Sí, existen varias formas de crear archivos ejecutables en Python que se pueden ejecutar sin necesidad de tener instalado el intérprete de Python. Algunas de las herramientas más populares son: PyInstaller: Permite crear ejecutables de un solo archivo o...
by Antonio Linares
Sat Jan 27, 2024 5:49 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: leer y pdf y extraer datos
Replies: 16
Views: 840

Re: How do I know the field name in xbrowse:column

Dear Mst.Rao and Maurizio, I got another problem for ::nFreeze. If you scroll to right until the column hide under freeze, the :cExpr will show incorrected. I use cField := oBrw:aCols[oBrw:nColSel]:cExpr Maurizio Dear Master, It works correctly. Thx. Try cField := oBrw:SelectedCol():cExpr
by dutch
Tue Dec 19, 2023 6:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How do I know the field name in xbrowse:column
Replies: 22
Views: 2276

Re: Using Microsoft AI Phi-2 from FWH

... too: hb_retnll( ( LONGLONG ) callback ); A Stop button would be useful. After a certain amount of line of text it seems to freeze. Maybe a scrolling is needed?
by Enrico Maria Giordano
Mon Dec 18, 2023 8:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Using Microsoft AI Phi-2 from FWH
Replies: 51
Views: 8287

Re: How do I know the field name in xbrowse:column

dutch wrote:Dear Mst.Rao and Maurizio,
I got another problem for ::nFreeze. If you scroll to right until the column hide under freeze, the :cExpr will show incorrected.
Maurizio wrote:I use

cField := oBrw:aCols[oBrw:nColSel]:cExpr

Maurizio


Try
Code: Select all  Expand view
cField := oBrw:SelectedCol():cExpr
by nageswaragunupudi
Mon Dec 18, 2023 4:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How do I know the field name in xbrowse:column
Replies: 22
Views: 2276

Re: How do I know the field name in xbrowse:column

Dear Mst.Rao and Maurizio,
I got another problem for ::nFreeze. If you scroll to right until the column hide under freeze, the :cExpr will show incorrected.
Maurizio wrote:I use

cField := oBrw:aCols[oBrw:nColSel]:cExpr

Maurizio
by dutch
Sun Dec 17, 2023 5:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How do I know the field name in xbrowse:column
Replies: 22
Views: 2276

Re: Xlsxlibhb_ver2

This example demonstrates: 1. Image Brush 2. Sheet name customized 3. Group Headers 4. Freeze Header Rows 5. Hide Zero values 6. Footer row with aggregage formulae https://imagizer.imageshack.com/v2/xq70/923/CY8dZk.png Exporting tables is very simple ...
by nageswaragunupudi
Thu Oct 19, 2023 4:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xlsxlibhb_ver2
Replies: 57
Views: 9007

Re: WBrowse - color fondo cabecera y Congelar columnas- consulta

José, WBrowse.prg original de FWH? Freeze no funciona en esta versión? certezca? Que lástima. entoces, cambia a XBROWSE() del maestro Nages ó intenta con TCBROWSE() para veer se funciona bién.

Regards, saludos.
by karinha
Fri Mar 17, 2023 4:50 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: WBrowse - color fondo cabecera y Congelar columnas- consulta
Replies: 6
Views: 616

Re: Christmas 2022

Merry Christmas from the DEEP FREEZE in ( normally warm) South Carolina USA ... Rick Lipkin
by Rick Lipkin
Mon Dec 26, 2022 1:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Christmas 2022
Replies: 11
Views: 719

Re: Pregunta sobre FW_OpenAdoConnection

... GDI+ Window (RendServ.exe), C:\Windows\WinSxS\x86_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.19041.2006_none_d94bc80de10970 5 Licencia de Deep Freeze, D:\XBASE-PROYECTOS\RENDIMIENTO-SERVICIOS\RendServ.exe Variables in use ================ Procedure Type Value ========================== TOLEAUTO:ISKINDOF ...
by jose_murugosa
Thu Oct 06, 2022 4:35 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Pregunta sobre FW_OpenAdoConnection
Replies: 10
Views: 1242

Re: System info, Tips & Tricks, scharing project info

... more a problem is that using several combinations and so calling the function several times (ex. 10 calls) It seems that the program is going to freeze. I hardly ever have been thinking of releasing objects, fonts, etc. and have no clue about memory leaking, so this could also be the problem ...
by James Bott
Sun Jan 16, 2022 7:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: System info, Tips & Tricks, scharing project info
Replies: 20
Views: 1453

Re: System info, Tips & Tricks, scharing project info

... more a problem is that using several combinations and so calling the function several times (ex. 10 calls) It seems that the program is going to freeze. I hardly ever have been thinking of releasing objects, fonts, etc. and have no clue about memory leaking, so this could also be the problem ...
by Marc Venken
Sun Jan 16, 2022 11:23 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: System info, Tips & Tricks, scharing project info
Replies: 20
Views: 1453

freeze rows in excel RESOLVED

I solved this way
Code: Select all  Expand view

oWin := oExcel:ActiveWindow
oSheet:Cells( 2, 1 ):Select()
oWin:FreezePanes := .t.
 
by artu01
Thu Dec 16, 2021 1:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: freeze rows in excel RESOLVED
Replies: 4
Views: 435

Re: freeze rows in excel

From recorded macro

Code: Select all  Expand view
Sub Macro1()
'
'
Macro1 Macro
'

'

    With ActiveWindow
        .SplitColumn = 0
        .SplitRow = 1
    End With
    ActiveWindow.FreezePanes = True
End Sub
by hmpaquito
Wed Dec 15, 2021 9:30 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: freeze rows in excel RESOLVED
Replies: 4
Views: 435

Re: freeze rows in excel

Jimmy wrote:I have to look into my crystal ball ...
but I don't see a solution with so little information. :(

:P


I want to freeze rows in Excel
For example, the first two lines of My Excel sheet are frozen
by artu01
Wed Dec 15, 2021 5:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: freeze rows in excel RESOLVED
Replies: 4
Views: 435
Next

Return to advanced search