topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
Colores en los gets como? | Saludos foro.
A sugerencia de la mayoria de los usuarios que usan las aplicaciones desarrolladas, exigen ver de forma diferente los gets
en edicion, cuando estos estan OGet:Enable() y editandose si me acepta colores definidos en:
oget:nClrFore
oget:nClrBack o oget:SetColor(...)
pero como podre desplegar los gets con... |
Colores en los gets como? | al inicio de mi app pong esto:
[code=fw:zxset38g]<div class="fw" id="{CB}" style="font-family: monospace;"><br />...<br /> SetKinetic<span style="color: #000000;">(</span> <span style="color: #00C800;">FALSE</span> <span style="color: #000000;">)</span><br /> SetDialogEsc<span style="color: #000000;">(<... |
Colores en los gets como? | Noe
Colocar este código en el principal y todos los Gets en edición tendrán en color
[code=fw:2b4lgxln]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> SetGetColorFocus<span style="color: #000000;">(</span>RGB<span style="color: #000000;">(</span><span style="color: #000000;">238</span>,<span s... |
Colores en los gets como? | Carlos:
Esto me funciona para cambiar los colores de los gets en general, y esta bien, asi los puedo modificar
WITH OBJECT tGet()
:lDisColors := .F.
:nClrTextDis := COLOR_AZUL
:nClrPaneDis := COLOR_SAMARILLO
END
El detalle aqui, es: Como indicar el color del get en particular, que no todos tengan el mismo color ... |
Colores en un LIstBox | Como puedo hacer para que un Listbox (con o sin datos) se pongan de colores verde y blanco como las antiguas hojas pautadas de impresion,
es decir un renglon verde, uno blanco, uno verde uno blanco, sin importar que este vacia la base de datos.
gracias y saludos a todos |
Colores en un LIstBox | Amigo...
Asi se cambian los colores... lo que no se es cuando la base de datos esta vacia..
oBrw:NCLRPANE:={||IIF((ORDKEYNO())%2==0,RGB(230,230,230),RGB(190,215,190))}
Espero te sirva |
Coloring a line Solved. Now coloring an individual cell | Harvey,
I notice a lot of common elements in your code. For instance, you have about 17 sections like this:
[code=fw:o09hqod6]<div class="fw" id="{CB}" style="font-family: monospace;"> ADD <span style="color: #0000ff;">TO</span> oBrw <span style="color: #00C800;">DATA</span> ; <br /> ... |
Coloring a line Solved. Now coloring an individual cell | Can't get the line to color. What am I doing wrong. Here is the code
[code=fw:1c80htvx]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br /><span style="color: #B900B9;">// COLOR SET UP</span><br />oBrw:<span style="color: #000000;">bClrStd</span> := <span style="color: #000000;">{</span>||<span ... |
Coloring a line Solved. Now coloring an individual cell | Instead of
[code=fw:14t29xjj]<div class="fw" id="{CB}" style="font-family: monospace;">oBrw:<span style="color: #000000;">bClrStd</span> := <span style="color: #000000;">{</span>||<span style="color: #000000;">{</span>CLR_BLACK,CLR_WHITE<span style="color: #000000;">}</span>,<span style="color: #000000;"... |
Coloring a line Solved. Now coloring an individual cell | Rao:
As always perfect. |
Coloring a line Solved. Now coloring an individual cell | Roa maybe you can help me color a cell.
This is the code using xbrowse.
I get a bound array acess error.
[code=fw:30j4iflq]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br /><span style="color: #B900B9;">//No array is declared </span><br /><br /><span style="color: #B900B9;">// color cell...I wa... |
Coloring a line Solved. Now coloring an individual cell | [code=fw:2saoefbn]<div class="fw" id="{CB}" style="font-family: monospace;">oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">[</span><span style="color: #000000;">3</span><span style="color: #000000;">]</span>:<span style="color: #000000;">bClrstd</span> := <span style="... |
Coloring a line Solved. Now coloring an individual cell | Can you please post your full code for the browse and explain what is it want to show? |
Coloring a line Solved. Now coloring an individual cell | Messy code:
IF YOU NEED ANYTHING ELSE LET ME KNOW.
DEFINE FONT oFont3 NAME "Ms Sans Serif" SIZE 2,1
DEFINE WINDOW oWnd TITLE "View Print Edit Reports" ;
COLOR CLR_WHITE, CLR_WHITE
if viewingMulti == 0
define dialog oDlg resource "hagbrow" of oWnd1 TRANSPARENT TITLE cItem Font oFont3
REDEFINE TABS oTab... |
Coloring a line Solved. Now coloring an individual cell | Roa tried both of your recommendations ...always a bound array acess error on that line of code.
Here is the error. Maybe it will help.
[code=fw:2q5uwxwv]<div class="fw" id="{CB}" style="font-family: monospace;">Error occurred <span style="color: #00C800;">at</span>: <span style="color: #000000;">01</span>/<span style... |
Coloring a line Solved. Now coloring an individual cell | James thanks for the good advice. And code. The code that you want to reduce was suggested by you many years ago. <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
But as life goes on we hopefully get better.
You do me sometimes.
An clue how i can color a cell. Alway... |
Coloring a line Solved. Now coloring an individual cell | Harvey,
To color a cell try changing this:
// COLOR SET UP
oBrw:bClrStd := {||{CLR_BLACK,CLR_WHITE},{ If(gl->ty13 < 0, CLR_YELLOW, CLR_WHITE) } }
To this:
// COLOR SET UP
oBrw:bClrStd := {|| If(gl->ty13 < 0, {CLR_BLACK,CLR_YELLOW}, {CLR_BLACK,CLR_WHITE} ) }
Regards,
James |
Coloring a line Solved. Now coloring an individual cell | Harvey,
Or, this is probably what you were trying to do:
oBrw:bClrStd := {|| {CLR_BLACK, If(gl->ty13 < 0, CLR_YELLOW, CLR_WHITE) } }
James |
Coloring a line Solved. Now coloring an individual cell | This colors line which was my first request. It works fine
oBrw:bClrStd := {|| {CLR_BLACK, If(gl->ty13 < 0, CLR_YELLOW, CLR_WHITE) } }
I want to color one field on a certain record.
Roa sent me this but I get error
fixflag1() gets the record.
oBrw:aCols[3]:bClrstd := {||If(fixFlag1(), { CLR_BLACK, CLR_YELLOW },{ C... |
Coloring a line Solved. Now coloring an individual cell | Harvey,
Can we see the first 15 lines of the error that show the line numbers and functions? We need to see where the error is occuring.
James |
Coloring a line Solved. Now coloring an individual cell | Harvey,
OK, I have recreated your error. This will happen if the column has not yet been defined. When it has not been defined, there is no corresponding array in oBrw, thus the array access error.
So make sure the column you are coloring has been defined, then use this line:
oBrw:aCols[3]:bClrstd := {|| { CLR_BLACK... |
Coloring a line Solved. Now coloring an individual cell | Amazing.
All I needed to do was move declaration to below columns and it worked like a charm.
Thanks again you are a tremendous help. |
Colorize a dialog two colors | I use a brush to colorize a dialog
DEFINE BRUSH oBrush1 COLOR COLORE_MIO
oApp:oMyDialog:SetBrush(oBrush1)
for reasons that I am not here to list now I would need to know if I can color a two-color dialog
i.e. having a light blue color for two fingers above and another color for the rest of the dialog
for example I ... |
Colorize a dialog two colors | Silvio,
You may use:
SetDlgGradient( { { 0.3, CLR_CYAN, CLR_CYAN }, { 0.7, CLR_YELLOW, CLR_YELLOW } } ) |
Colorize a dialog two colors | Antonio,
I use it for a Panel I made
oApp:oSpiaggia:bPainted:= {|hDC, cPS| ;
SetDlgGradient( { { 0.1, CLR_CYAN, CLR_CYAN }, { 0.9, COLORE_SABBIA, COLORE_SABBIA } } );
}
then on this tPanel I use btnbmp and ( on top ) the objects Ximage
the colors are bpainted but there is something not run ok becaus... |
Colorize a dialog two colors | I found the error
the Panel is not trasparent
then I made oApp:oSpiaggia:lTransparent :=.t.
and then I saw the problem
all btnbmp are not transparent ( look at your email) |
Colorize a second xbrowse | I have created a procedure to insert the absences of a teacher, from an initial selection, the final user can view the weekly timetable of the teacher absent and the second display browse all teachers who have available for those hours when the teacher is absent
[img:2vqc75k1]http://www.eoeo.it/wp-content/... |
Colorized cell of xbrowse | I have to color the xbrowse cells on each line with a different color depending on the value of the cell, I made
WITH OBJECT oBrw
....
FOR i := 1 TO LEN(:aCols)
oCol := :aCols[ i ]
oCol:nWidth := 30
if i >1
oCol:bClrStd := {|i| { ChangeColor( oBrw, i ) } }
endif
NEXT
:CreateFromCode()
END
static funct... |
Colorized cell of xbrowse | Silvio,
I think you should change this
oCol:bClrStd := {|i| { ChangeColor( oBrw, i ) } }
For this:
oCol:bClrStd := {|| { ChangeColor( oBrw, i ) } }
But "i" is the variable of the FOR and when the browse is created the value of "i" will be the size of oBrw:aCols + 1 |
Colorized cell of xbrowse | [quote="vilian":2hs12tnw]Silvio,
I think you should change this
oCol:bClrStd := {|i| { ChangeColor( oBrw, i ) } }
For this:
oCol:bClrStd := {|| { ChangeColor( oBrw, i ) } }
But "i" is the variable of the FOR and when the browse is created the value of "i" will be the size of oBrw:aCols + 1[/quote:2hs12tn... |
Colorized cell of xbrowse | Maybe you have also the issue with Detached Locals ?
[url:u8gayfb4]http://forums.fivetechsupport.com/viewtopic.php?f=3&t=41373&hilit=detached+local[/url:u8gayfb4] |
Colorized cell of xbrowse | [quote="Marc Venken":2sjo6sj0]Maybe you have also the issue with Detached Locals ?
[url:2sjo6sj0]http://forums.fivetechsupport.com/viewtopic.php?f=3&t=41373&hilit=detached+local[/url:2sjo6sj0][/quote:2sjo6sj0]
I need something of this
[img:2sjo6sj0]https://i.postimg.cc/BZj0CppK/HHH.png... |
Colorized cell of xbrowse | [code=fw:zuxqetpp]<div class="fw" id="{CB}" style="font-family: monospace;">oCol:<span style="color: #000000;">bClrStd</span> := ChangeColor<span style="color: #000000;">(</span> oBrw, i <span style="color: #000000;">)</span><br /> </div>[/code:zuxqetpp] |
Colorized cell of xbrowse | [quote="nageswaragunupudi":39pa5n40][code=fw:39pa5n40]<div class="fw" id="{CB}" style="font-family: monospace;">oCol:<span style="color: #000000;">bClrStd</span> := ChangeColor<span style="color: #000000;">(</span> oBrw, i <span style="color: #000000;">)</span><br /> </div>[/code:39pa5n40][/quote:39pa5n40]
Nag... |
Colorized cell of xbrowse | [quote="Silvio.Falconi":2g88ha0o][quote="nageswaragunupudi":2g88ha0o][code=fw:2g88ha0o]<div class="fw" id="{CB}" style="font-family: monospace;">oCol:<span style="color: #000000;">bClrStd</span> := ChangeColor<span style="color: #000000;">(</span> oBrw, i <span style="color: #000000;">)</span><br /> </div>[/cod... |
Colorized cell of xbrowse | I have also error
Error occurred at: 07-03-2022, 12:37:57
Error description: Error BASE/1075 Parametro errato: >
Args:
[ 1] = U
[ 2] = N 0
Stack Calls
===========
Called from: source\tipico.prg => COLORCELL( 189 )
Called from: source\tipico.prg => (b)CHANGECOLOR( 183 )
the xbrowse... |
Colorized cell of xbrowse | hi Silvio,
you try to "add" Codeblock in a Loop but your "Counter" does not work that Way.
you need to use a "String" to build a Codeblock so this might work
[code=fw:3fg1p52c]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">LOCAL</span> cString := <span style="color: #ff0000;">... |
Colorized cell of xbrowse | [b:2gd91ka0]Resolved!!![/b:2gd91ka0]
[img:2gd91ka0]https://i.postimg.cc/RVJpVKyB/yes.png[/img:2gd91ka0]
FOR i := 2 TO LEN(:aCols)
oCol := :aCols[ i ]
oCol:nWidth := 30
:aCols[ i ]:bClrStd := ChangeColor( oBrw, i )
NEXT |
Colorized cell of xbrowse | If I use
:nMarqueeStyle := MARQSTYLE_HIGHLWIN7
the n I not see the right color
How I can to hav the bar nmarquee on only first column ? |
Colorized cell of xbrowse | [quote="Silvio.Falconi":wl8x30dh]
How I can to hav the bar nmarquee on only first column ?[/quote:wl8x30dh]
I do it like that:
[code=fw:wl8x30dh]<div class="fw" id="{CB}" style="font-family: monospace;"> WITH OBJECT oBrw<br /> :<span style="color: #000000;">nMarqueeStyle</span> := MARQSTYLE_HIGHLCELL <br... |
Colorized cell of xbrowse | THANKS
[img:y6v5axum]https://i.postimg.cc/ydhHSdcM/JJJJ.png[/img:y6v5axum] |
Colors (SOLVED) | Hello friends!
I need a little help, I have a color in decimal (for example 6736896). How to get tones above or below, what's the logic?
Thanks |
Colors (SOLVED) | Christiano,
? hb_NumToHex( 6736896 ) => 0x[color=#FF0000:r6k6f0b7]66[/color:r6k6f0b7][color=#008040:r6k6f0b7]CC[/color:r6k6f0b7][color=#0000FF:r6k6f0b7]00[/color:r6k6f0b7] (hexadecimal)
? hb_NumToHex( hb_bitAnd( 6736896, 0x[color=#FF0000:r6k6f0b7]FF[/color:r6k6f0b7]0000 ) / 0xFF00 )
? hb_NumToHex( hb_bitAnd( 6736896... |
Colors (SOLVED) | Thanks Antonio |
Colors (SOLVED) | Hello,
about the color-adjustment of a given color
can be selected with the slider or a imageclick
[quote:eue8k7le][b:eue8k7le]How to get tones above or below, what's the logic?[/b:eue8k7le][/quote:eue8k7le]
[b:eue8k7le]Visual adjustment[/b:eue8k7le]
A gradient created from < white . Your color. black >
This tool u... |
Colors (SOLVED) | Hi Uwe, thanks for replying.
I'm adjusting the visual part of my calendar, as the user can change the predominant color of the screen, the calendar has differences in the colors of today, Sundays and holidays. In the way I'm doing it, in some situations it's out of color.
So I want to calculate to get a few shades ab... |
Colors (SOLVED) | Maybe useful for You
paint colors from a given DEC or RGB-value
or use predefined colors
You can save and restore 4 colors
adjust the color with the slider or click inside the image
as well You get the colornames
the ??? buttons will paint the color and shows the values
[img:11lkm6ur]http://www.service-fivewi... |
Colors (SOLVED) | Hi.
I haven't touched it yet but that's almost what I need when using the slider but automatically, I think it would be more interesting in my case although I could do something similar and let the user choose the tone they prefer.
Would it be possible to share so you can have a beginning?
Hugs |
Colors (SOLVED) | [quote="Antonio Linares":vbloth36]Christiano,
? hb_NumToHex( 6736896 ) => 0x[color=#FF0000:vbloth36]66[/color:vbloth36][color=#008040:vbloth36]CC[/color:vbloth36][color=#0000FF:vbloth36]00[/color:vbloth36] (hexadecimal)
? hb_NumToHex( hb_bitAnd( 6736896, 0x[color=#FF0000:vbloth36]FF[/color:vbloth36]0000 ) / 0xFF00 ) ... |
Colors (SOLVED) | I added some new options
1, testing the color as a dialog-brush ( ON / OFF )
2. saving a color to INI pos. 1, this color is displayed at new start
3. copy to clipboard
4. some internal fixes
ctoas
what sections do You need ?
I can delete the unneeded parts for better reading.
[img]http:/CAdjust2.jpg[/img]
Downloa... |
Colors (SOLVED) | Hello Uwe, thanks for the reply.
It's already a good size for you to share. Now I turn around!
I appreciate the help! |
Colors (SOLVED) | I tested and added a horizontal solution
a little colorpicker and control-fields of the pickpositions as a info
are included as well.
Because of the 2. slider it is posssible to compare 2 colorlevels
like the image shows ( bright and dark )
< Create > a new color will update both sliders and all fields
I think it wil... |
Colors RptAddColumn | How add color on RptAddColumn ?
sample : list of products like Paint shop and I want to show the color in print
I saw with Printer class it is possible but with Report Class I not understood How make it |
Colors for TTreeView one for each item!? | Dear friends!Exists a way to change the colors of font at treeview but, one color for each item? |
Colors for TTreeView one for each item!? | anybody? |
Colors for TTreeView one for each item!? | Julio,Have you ever seen that on a tree control before? I doubt that it is possible as it would require a different font for each item.James |
Colors for TTreeView one for each item!? | [quote="James Bott":2jfm9l8a]Julio,
Have you ever seen that on a tree control before? I doubt that it is possible as it would require a different font for each item.
James[/quote:2jfm9l8a]Yes but, not in fivewin. I have used the setColor() method and setFont() too... but, has changed all tree.Really, I want to make t... |
Colors for TTreeView one for each item!? | [quote="James Bott":1b0d3u2e]Julio,
Have you ever seen that on a tree control before? I doubt that it is possible as it would require a different font for each item.
James[/quote:1b0d3u2e]James, I found same examples of this TreeView. All they are very pretty![img:1b0d3u2e]http://www.infovark.com/blog/wp-... |
Colors for TTreeView one for each item!? | Julio,Well, it seems that it can be done with the tree common control.I have found some information about doing this with C here:<!-- m --><a class="postlink" href="http://msdn.microsoft.com/en-us/library/bb761817(VS.85">http://msdn.microsoft.com/en-us/library/bb761817(VS.85</a><!-- m -->).aspxBut, it is beyond my know... |
Colors for TTreeView one for each item!? | Any news to this one?
I could use different fonts in TTreeView as well!
Regards,
Dietmar |
Colors in menus | Hi,
How to place a blue bar in the left side of the menus?
Thanks, |
Colors in menus | Vilian,
You need to modify MENUDRAWITEM() in source\winapi\menus.c |
Colors in menus | Hi Antonio,
Thanks. |
Colors of btnbmp | Hi,It's maybe a stange question but is it possible to give a color instead of a bitmap calling BTNBMP?I'm using this buttons in a touchscreen application and the customer can change the color of the buttons.What I did till now is creating a bitmap-drawing for each main color (YELLOW,RED, GREEN,...) with that color.The ... |
Colors of btnbmp | [code:17a7f0qh]#include "Fivewin.ch"
FUNCTION MAIN()
LOCAL oDlg, oBtn
LOCAL cVar := SPACE( 20 )
DEFINE DIALOG oDlg
@ 1, 1 GET cVar
@ 30, 10 BTNBMP oBtn PROMPT "Close";
ACTION oDlg:End()
oBtn:SetColor( CLR_RED, CLR_YELLOW )
... |
Colors of btnbmp | Thanks Enrico,It's working very nice!!Marc |
Colors on Multiple Page Printing Dialog | When I preview a multiple page report and then print it, the Dialog box that prompts for printing pages range has a white background color instead of the Dialog box color behind all the text. Can this be fixed? It looks a bit strange.
Dan |
Colors on Multiple Page Printing Dialog | Dan,
Could you please post a screenshot of it ?
Please use <!-- m --><a class="postlink" href="http://www.imageshack.us">http://www.imageshack.us</a><!-- m --> to host the image and place here the provided url. |
Colors on Multiple Page Printing Dialog | Hello Antonio,
The newer prev32.dll fixed the problem. I was using an older version of the prev32.dll.
Thanks
Dan |
Colossus es ahora LGPL | Hola,
Quería comunicaros que he liberado el código fuente de mi programa de contraseñas.
[url:ia2yc2lh]http://cincomundos.wordpress.com/2014/06/04/colossus-es-ahora-lgpl/[/url:ia2yc2lh]
Saludos,
José Luis |
Colossus es ahora LGPL | Jose Luís:
Muchas gracias por tu generosidad. |
Colossus es ahora LGPL | Gracias José Luis por el aporte.
Saludos,
Adhemar |
Colossus es ahora LGPL | Muchas gracias, és posible compilar con xHarbour ó solo en Harbour?
Gracias, saludos. |
Colossus es ahora LGPL | Muchas Gracias Jose
es un programa que le doy gran utilidad, lo llevo conmigo en el PEN, hoy dia uso tantas password y configuraciones que no podia recordar todas
muy generoso de tu parte |
Colour | Hi
oSheet:Cells( 5, 10 ):Value="*ABC"
How to say "*" in red and "ABC" in black.
Thanks
ACWoo
Using FWH + bcc582
|
Colour | oSheet:Cells(5,10):Characters(1,1):Font:Color := CLR_HRED
oSheet:Cells(5,10):Characters(2,3):Font:Color := CLR_BLACK |
Colour | Thanks
It works.
Regards
ACWoo |
Colouring TwBrowse ( Hernan's ) | Hello !
At this time TwBrowse have 2 possibilities to colour background of active row - logic lCellStyle . If choose ! lCellStyle , then all active row coloured with one color and the active cell too . I want to do something mix of both styles - paint active row with wanted color and underline with other color active... |
Colouring TwBrowse ( Hernan's ) | Hi ! After some tests I did what I wanted . Maybe it's not so good solution , but that works fine . In GoUp and GoDown methods I added some lines :
METHOD GoUp() CLASS TWBrowse
local nSkipped
local nLines := ::nRowCount()
// 2 new lines here
local nRowPrv := ::nRowPos
local nRecNew := nRecPrv := ( ::cA... |
Colouring TwBrowse ( Hernan's ) | Just curious if you are using Borland or MSVC as your C++ compiler. I would like to be able to re-compile TWbrowse with Microsoft but am hung up on the naitave .c code.
Rick Lipkin
SC Dept of Health, USA |
Colouring TwBrowse ( Hernan's ) | [quote="Rick Lipkin"]Just curious if you are using Borland or MSVC as your C++ compiler. I would like to be able to re-compile TWbrowse with Microsoft but am hung up on the naitave .c code.
Hi Rick ! I can't to run FWH with MS C++ compiler . It seems that my olds FWH libraries ( 2.5 ver of 2004 October ) are buggi... |
Colouring TwBrowse ( Hernan's ) | Also I did this my paint fully - as for DBF as for array . For mouse move too . It works fine . I did one method :
METHOD LineRepaint( nRowPrv, nRecPrv, nDirection ) CLASS TWBrowse
local nRecNew := if( upper( ::cAlias ) != "ARRAY", ( ::cAlias )->( recno() ), ::nAt )
default nDirection := 0
if ::lCellStyle
if nDir... |
Colouring TwBrowse ( Hernan's ) | Rimantas,
[quote="Rimantas":3tyfcv3r]It seems that my olds FWH libraries ( 2.5 ver of 2004 October ) are buggies for that compiler . Antonio , as ussual , promised to view about that. But that was promise ... So I leaved with BC ++.[/quote:3tyfcv3r]
Its an old version and new Microsoft compiler versions. We can't mak... |
Colouring TwBrowse ( Hernan's ) | [quote="Antonio Linares":1pa2em5r]Rimantas,
Its an old version and new Microsoft compiler versions. We can't make miracles, sorry <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) -->[/quote:1pa2em5r]
Excuse , Antonio , but I can't agree . When I buyed FWH I don't checked have... |
Colouring TwBrowse ( Hernan's ) | Rimantas,
Tell me a software product that does not have bugs. Software is constantly in evolution, towards a new version, with more functionality and as few bugs as possible.
FWH 2.4 version has more than two years. Our software is constantly evolving, and its quite difficult to support a two years old version. |
Colouring TwBrowse ( Hernan's ) | [Tell me a software product that does not have bugs. Software is constantly in evolution, towards a new version, with more functionality and as few bugs as possible.
FWH 2.4 version has more than two years. Our software is constantly evolving, and its quite difficult to support a two years old version.[/quote]
Al... |
Colouring TwBrowse ( Hernan's ) | Rimantas,
> At July-August I tried your libs with MS VC and found that they are buggy
Could you please describe what bugs are them and how to reproduce them ? Thanks. |
Colouring TwBrowse ( Hernan's ) | [quote="Antonio Linares":2por9vnz]Rimantas,
> At July-August I tried your libs with MS VC and found that they are buggy
Could you please describe what bugs are them and how to reproduce them ? Thanks.[/quote:2por9vnz]
Of course ! At first I tried to build FWH samples with MS VC ( mine Visual studio 98 , VC++ 6 ... |
Colouring TwBrowse ( Hernan's ) | [quote="Antonio Linares":54hcrqq1]Rimantas,
Tell me a software product that does not have bugs. Software is constantly in evolution, towards a new version, with more functionality and as few bugs as possible.
FWH 2.4 version has more than two years. Our software is constantly evolving, and its quite difficult to supp... |
Colouring TwBrowse ( Hernan's ) | [quote="Antonio Linares":2m2fnwaz]Rimantas,
> At July-August I tried your libs with MS VC and found that they are buggy
Could you please describe what bugs are them and how to reproduce them ? Thanks.[/quote:2m2fnwaz]
Excuse me , but maybe I'm not so patient <!-- s:-( --><img src="{SMILIES_PATH}/icon_sad.gif"... |
Column Function in XBROWSE | hi to all,
I would Like a column in XBROWSE with result of function:
[code=fw:yuxx3n48]<div class="fw" id="{CB}" style="font-family: monospace;"><br />...<br />oRs := FW_OpenRecordSet<span style="color: #000000;">(</span> oCn, tuple, <span style="color: #000000;">1</span> <span style="color: #000000;">)</span><... |
Column Function in XBROWSE | Try removing the single quotes around the function.
EMG |
Column Function in XBROWSE | hi Enrico, thank you for your help but if I remove single quote xbrowse goes in myfunction only one time.
I changed my prg:
[code=fw:1ivnykmi]<div class="fw" id="{CB}" style="font-family: monospace;"><br />...<br />oYORD := FW_OpenRecordSet<span style="color: #000000;">(</span> oCn, tuple, <span style="color: #0000... |
Column Function in XBROWSE | Sorry, let's wait for Rao advice.
EMG |
Column Function in XBROWSE | Hi ,
When i have to do that, i insert a column and use a code block with my function :
oCol:=oLbxp:inscol(4)
oCol:bStrData:={||QSTOCK(oRsp:Fields("NB"):Value)}
oCol:cHeader:="Total"
*
*
function QSTOCK(p)
return p/2
Philippe . |
Column Function in XBROWSE | Hola,
try to use a codeblock
[code=fw:2l0fs7ny]<div class="fw" id="{CB}" style="font-family: monospace;">oRs := FW_OpenRecordSet<span style="color: #000000;">(</span> oCn, tuple, <span style="color: #000000;">1</span> <span style="color: #000000;">)</span><br />@ <span style="color: #000000;">40</span>,<span ... |
Column Function in XBROWSE | hi thank you for your help
If I use codeblock, performance is very very slow.
I do not understand because If I use function 'dAAAAMMGGadata(DATA)' that works and with 'MRP00421(oYORD:Fields("FIELD1"):value,oCn)' not works |
Column Function in XBROWSE | COLUMNS "ONE", "TWO", "A", "B", { || MYFUNCTION(fieldC) } ; |
Column Function in XBROWSE | thank you Mr.Rao
but is very slowly with codeblock.
why in a XBROWSE 'dAAAAMMGGadata(DATA)' works and 'MYFUNCTION(DATA1)' no ? |
Column Function in XBROWSE | Speed depends purely on the implementation of the function.
[quote:9pm48u1x]why in a XBROWSE 'dAAAAMMGGadata(DATA)' works and 'MYFUNCTION(DATA1)' no ?[/quote:9pm48u1x]
If the function is a public function ( i.e., not a static function ) and all parameters are either public/private or field variables, "MYFUNCTION(PARA... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.