Search found 44 matches: dinamically

Return to advanced search

Re: DLLCALL under Fivewin

Dear Jimmy,

FWH way to dinamically use DLL functions is:

DLL FUNCTION ...

DllCall() is a Harbour function.

Why don't you try to use the FWH DLL FUNCTION way ? :-)
by Antonio Linares
Thu Dec 01, 2022 3:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DLLCALL under Fivewin
Replies: 45
Views: 2634

Re: XBrowse and nomodal dialogs

Yes, I'm using different workareas. But the browses are dinamically created so I can't use any alias, I need that the current workarea is the one of the browse with the focus.

Can it be done?

EMG
by Enrico Maria Giordano
Fri Oct 09, 2020 5:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse and nomodal dialogs
Replies: 23
Views: 1693

Re: FWH MariaDb/Mysql setfilter problem.

Hi dutch

It wont work... I dont know if the customer is going to enter only the name or both name and lastname.
And it could be any of the fields in a xbrowse, it is created dinamically

The only problem I see, is the space in between the variable you pass to the filter ???
by Adolfo
Tue Aug 28, 2018 12:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH MariaDb/Mysql setfilter problem.
Replies: 5
Views: 1072

Re: Bug in mdichild menu

If I understood correctly, this is not possible as MDICHILDs are dinamically created after the creation of the main MDI window. EMG NO The problem is with menu and SYSMENU ( locate ) of mdichild Table of accelerators is created with ( ALT + 1 ) as the first ...
by cnavarro
Mon Jun 05, 2017 2:41 pm
 
Forum: Bugs report & fixes / Informe de errores y arreglos
Topic: Bug in mdichild menu [Fixed]
Replies: 15
Views: 5052

Re: Bug in mdichild menu

If I understood correctly, this is not possible as MDICHILDs are dinamically created after the creation of the main MDI window.

EMG
by Enrico Maria Giordano
Mon Jun 05, 2017 1:56 pm
 
Forum: Bugs report & fixes / Informe de errores y arreglos
Topic: Bug in mdichild menu [Fixed]
Replies: 15
Views: 5052

Re: Huge C static memory allocation

Enrico,

Why don't you allocate memory dinamically in runtime using hb_xgrab() ?

It is the right way to do it or you run out of stack memory
by Antonio Linares
Sun Oct 11, 2015 6:10 am
 
Forum: Off Topic / Otros temas
Topic: Huge C static memory allocation
Replies: 7
Views: 1239

Ribbonbar group button with popup menu

Dear friends,

I need to dinamically build the popup menu assigned to a ribbonbar group button.

Can it be done? It merely activate the menu and I can't found a way to rebuild it.

EMG
by Enrico Maria Giordano
Fri Oct 03, 2014 11:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ribbonbar group button with popup menu
Replies: 2
Views: 562

Re: cPS in bPainted

As the dots distance is variable we should have to create the bitmap for the brush dinamically...
by Antonio Linares
Sun Aug 25, 2013 2:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: cPS in bPainted
Replies: 20
Views: 2481

Re: New FiveDBU using the strings API and the new preview

Marc,

Enhanced version that allows to dinamically change the language at runtime :-)

https://code.google.com/p/fivewin-contributions/downloads/detail?name=fivedbu_20130824_4.zip

Full source code included and strings.prg API
by Antonio Linares
Sat Aug 24, 2013 5:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New FiveDBU using the strings API and the new preview
Replies: 17
Views: 5309

PROBLEMAS CON EL TWBROWSE

... end ::Skip( ::nRowPos - n ) #else // WBrwPane() returns the nº of visible rows // WBrwPane recieves at aColSizes the Array or a Block // to get dinamically the Sizes !!! ::Skip( ::nRowPos - wBrwPane( ::hWnd, ::hDC, Self, ::bLine,; ::aColSizes, ::nColPos, ::nClrText, ::nClrPane,; If( ::oFont ...
by ROBER68
Fri Jun 21, 2013 5:45 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: PROBLEMAS CON EL TWBROWSE
Replies: 1
Views: 926

Re: Error Al Compilar RBDESIGN.PRG

João,

Right click on the ribbonbar (and its components) and you will be able to dinamically build it and get its source code :-)
by Antonio Linares
Mon Apr 22, 2013 3:27 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error Al Compilar RBDESIGN.PRG
Replies: 4
Views: 725

Re: Dinamically building the Classes hierarchy tree

Creo que hay un bug en Harbour ya que:

hb_IsObject( Date() )

devuelve falso

sin embargo:

MsgInfo( Date():Super:ClassName() )

devuelve el valor correcto, luego lo trata como un objeto
by Antonio Linares
Thu Feb 07, 2013 9:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Dinamically building the Classes hierarchy tree
Replies: 8
Views: 2960

Re: Dinamically building the Classes hierarchy tree

Faltaba corregir esto :-)

Code: Select all  Expand view
function GetClasses()

   local n := 1, oClass

   while ! Empty( __ClassName( n ) )
      AAdd( aClasses, TClass():New( __ClassName( n++ ) ) )
   end
 
   ...
 
by Antonio Linares
Thu Feb 07, 2013 9:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Dinamically building the Classes hierarchy tree
Replies: 8
Views: 2960

Re: Dinamically building the Classes hierarchy tree

Carlos, Si, es correcto puesto que esa información no la expone Harbour. Puedes probar a construirlo con la versión más reciente de Harbour. No funciona bien. De momento lo he corregido asi, pero sigue estando mal: #include "FiveWin.ch"#include "Splitter.ch"static aClasses := ...
by Antonio Linares
Thu Feb 07, 2013 9:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Dinamically building the Classes hierarchy tree
Replies: 8
Views: 2960

Re: FiveTech's FiveWeb (free up to version 1.0)

Setting the background image and dinamically selecting the theme to use: http://www.fivetechsoft.net/cgi-bin/tutor04 tutor04.prg #include "FiveWeb.ch"function Main()   local oDlg     ...
by Antonio Linares
Wed Nov 14, 2012 10:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FiveTech's FiveWeb (free up to version 1.0)
Replies: 119
Views: 23557
Next

Return to advanced search