Search found 191 matches: objs

Return to advanced search

Re: Ayuda compilar 64 bits con FivEdit y MSVC 2022

...    TASKGROUPEND(), TASKPANELEND() En mi Proyecto de 32 Bits, tengo eso solucionado con la librería Dolphin.lib que trae FWH y los OBJs, tanto para TTaskpanel como para MCombobox Que me sugieres para resolver estos 7 errores Gracias
by checo176
Wed Oct 16, 2024 1:12 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda compilar 64 bits con FivEdit y MSVC 2022
Replies: 10
Views: 405

Re: Compilar con hmbk2 es realmente complicado para mi

... regalen una copia de su makefile. Definitivamente el script "buildx64.bat" se vuelve inmanejable si tienes muchos prgs, libs propias, objs, y más archivos RC, archivos en c o c++. Con makefile todo esto lo puedes manejar mas o menos ordenada y ligiblemente. A falta de un IDE en xHarbour ...
by Cgallegoa
Sun Sep 15, 2024 5:14 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Compilar con hmbk2 es complicado, pero...
Replies: 86
Views: 3771

Re: To Nageswrao Del Objs on TscrollPanel

Perhaps there are problem with TscrollPanel because I tried only directly on TaskPanel of Explorerbar and it seem run ok
only I must change the height if the link are many
by Silvio.Falconi
Fri Mar 08, 2024 9:42 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Nageswrao Del Objs on TscrollPanel
Replies: 17
Views: 2332

Re: To Nageswrao Del Objs on TscrollPanel

Dear Nages, I need to save all buttons and I made two function  SaveLinks() LoadLinks() I save all button on ini file  type as [Links]Button1=,,.\bitmaps\admin.png,,Dummy1('Admin'),Admin,20,20Button2=,,c:\work\fwh\bitmaps\pngs\image1.PNG,,Dummy1(1),Procedure1,20,110Button3=,,...
by Silvio.Falconi
Wed Mar 06, 2024 10:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Nageswrao Del Objs on TscrollPanel
Replies: 17
Views: 2332

Re: To Nageswrao Del Objs on TscrollPanel

I see the problem. Thanks. Let me fix it Please try this function instead static function DeleteControl( oPanel, nItem )   local nTop, nLeft, nLen, n   if ( nLen := Len( oPanel:aControls ) ) == 1 .or. nItem == nLen      return .f.   endif   for n := nLen to nItem + 1 STEP -1...
by Silvio.Falconi
Tue Mar 05, 2024 4:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Nageswrao Del Objs on TscrollPanel
Replies: 17
Views: 2332

Re: To Nageswrao Del Objs on TscrollPanel

I see the problem. Thanks. Let me fix it Please try this function instead static function DeleteControl( oPanel, nItem )   local nTop, nLeft, nLen, n   if ( nLen := Len( oPanel:aControls ) ) == 1 .or. nItem == nLen      return .f.  &nb...
by nageswaragunupudi
Tue Mar 05, 2024 12:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Nageswrao Del Objs on TscrollPanel
Replies: 17
Views: 2332

Re: To Nageswrao Del Objs on TscrollPanel

nageswaragunupudi wrote:I see the problem. Thanks.
Let me fix it



Nages,
I need to save the buttons in the archive (links.dbf) because the application must display the buttons at other times when the application is used by users
I sent a test
by Silvio.Falconi
Tue Mar 05, 2024 12:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Nageswrao Del Objs on TscrollPanel
Replies: 17
Views: 2332

Re: To Nageswrao Del Objs on TscrollPanel

I see the problem. Thanks.
Let me fix it
by nageswaragunupudi
Tue Mar 05, 2024 11:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Nageswrao Del Objs on TscrollPanel
Replies: 17
Views: 2332

Re: To Nageswrao Del Objs on TscrollPanel

when I had only two buttons I cannot delete printer button Yes. The function I provided does not allow the last control to be deleted. Yes. I understood. Do have you tried deleting all the btnbmps and moving the scrollbar? It makes this mistake for me https://i.postimg.cc/G34Z81nn/1....
by Silvio.Falconi
Tue Mar 05, 2024 8:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Nageswrao Del Objs on TscrollPanel
Replies: 17
Views: 2332

Re: To Nageswrao Del Objs on TscrollPanel

when I had only two buttons I cannot delete printer button

Yes. The function I provided does not allow the last control to be deleted.
by nageswaragunupudi
Tue Mar 05, 2024 2:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Nageswrao Del Objs on TscrollPanel
Replies: 17
Views: 2332

Re: To Nageswrao Del Objs on TscrollPanel

This is working perfectly for me #include "fivewin.ch"static cFolder := "c:\fwh\bitmaps\pngs\"function Main()   local oDlg, oFont, oPanel, oBrw   local aImages   aImages  := DIRECTORY( cFolder + "*.png" )   DEFINE FONT oFont NAME "TAHOMA" SIZE 0,-14   DEFINE ...
by Silvio.Falconi
Mon Mar 04, 2024 9:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Nageswrao Del Objs on TscrollPanel
Replies: 17
Views: 2332

Re: To Nageswrao Del Objs on TscrollPanel

This is working perfectly for me #include "fivewin.ch"static cFolder := "c:\fwh\bitmaps\pngs\"function Main()   local oDlg, oFont, oPanel, oBrw   local aImages   aImages  := DIRECTORY( cFolder + "*.png" )   DEFINE FONT oFont NAME "TAHOMA" SIZE 0,-14   DEFINE D...
by nageswaragunupudi
Mon Mar 04, 2024 1:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Nageswrao Del Objs on TscrollPanel
Replies: 17
Views: 2332

Re: To Nageswrao Del Objs on TscrollPanel

function DeleteControl( oPanel, nItem )   local nTop, nLeft      for n := Len( oPanel:aControls ) to nItem + 1 STEP -1      oPanel:aControls[ n ]:nTop := oPanel:aControls[ n - 1 ]:nTop      oPanel:aControls[ n ]:nLeft:= oPanel:aControls[ n - 1 ]:nLeft...
by Silvio.Falconi
Mon Mar 04, 2024 8:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Nageswrao Del Objs on TscrollPanel
Replies: 17
Views: 2332
Next

Return to advanced search