topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
set filter con xbrowse da error | Gracias por la sugerencia, la verdad que no se me había ocurrido.Voy a probar.Ricardo |
set filter con xbrowse da error | Eduardo, el error persiste, pude ver que el valor de bFilter es lógico y al dejar la función como está da error porque intenta evaluar algo que no es bloque de código, le hice esta modificación y me está funcionando aparentemente.METHOD DelRepos() CLASS TXBrowse local lRepos := .f. local cFilter, bFilter if ::nDa... |
set filter con xbrowse da error | Ricardo,usando: SET FILTER TO Customer->Married que es un campo lógico, el ejemplo que te hemos proporcionado funciona correctamente, sin necesidad de cambiar nada en la Clase TXbrowse. |
set filter en wbrowse | Quiero implementar un filtro en un browse, el mismo esta declarado como:REDEFINE LISTBOX oLbx FIELDS (oStock:calias)->remito,(oStock:calias)->tipo,(oStock:calias)->trem,transform((oStock:calias)->fecha,"@d"),; etc etcel filtro tiene que ser del campo (oStock:calias)->tipoY no puedo hacerlo funcionar, necesito filtrar ... |
set filter muy lento con muchos registros | Hasta ahora me funciona bien un listbox de una tabla que esta con set filter bajo un criterio de busqueda, pero en red de area local y arriba de 1000 registros la cosa se pone muy lenta, habrá la forma de que un listbox muestre la información desde una tabla de memoria u otra forma de acelerar el proceso??
gracias des... |
set filter muy lento con muchos registros | Para red local y un tamaño medio de registros mejor te olvidas de set filter, pues es extremadamente lento. Yo utilizo índices CDX con scopes y es inmediato con miles de registros y en red local. |
set filter muy lento con muchos registros | los filtros con ADS , son rapidos. |
set filter muy lento con muchos registros | +1
CDX + scopes seria tu solucion mas facil y rapida.
Saludos |
set filter muy lento con muchos registros | olá,
veja o método :SetFilter() da classe Listbox (WBrowse)
ele filtra os registros no Listbox baseado em índices existentes |
set filter muy lento con muchos registros | Yuri podrías poner un pequeño ejemplo
Gracias |
set filter muy lento con muchos registros | veja na pasta samples:
..\samples\gallery\onemany\onemany.prg |
set filter muy lento con muchos registros | Hola,
También puedes utilizar Scopes con indices NTX:
ORDSCOPE(0,Desde) // inicio
ORDSCOPE(1,Hasta) // final
dbgotop()
Un saludo
Ernesto |
set filter muy lento con muchos registros | A mí me funciona bastante rápido con tablas de hasta 4.000 registros crear un indice en memoria:
[code=fw:3fnexi4e]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #0000ff;">INDEX</span> <span style="color: #0000ff;">ON</span> Art->Art_Cod + Art->Art_Nom <span style="color: #0000ff;">TO</s... |
set font using TextOut or ExtTextOut | I need to "paint" text "over" a bitmap.
Using the tsay() classes I get white background. If I use the TextOut functions I can successfully paint my text. My question is, I want to control the font before I TextOut.
How can I do this? |
set font using TextOut or ExtTextOut | Don,
have a look (as an example) at window.prg:
[code=fw:9hm71bbz]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">METHOD</span> ShowToolTip<span style="color: #000000;">(</span><span style="color: #000000;">)</span> <span style="color: #00C800;">CLASS</span> TWindow</di... |
set font using TextOut or ExtTextOut | Don,
[img:1ctv37u0]http://www.pflegeplus.com/IMAGES/Textout1.jpg[/img:1ctv37u0]
External font- and text-define from multiline gets
[img:1ctv37u0]http://www.pflegeplus.com/IMAGES/Textout2.jpg[/img:1ctv37u0]
The code-part, extracted from the tool :
( there is still more included in the... |
set font using TextOut or ExtTextOut | [quote="don lowenstein":3k7ozovr]I need to "paint" text "over" a bitmap.
Using the tsay() classes I get white background. [/quote:3k7ozovr]
FWH 14.04 fixes the problem. |
set index to... | Hello,Using: SET INDEX TO &cDbfName, returns run time error: Open error stack calls: OrdListAdd(0) I'm using dbf / cdx.What should I change? (I'm using the same function for opening ordered dbf in my clipper / xBase++ applications)Thanks,Moshe Yarden |
set index to... | Moshe,Try it this way:SET INDEX TO ( CurDir() + "\" + cDbfName ) |
set index to... | Antonio,Thanks.I have tried you suggestion, and many other different ways, with no success.The USE do finds the file. The problem is just with SET INDEX.Do you have any sample uses SET INDEX?Regards,Moshe Yarden |
set index to... | Moshe,Are you testing it on the emulator or on the real device ? Please review fwppc\samples\TestBrwS.prg |
set index to... | Antonio,Thanks. It is working now.I'm using it on the emulator. However, I think that the reason has to do with the the ... VIA "DBFCDX" .I did try it with: DbUseArea( .T., "DBFCDX", cDbfName, @cAlias, .F., )However I didn't call: REQUEST DBFCDXNow it is ok.Thanks again,Moshe Yarden |
set index to... | Moshe,glad to know it is working fine <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
set key not run on win 10 ? | I have
SetKey( VK_F8, {||oApp():HidePanelLeft(oApp():oSplit)} )
and not run on win 10 why ?
on w7 run ok
do you Know alternative ? |
set key not run on win 10 ? | This works fine for me under Win10:
[code=fw:jysxx399]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"fivewin.ch"</span><br /><br /><span style="color: #00C800;">Function</span> Main<span style="color: #000000;">(</span><span st... |
set message to | Using a set message to oWnd with a variable in the message. When the variable changes the message changes however when I mouse over the message the variable reverts back to the old variable. When I no longer mouse over it the goes to the new variable. How do I prevent it from reverting to the old variable when I mouse... |
set message to | Try
[code=fw:zu7kc97a]<div class="fw" id="{CB}" style="font-family: monospace;">oWnd:<span style="color: #000000;">oMsgBar</span>:<span style="color: #000000;">cMsgDef</span> = <span style="color: #ff0000;">"Changed"</span></div>[/code:zu7kc97a]
EMG |
set message to | Harvey,
This is a strange issue. I have dealt with it before and I never quite understood it. There actually two messages--I think one is supposed to be a temp message that is displayed during an activity, and the other is the previous message which is then displayed again after the activity.
This is from my notes:
-... |
set message to | James and Enrico:
This is the code I got working. Needed to set the set message before anything worked.
Also if i added 2007 to the set message it display the old variables when I moused over.
[code=fw:2g2nych8]<div class="fw" id="{CB}" style="font-family: monospace;"> SET <span style="color: #0000ff;">MESSAGE</spa... |
set message to | Harvey,
>But it works fine just need to give up the theme on the bar.
So, it sounds like there may be a bug when using themes?
James |
set message to | I assume so. as soon as 2007 is added to the set message it reverts to the old variable on the mouse over. |
set message to | I suggest trying this sample program to change the default message. This works correctly and the same way whether Themed or not and whether 2007 style is used or not.
[code=fw:abmg3da1]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">'... |
set message vs statusbar | tengo una ventana con un browse y defino una barra de mensajes ....
cuando hago una busqueda incremental del browse me muestra lo que escribo en la barra de mensajes, y el browse se mueve automaticamente, todo esto funciona ok, pues resulta que quiero hacer lo mismo pero en lugar de usar la set message quiero usar la s... |
set message vs statusbar | se me olvido aclarar que la uso en una MDICHILD,aki dejo el codigo
DEFINE WINDOW oWndHija MDICHILD OF oWnd TITLE "Módulo de Control de Empresas"
DEFINE STATUSBAR oStatusBar PROMPTS cDefMsg OF oWndHija
@ 0,0 listbox oBEmp .....
oBEmp:bSeek := {|lRet| oBEmp:DbfSeek(.T.) }
oBEmp:bUpdateBuffer:= ... |
set message vs statusbar | ya resuleto !!
Gracias.
Salu2.
Pako |
set message vs statusbar | Paco,
bien! <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) --> |
set region | have you an sample to see only a region of a dialog ? |
set region | Hello Sylvio,
what do you mean with region ?
Just to show some controls ?
When it is, what you mean, just do like : oSay1:Hide(), oGet1:Hide,
oBtn1:Hide() ...
Regards
Uwe <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" alt=":lol:" title="Laughing" /><!-- s:lol: --> |
set region | no, layer dialog....but perhaps i found the solution |
set scope | Please send english samples of set scope to my gmail.
This my scope : set filter to &(cfilter)
[code:343773uf]
a_fields[1]:="4->me_mc_serl"
a_fields[2]:="4->me_mc_brn"
a_vars[1]:=V_me_SERIAL
a_vars[2]:=V_mc_brn
cValue := ""
cFilter := ""
For i := 1 t... |
set scope | i think this is the correct one :-
set filter to &cfilter
or
set filter to (cfilter) |
set scope | Hola amigos, uso el set scope y cuando compilo (estoy pasando de fw a fwh25)no reconoce el comando, es un problema de la versión de xharbour es la simples 99.3? Ó hay que poner algún include específico de xharbour para que lo reconozca
Gracias |
set scope | USE EL COMANDO:
ORDSCOPE() |
set scope | Gracias Karina, después que envié el mail probé como vos indicas y funcionó bien, había presupuesto que si no andaba set scope tampoco lo haría ordscope().
Luis |
set spinner on combobox | [img:2uhbmj7x]https://i.postimg.cc/8z7Vdy8c/combo.png[/img:2uhbmj7x]
when the user change the second combobox , the procedure must change the value of the tget
[code=fw:2uhbmj7x]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br /> @ <span style="color: #000000;">480</span>,<spa... |
set spinner on combobox | Mire en \samples\XBRCALEN.PRG si le ayuda. No entiendo muy bien lo que quieres hacer. Un ejemplo completo siempre es bienvenido para las críticas.
Look in \samples\XBRCALEN.PRG if it helps. I don't quite understand what you want to do. A complete example is always welcome for criticism.
Regards, saludos. |
set spinner on combobox | [quote="karinha":1dbk42y3]Mire en \samples\XBRCALEN.PRG si le ayuda. No entiendo muy bien lo que quieres hacer. Un ejemplo completo siempre es bienvenido para las críticas.
Look in \samples\XBRCALEN.PRG if it helps. I don't quite understand what you want to do. A complete example is always welcome for criticism.
Rega... |
set spinner on combobox | Caro Silvio, mira se yuda:
[code=fw:88j1iwms]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">// \SAMPLES\SETSPINN.PRG - By Silvio Falconi.</span><br /><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"fivewin.ch"</span><br /><span style="co... |
set spinner on combobox | hi Silvio,
i would try aGet[8]:bMin
[code=fw:1id4twi1]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">METHOD</span> Spinner<span style="color: #000000;">(</span> bUp, bDown, bMin, bMax <span style="color: #000000;">)</span> <span style="color: #00C800;">CLASS</span> TGet... |
set spinner on combobox | [quote="karinha":295t90kx]Caro Silvio, mira se yuda:
[code=fw:295t90kx]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">// \SAMPLES\SETSPINN.PRG - By Silvio Falconi.</span><br /><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"fivewin.ch"</... |
set spinner on combobox | Silvio:
[code=fw:gajrh4tp]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">Function</span> ResetValore<span style="color: #000000;">(</span>nForma,nMetodo, nValore,oControls<span style="color: #000000;">)</span><br /> <span style="color: #00C800;">Do</span> <span style=... |
set spinner on combobox | [quote="Cgallegoa":2oc9ip5u]Silvio:
[code=fw:2oc9ip5u]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">Function</span> ResetValore<span style="color: #000000;">(</span>nForma,nMetodo, nValore,oControls<span style="color: #000000;">)</span><br /> <span style="color: #00C... |
set2010SkinMenu | Where I can found set2010SkinMenu function ?
I need the same color to set Toolbar on my application |
set2010SkinMenu | Silvio,
I already answered you to your email, not sure if anyhow you need that code.
BTW, HAPPY BIRTHDAY to Silvio!!! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
set2010SkinMenu | Happy Birthday!
EMG |
set2010SkinMenu | Happy Birthday Mr Silvio <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) --> |
set2010SkinMenu | [quote="nageswaragunupudi":htm85bef]Happy Birthday Mr Silvio <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) -->[/quote:htm85bef]
+1 |
set2010SkinMenu | thanks to all.... |
set2010SkinMenu | Silvio: Happy Birthday
Saludos
Ruben Dario Fernandez |
setCopies(n) | Hola,
Funciona setCopies?
estoy usandolo y no me genera 2 copias de la pagina
fwh 10.11
saludos,
Mauricio |
setCopies(n) | [code=fw:3uuotjd4]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> <span style="color: #0000ff;">PRINTER</span> oPrn <span style="color: #0000ff;">NAME</span> <span style="color: #ff0000;">"BLA BLA BLA"</span><br /><br /> oPrn:<span style="color: #000000;">SetPage</span><span sty... |
setCopies(n) | he leido aca en el foro que esto no funciona en cualquier impresora. <!-- s:-( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":-(" title="Sad" /><!-- s:-( -->
salu2 |
setCopies(n) | [quote="carlos vargas":2nbjqzti]he leido aca en el foro que esto no funciona en cualquier impresora. <!-- s:-( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":-(" title="Sad" /><!-- s:-( -->
salu2[/quote:2nbjqzti]
Porque mi querido amigo?
Saludos. |
setCopies(n) | en PRIMOPDF no funciona,
no me genera la copia
saludos,
Mauricio |
setCopies(n) | [quote="Mauricio":3hop1xqk]en PRIMOPDF no funciona,
no me genera la copia
saludos,
Mauricio[/quote:3hop1xqk]
Mauricio intentas com PDF FACTORY porfa.
Saludos. |
setDialogEsc( lOnlOff ) FWH8.08 | setDialogEsc( lOnlOff ) no me funciona esta funcion, siempre se cierran los dialogos al presionar ESC, tengo FWH 8.08la seteo en ON o OFF (.t. o .f.) y la coloco al principio de mi aplicacion, nunca hace nada, la he colocado en varias partes del sistema y nada, lo que me quedo fue colocarla en el bolsillo y olvidarme d... |
setDialogEsc( lOnlOff ) FWH8.08 | Puedes hacer asi, STATIC lSalida := .F.[code:bxe146oc]
REDEFINE BUTTON oBtn OF oDlg ;
ACTION( lSalida := .T., oDlg:End() )
ACTIVATE DIALOG odlg CENTERED ;
VALID( lSalida )
[/code:bxe146oc] |
setDialogEsc( lOnlOff ) FWH8.08 | gracias karinha, es muy buena idea tambien, pero lo ideal seria que aprovechando la utilidad de dicha funcion no tengas que hacer el VALID en todos los dialogos... |
setLastkey(0) ? ( Solved! ) | Dear Antonio, James, Uwe and friends!!
How, after pressed ESC, I can set the last key pressed to another, or simply, cancel your execution? |
setLastkey(0) ? ( Solved! ) | Somebody knows?
Exists any way to do? |
setLastkey(0) ? ( Solved! ) | Julio,
>How, after pressed ESC, I can set the last key pressed to another, or simply, cancel your execution?
I am not sure what you are asking. Can you explain in more detail, maybe with an example?
James |
setLastkey(0) ? ( Solved! ) | James,
Thanks for you answer!
In determinate screen of my system, when the user press the key and if this key is escape, I want to cancel this pressed key... like setLastKey(0) of clipper. This is into a get! |
setLastkey(0) ? ( Solved! ) | Julio from Brazil,
Maybe you could have a look at [url:js2tlbck]http://forums.fivetechsupport.com/viewtopic.php?f=3&t=14241[/url:js2tlbck].
This discussion was started by me about a button-problem but it seemed to be a Lastkey()-problem.
Maybe you can find the necessary information there.
Good luck.... |
setLastkey(0) ? ( Solved! ) | Julio and Michel,
>In determinate screen of my system, when the user press the key and if this key is escape, I want to cancel this pressed key... like setLastKey(0) of clipper. This is into a get!
This is not standard windows behavior. When the user is typing into a GET and they press the escape key, the dialog shou... |
setLastkey(0) ? ( Solved! ) | James,
You remember my topic about the incremental search when click any header of a xbrowse?
So, I need this solution because when the user is typing into a get and press the escape key, it closes the dialog and I want only that closes the object get! |
setLastkey(0) ? ( Solved! ) | James,
LastKey() was a function, already existing in Clipper, wasn't it ?
Julio,
Here is an example of the way I use to handle the Escape-key in my dialog box :
[code:1heqkch7]LOCAL cGET1 := SPACE(10)
LOCAL cGET2 := SPACE(10)
LOCAL oDlg
LOCAL cNiv := 0
DEFINE DIALOG oDlg NAME "DLGBOX" OF oWnd
REDEFIN... |
setLastkey(0) ? ( Solved! ) | Julio,
Maybe you could put into the [b:30h9366q]valid[/b:30h9366q] of the Get (or dialog box, or window),
[code:30h9366q]
if GetKeyState(VK_ESCAPE)
<Esc was pressed, do something>
else
<Esc wasn't pressed, do something else>).
endif
[/code:30h9366q]
Can't comment on lastkey() as has never used it tho... |
setLastkey(0) ? ( Solved! ) | Hua,
I have a long experience that GetKeyState() isn't always working like I want to.
That's why I use a combination of GetKeyState() and LastKey() as you can see in the other topic [url:3g5qded6]http://forums.fivetechsupport.com/viewtopic.php?f=3&t=14241[/url:3g5qded6] which also handles about this p... |
setLastkey(0) ? ( Solved! ) | My situation is:
I have an object "get" that opens up on a xbrowse, into a dialog that was open on top of another (as modal)
Where, when focused on "get", I press the ESC key he should only one run "oGet:end()", but closes the dialog where is the xbrowse too!
I would just finish the object "get", without closing the ... |
setLastkey(0) ? ( Solved! ) | __keyboard() |
setLastkey(0) ? ( Solved! ) | Julio,
As someone else mentioned, use the VALID clause of the dialog.
activate dialog oDlg valid (oGet:end(), .f.)
But it is not quite so simple because you also need to be able to close the dialog and when you always return .f. from the valid clause then you can't close the dialog.
So you will need to do something... |
setLastkey(0) ? ( Solved! ) | James,
I see it! But this is not work!
I saw the solution mentioned but it does not serve.
When I am typing anything into "get", I can access anything in the dialog because it is empowered normally.
So if I press the escape key, only closes the get and not the dialog together |
setLastkey(0) ? ( Solved! ) | Michel,
>LastKey() was a function, already existing in Clipper, wasn't it ?
Yes, you are right and I confused this with the var oGet:nLastKey, so my previous comments all were refering to oGet:nLastKey. Sorry.
The Lastkey() function is probably a (x)Harbour function. The problem may be that Windows does not send all... |
setLastkey(0) ? ( Solved! ) | Julio,
>So if I press the escape key, only closes the get and not the dialog together
I am not sure what you are saying again. I thought that you wanted to close the GET without closing the dialog? Are you now saying that you want to close them both at the same time?
Did you try my example VALID?
James |
setLastkey(0) ? ( Solved! ) | James,
> How I execute the KEYBOARD command of clipper? |
setLastkey(0) ? ( Solved! ) | [quote="James Bott":26h35wtz]__keyboard()[/quote:26h35wtz]
Thank you James! That's it! |
setalpha() ?? | I'am testing the testimg.prg and found a SetAlpha() function, but i dont know how to use it.
any help about this function ?
tks |
setalpha() ?? | Romeo ,
a [color=#0000FF:2lfwdz54]Alphablended[/color:2lfwdz54] Image is needed, in case You want to show a [color=#0000FF:2lfwdz54]SHADOW[/color:2lfwdz54]
To show a simple background transparent, You can use a normal color
SetAlpha( .F. ) shows the transparent-area of a ALPHAblended image as a BLACK color
I don't kno... |
setalpha() ?? | many many tks
R |
setalpha() ?? | Uwe,
many thanks |
setballon(.t.) | Hi,Does anyone use this feature from 2007 in production?.Best regards, |
setballon(.t.) | Yes. I use. Balloon tips looks better. We can give a toggle to the user to choios the kind of tips, with or without balloon.I also use built-in facilitty to specify header, icon and color for tooltips. |
setcheck en xbrowse | Hola compañeros la consulta es como hago para que setcheck() funcione correctamente en un caso como el siguiente, dónde el campo vista es lógico
[code=fw:2ew7bakg]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> <span style="color: #0000ff;">REDEFINE</span> <span style="color: #0000ff;">XBROWSE</span... |
setcheck en xbrowse | SurGom, a mi me funciona como lo haces pero dandole doble click sobre la celda del SetCheck, esten o no las demas celdas editables, saludos... <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" title="Shocked" /><!-- s:shock: --> |
setcheck en xbrowse | Prueba con:
[code=fw:2ed8qauh]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> WITH OBJECT oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">[</span> <span style="color: #000000;">1</span> <span style="color: #000000;">]</span><br /> &nb... |
setcheck en xbrowse 1 | Y en este caso como hago para que en el setcheck pueda usarlo cuando toda la fila no sea editable
[code=fw:1moc6pyo]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> xbrNumFormat<span style="color: #000000;">(</span> <span style="color: #ff0000;">"E"</span>, .T. <span style="color: #0000... |
setcolor on a get with a conditional checkbox | To All
I have two simple fields I want to setcolor to ??? ( grey out ) when the top checkbox is .t.
[url=http://imageshack.us/photo/my-images/857/disable.jpg/:2810jv46][img:2810jv46]http://img857.imageshack.us/img857/6995/disable.jpg[/img:2810jv46][/url:2810jv46]
I have two onclick funct... |
setcolor on a get with a conditional checkbox | [code=fw:1xmdkjoy]<div class="fw" id="{CB}" style="font-family: monospace;">oGet:<span style="color: #000000;">lDisColors</span> = .T.<br />oGet:<span style="color: #000000;">nClrTextDis</span> = ...<br />oGet:<span style="color: #000000;">nClrPaneDis</span> = ...</div>[/code:1xmdkjoy]
EMG |
setcolor on a get with a conditional checkbox | Enrico
Your suggestion worked to disabled the text, however I am zero'ing out the fields with spaces .. in this view you see the text is grayed out and the background is still white .. what I want to do is blank out the fields and set the background to a disabled gray ..
[url=http://imageshack.us/photo/my-ima... |
setcolor on a get with a conditional checkbox | Hello Rick
deactivate lDisColors and use nClrTextDis and nClrPaneDis
[code=fw:3m4gqdoa]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"fivewin.ch"</span><br /><br /><span style="color: #00C800;">function</span> main<span style="col... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.