topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
font en folder | como hago para que los elementos de un folder usen un font determinado ?
(mas pequeño )
-------------- edito
perdon por la pregunta...
me respondo
no conseguia que los tamaños declarados en recursos funcionaran , declarandolo en el codigo si funciona |
font en listbox | Antonio buenso dias en este codigo
[code=fw:3lk718gi]<div class="fw" id="{CB}" style="font-family: monospace;"> <span style="color: #0000ff;">DEFINE</span> <span style="color: #0000ff;">DIALOG</span> oDlg <span style="color: #0000ff;">TITLE</span> <span style="color: #ff0000;">'reporte de stocks'</span> <span s... |
font en listbox | Me respondo a mi mismo
[code=fw:3jt56dr6]<div class="fw" id="{CB}" style="font-family: monospace;"> oLbx:<span style="color: #000000;">setFont</span><span style="color: #000000;">(</span> QFont<span style="color: #000000;">(</span> <span style="color: #ff0000;">"Courier New"</span>, <span style="co... |
font on disabled combo | Hello,
I've noticed that disabled combos change the font. When the combo gets enabled, then takes the font of the dialog.
Does anybody knows how to achieve that the disabled combos gets the same font of the others controls of the dialog. I'm not talking about the color of the font, I'm talking about the type and size o... |
font on disabled combo | I confirm this behaviour. |
font on disabled combo | Can you post a little sample showing the problem?
EMG |
font on disabled combo | Enrico look at second combo, looks like a bold font.
Thanks in advance.
#include "FiveWin.ch"
function Main()
local oDlg, oCbx,oCbx1
local cText := " "
local cText1 := "TWO"
DEFINE DIALOG oDlg FROM 10, 10 TO 20, 50 ;
TITLE "DropDown ComboBox Test"
@ 0.5, 1 COMBOBOX oCbx VAR cText STYLE CB... |
font on disabled combo | Please add:
[code=fw:2aqa7ht7]<div class="fw" id="{CB}" style="font-family: monospace;"> <span style="color: #00C800;">if</span> Empty<span style="color: #000000;">(</span> ::<span style="color: #000000;">oFont</span> <span style="color: #000000;">)</span><br /> <span style="color: #... |
font on disabled combo | Enrico,
Thanks for your interest.
I tried you hack but it does not work. Any other idea ?
Regards, |
font on disabled combo | It worked fine here. Did you recompile combobox.prg with your application?
EMG |
font on disabled combo | Hi all
I confirm whit this modify work fine. <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
thank |
font on disabled combo | Enrico,
I confirm that your changes has no effect in mu program. I use FWH 9.04. Maybe this is a very old version, and in recent ones the changes works fine.
Regards, |
font on disabled combo | Jose Luis,
Try this workaround:
[code=fw:2ngvvepd]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #0000ff;">ACTIVATE</span> <span style="color: #0000ff;">DIALOG</span> oDlg <span style="color: #0000ff;">CENTERED</span> ;<br /> <span style="color: #0000ff;">ON</span> <span style="color:... |
font release in dialogs | Antonio
i need to understand how fonts are released in dialogs <!-- s:? --><img src="{SMILIES_PATH}/icon_confused.gif" alt=":?" title="Confused" /><!-- s:? -->
ex
define dialog odlg...
define font afont ....
redefine button id 01 action ...,odlg:end() // here
activate dialog odlg
afont:end() // this should ... |
font release in dialogs | It is the correct way to release a font, as far as I know.
EMG |
font release in dialogs | Maybe i did not explain it correctly
in the sample below
ACTIVATE DIALOG ODLG CENTERED
AFONT:END() // this line not executed
ASIZE := {} // this line OK
OBRW:GetDisplayColsWidth(@ASIZE) // this line ok
Another question , the font is a local variable in my case, why isn't it destroyed automatically at the end... |
font release in dialogs | Richard,
We have not changed fonts management recently (I have just checked our private SVN). Maybe another change is related with the fonts.
How do you use aFont in your code ? You create it but I don't see where you use it and how, thanks <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile"... |
font release in dialogs | A Test, shows Font undefined, activated / deactivated
[code=fw:iifadwnk]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><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: #0000... |
font release in dialogs | Antonio
I use fonts essentially with xbrowse and gets in my dialogs
My concern is the end of the dialog , this is where some change has happened
I will publish a small test this morning to show the problem, i have identified it
Richard |
font release in dialogs | Antonio
this is a sample that demonstrates the problem, add rescheck.prg for the project
you will see that the font is still present and it should not
[code=fw:ne4tglfd]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"F... |
font release in dialogs | Richard,
Please comment out the xbrowse code section:
[code=fw:34xuue83]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">/*<br /><br /><br />REDEFINE XBROWSE oBrw ID 201 OF ODLG ;<br /> FONT aFont ;<br /> COLORS {|| { CLR_BLUE, CLR_WHITE } } ;<br />&... |
font release in dialogs | Antonio
without xbrowse, the font is released correct at the end of the dialog |
font release in dialogs | Richard,
We are checking it. We will provide you an answer in a few minutes... <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
Thanks, |
font release in dialogs | Richard,
Please remove this code from Class TXBrowse Method Initiate():
[code=fw:8q52eaz1]<div class="fw" id="{CB}" style="font-family: monospace;"> <span style="color: #B900B9;">/*<br /> if ::oFont != nil<br /> ::SetFont( ::oFont )<br /> else<br />  ... |
font release in dialogs | Antonio
Thanks , it works ok now
Richard |
font release in dialogs | Antonio
A similar problem exists with Gets but only when Memo is specified, in this case fonts are not released , when no memo clause is specified fonts get released
Ex : redefine get id xxx of odlg memo font afont
activate dialog odlg
afont:end() // has no effect in this case
Thanks for your help |
font release in dialogs | Richard,
In Class TMultiGet (source\classes\mget.prg) this code has to be removed:
[code=fw:ybxhbxex]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">METHOD</span> <span style="color: #00C800;">Default</span><span style="color: #000000;">(</span><span style="color: #000000;">... |
font size of code | Antonio,
would it be possible to increase the fontsize of
.codecontent {
font-size: 0.85em;
}
to 1em or even a little bit bigger?
Before syntax highlighting it was ok.
But nowi have difficulties to read the code.
It's determined in /styles/subsilver2/theme/stylesheet.css
Thanks and regards,
Detlef |
font size of code | Detlef,
We have just increased it to 1.2.
Please test it and let us know how it goes, thanks <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
font size of code | Antonio,
the code font with new size is now very good readable.
First i was disappointed because nothing seemed to be changed.
But after pressing F5 the code snippets were shown with bigger size.
Many thanks and regards,
Detlef |
font xBrowse desde recurso | Al crear un dialogo desde recursos, por defecto se usa el fuente definido en el dialogo al diseñarlo en el editor de recuros (normal).
Si dicho dialogo incorpora un xBrowse, al crearse el xbrowse hace que se cambie el font de todos los controles del dialogo por otro distinto al definido en el diálogo.
Por lo que veo,... |
font xBrowse desde recurso | +1 |
font xBrowse desde recurso | Hola
Creas el XBrowse entre el DEFINE DIALOG y el ACTIVATE o en el ON INIT del ACTIVATE? |
font xBrowse desde recurso | [quote="cnavarro":1srb8g5b]Hola
Creas el XBrowse entre el DEFINE DIALOG y el ACTIVATE o en el ON INIT del ACTIVATE?[/quote:1srb8g5b]
Hola Cristobal,
Si creo el xBrowse entre DEFINE y ACTIVATE, como el resto de controles.
[code=fw:1srb8g5b]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> <span style... |
font xBrowse desde recurso | Biel,
Yo lo hago asi :
[code=fw:wlixp22m]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> <span style="color: #0000ff;">DEFINE</span> <span style="color: #0000ff;">FONT</span> oFont <span style="color: #0000ff;">NAME</span> <span style="color: #ff0000;">"TAHOMA"</span> <span style="color: #0000ff;">S... |
font xBrowse desde recurso | Cierto, si especificas el font en el momento de definir el dialogo, funciona correctamente, al igual que si ejecutas oDlg:SetFont(). Debido a que oDlg:oFont ya no es nulo, y xBrowse no tiene neceisdad de ejecutar GetFont().
El tema es que yo no defino el font en el prg, simplemente espero que se utilice el que está de... |
font xBrowse desde recurso | Biel,
Tienes razon, no lo habia probado definiendo el font desde recursos, Ya es un tema para Antonio o el Sr. Rao.
Saludos, |
fontsize for print | I wish an exact fontsize for printing in Millimeters. In which way I can calculate this? |
footer de xbrowse.- | Saludos;
en un xbrowse quiero cambiar la justificaciones de los footers, uso el siguiente codigo:
[code=fw:2rq70sdc]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> oBrw:<span style="color: #000000;">lFooter</span> := .t.<br /> oBrw:<span style="color: #000000;">aCols</s... |
footer de xbrowse.- | Hola, prueba con esto, a ver si te resuelve:
For n:=1 to len(oBrw:aCols)
if oBrw:aCols[n]:nFooterType = AGGR_TOTAL
oBrw:aCols[n]:nFootStrAlign := 1 //AL_RIGHT
endif
Next |
footer de xbrowse.- | Francisco;
Muchas Gracias por responder, pero igual no le hace caso a nFootStrAlign mi footer <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
[img:3ayolx1k]http://www.mag071.com/images/footer.JPG[/img:3ayolx1k] |
footer de xbrowse.- | Estimado:
creo que te falta esto
[code=fw:3o6fhc3p]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> 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;... |
footer de xbrowse.- | Armando ;
Agradecido por la repuesta, pero igual le coloco al xBrowse lo que me indicastes y sigue sin querer hacer la Justificación, como uno quiere.
Gracias. |
footer de xbrowse.- | Mario, este código me funciona correctamente: (10.06)
Lo que se me viene a la mente es que debes usar el objeto columna en vez del No. de Col. No sé. Quizás por la versión.
oCol2 = oBrw2:AddCol()
oCol2:bEditValue = { || (cWork2)->Debe }
oCol2:cEditPicture = "@Z 9,999,999,999.99"
oCol2:nEditType = 0 //no edit... |
footer de xbrowse.- | Mario intenta asi
[code=fw:1ddledx2]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">[</span><span style="color: #000000;">4</span><span style="color: #000000;">]</span>:<span style="color: #000000;">bfooter</span>:=<spa... |
footer de xbrowse.- | estimado:
estoy intrigado por lo que te sucede, te copio mi código en donde calculo el promedio de la lista.
puede que te falte el WITH OBJECT
[code=fw:3la78an7]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> <span style="color: #0000ff;">REDEFINE</span> <spa... |
footer de xbrowse.- | Gracias por las respuestas;
pero igual no he podido hacer justifaciones en los footer , lo extraño que use el mismo ejemplo para el FWH 10.11 de fecha 12/Dic/2010 y luego use el FWH 11.04 28/Abr/2011.
Usando el siguiente codigo
[code=fw:2g7x7r82]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> oBrw:... |
footer de xbrowse.- | Mr. Mag071
It is surprising.
XBrowse aligns Data, Headers and Footers of all numeric columns to RIGHT by default. There is no need for us to specify align type.
Here is a self contained example:
[code=fw:3ncmktd5]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <... |
footer on xbrowse | I want insert the footer on a xbrowse for only two fields on six and seven column and make the total of each, I made :
@ 1, 1 XBROWSE oRLbx OF oFld:aDialogs[5] ;
SIZE 280,60 PIXEL //CLASS TXbrWin7()
Ut_BrwRowConfig7( oRLbx )
oRLbx:lColDividerCom... |
footer on xbrowse | oRLbx: lFooter:= .T.
Ciao |
footer on xbrowse | NOT RUN
i MADE ALSO
WITH OBJECT oRLbx
WITH OBJECT oRLbx:aCols[ 7 ]
:cEditPicture := '99,999.99'
:lTotal := .t.
:nTotal := 0
... |
footers on listbox | Can I see an sample source code of footers with listbox ( wbrowse) please ?
thanks in advance |
for Antonio Linares | Antonio, excuse me, I have twice sent the letter to the address <!-- e --><a href="mailto:alinares@fivetechsoft.com">alinares@fivetechsoft.com</a><!-- e -->, but have not received the answer. There can be your address has changed? |
for Antonio Linares | Natter,
We have our emails accounts routed to gmail to filter the spam and your emails were automatically sent to the spam folder.
We have located your emails and we are processing them. Many thanks! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
for Caro | Dear Mr. Caro,
we contacted you on May 13th and May 16th regarding the 2017 INTERNATIONAL CONFERENCE Harbour - Fivewin – answering to your used address.
Is this address correct?
With dear greetings
Otto |
for Mr Nages Xbrowse add a line | Can I add a record ( dbf or array) beetween two records of a xbrowse ?
sample
mmmmmmmmmmmmmmmmmmmmmmmmmmmmm
nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn
I wish
mmmmmmmmmmmmmmmmmmmmmmmmmmmmm
bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb
nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn |
for Mr Nages Xbrowse add a line | If array,
AIns( oBrw:aArrayData, oBrw:nArrayAt, aNewRow, .t. )
If DBF you should have a field indicating the serial order and index on that field.
Now when you add a new line, you should set this field to a value which is between the values you want to insert.
Before:
INDEXFLD OTHER DATA
100 AAAAAAAAAAA... |
for Mr Nages Xbrowse add a line | ok thank I try |
for Mr. Nages | Dear Mr. Nages,
Is this fixed in latest build?
<!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=3&t=28854">viewtopic.php?f=3&t=28854</a><!-- l -->
Thank you <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> <!-- s:D --><img sr... |
for Mr. Nages - Incremental seek and filter xBrowse | Mr. Nages,
I am bit lost with those features, and also there is no info at wiki or Fivewin´s manuals:
XBrowse natively implemented for long for RDD, ADO, Array.
1. Incremental Seek
2. Incremental wild seek'
3. Incremental filter
4. Incremental wild filter ( anywhere )
Please, could you explain the differences and ... |
for Mr. Nages - xBrowse TDolphin Incremental seek and filter | Mr Nages,
<!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=3&t=26427">viewtopic.php?f=3&t=26427</a><!-- l -->
best regards, |
for Mr. Nages ADO SELECT for logical fields | Dear Mr. Nages,
In ADO, when issuing SELECT * FROM WHERE FIELDACTIVE = TRUE, this will work under MySQL but will fail under MSSQL, as requieres 'TRUE', with [b:rcdbhue4]'[/b:rcdbhue4] required.
How do I write all sql commands for being compatible for all RDBMS?.
Thank you. |
for Mr. Nages ADO SELECT for logical fields | Elvira,
Try SELECT * FROM WHERE FIELDACTIVE = 1 or SELECT * FROM WHERE FIELDACTIVE = 0 |
for Mr. Nages ADO SELECT for logical fields | I agree with AHF |
for Mr. Nages ADO SELECT for logical fields | Mr. Nages,
And this will be valid for all RDMBS?. |
for Mr. Nages ADO SELECT for logical fields | Elvira,
As far as I know besides ADS there inst any support in any SQL server for Boolean type.
Normally we use Number (Oracle) or Bit all others so I think it would be safe to use 1 or 0. |
for Mr. Nages ADO SELECT for logical fields | Works for those RDBMSs which support BIT datatype to represent boolean values, eg mssql, mysql, access, etc. that too if you choose BIT datatype for the field to represent boolean values. ADO recognizes these BIT fields as adBoolean,
Well known exception is Oracle, which does not have BIT or BOOLEAN field type. With o... |
for Mr. Nages and ADO exp - Access error record is too large | Hello Mr. Nages,
I am getting this error:
Error description: (DOS Error -2147352567) WINOLE/1007 Record is too large. (0x80004005): Microsoft Access Database Engine
Args:
[ 1] = N -2
But I don´t exceed Access limitations: 250 fields or a field length more than 250 chars.
This is a sample:
[code=fw:... |
for Mr. Nages and ADO exp - Access error record is too large | Lucas,
Could it be this:
[quote:a5gk93f9]The following error is the result when you Update or Add a Text field in a table and the total record size exceeds about 2000 bytes for all fields combined (not counting Memo fields[/quote:a5gk93f9] |
for Mr. Nages and ADO exp - Access error record is too large | Hello,
At ADO Table creation, where I indicate WITH COMPRESSION?.
Thank you. |
for Mr. Rao - xBrowse | Dear Mr Rao,
In WAN connections we get xBrowse quite slow. The rest of the operations with DBFs are fine.
Would be possible for xBrowse to only load records needed to fit the screen size, and when scrolling load more?.
Or a kind of paging?.
I hope this feature will be very helpfull for all users, as Cloud and WAN a... |
for Mr. Rao - xBrowse | [quote:1vq5pq26]Would be possible for xBrowse to only load records needed to fit the screen size, and when scrolling load more?.
[/quote:1vq5pq26]
Thats what it does actually. |
for Mr. Rao - xBrowse | Present day's communication speeds are far better than they used be a decade back.
More than a decade back I was using xbrowse on WAN with [b:3gc66lg0]very low[/b:3gc66lg0] speeds of 64 kbps without any problem,
But we do need to take care of fine tuning the dbf and what we are doing with xbrowse.
xbrowse:
1) do not ... |
for Mr. Rao - xBrowse | Dear Mr. Rao,
We did those changes with no luck. Dbfs have less than 1.000 records.
What markee style is the fastest?.
Also, at the mean time do yo use xbrowse in Wan enviroments and Dbf databases?.
Thank you very much. |
for Mr. Rao - xBrowse | 1000 records dbf should not be a problem.
MarqueeStyle: Any other than WIN7 look
I suggest first let us test with a DBF of 1000 records.
For test make sure it does not have any deleted records.
Use DBFCDX
Let it have only one Tag in the cdx file. Preferably on a small numeric column.
Prepare a small simple xbrowse. L... |
for Uwe | Hello Uwe,
thank you for your tools.
Would you please be so kind to actualize the download list.
This is what I have so far:
<!-- m --><a class="postlink" href="http://www.pflegeplus.com/fw_downloads/Btntools3.zip">http://www.pflegeplus.com/fw_downloads/Btntools3.zip</a><!-- m -->
<!-- m --><a class="postlink" href... |
for Uwe | Hello Otto,
More Downloads :
<!-- m --><a class="postlink" href="http://www.pflegeplus.com/fw_downloads/Brwtools5.zip">http://www.pflegeplus.com/fw_downloads/Brwtools5.zip</a><!-- m --> ( xBrowse-Tools )
<!-- m --><a class="postlink" href="http://www.pflegeplus.com/fw_downloads/Bartools2.zip">http://www.pflegeplus.com... |
for a shop of paper | I 'making a app for a Paper Shop and the final user wish
show a paper with meausre into a dialog
I need to show on a dialog a white bitmap or Image
with two lines cross on center and the possibility to resize
it and the possibility to have the measure nHeight, nWidth |
for a shop of paper | Silvio,
I can show a solution BUT
paper-formats are sold with [color=#0000FF:1z4jr9no][b:1z4jr9no]fixed[/b:1z4jr9no][/color:1z4jr9no] sizes.
I never used a free defined papersize ( that is unusual ).
[img:1z4jr9no]http://www.pflegeplus.com/pictures/dinformat.jpg[/img:1z4jr9no]
Best regards
Uwe <!-- ... |
for a shop of paper | I must show it as product
I made a test now |
for a shop of paper | this a test
[img:3cosl4j8]http://img690.imageshack.us/img690/3328/adq3.jpg[/img:3cosl4j8]
I wish the final user can drag this obj and set the mm
I found a software like this that set the doors or windows see this please
[img:3cosl4j8]http://www.finestra3000.com/files/posscurovicent&... |
for each | Hola a todos quisiera saber si esto se puede hacer con for each, o es sólo para array unidimensionales:
[code=fw:3gcub2ty]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">For</span> z = <span style="color: #000000;">1</span> <span style="color: #0000ff;">to</span> len<span style... |
for each | Hola Surgon
esta es la sistaxys
[code=fw:2lrfoiv8]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">FOR</span> EACH <element> IN <array>|<object>|<string><br /> <statements><br /> <span style="color: #000000;">[</span>LOOP<span style="color: #000000;">&... |
for each | Daniel gracias por la explicación, ahora lo entiendo
Luis |
for my culture | Hi,
what kind of database used for your FWH application (DBF,SQL, ADS...) ?
how many users are connected to the database (about) ?
thank to all |
for my culture | Nobody helps me? |
for my culture | damianodec
There is no good answer to your question .. Things to consider for the type of database to use depends on your audience and their infrastructure.
My personal opinion is this :
1) .dbf\cdx is great for local applications to be run on a single computer or shared on a network for a small group of people. If ... |
for my culture | [quote="Rick Lipkin":3ma9r40p]
My personal favorite is to use ADO to be able to manipulate Sql Client\Server databases such as Ms Access, MS Sql Server, Oracle, etc. Generally you code once and only change the 'connection string' for the different RDMS. As a bonus Microsoft gives you the ADO connectivity client for Ms ... |
for my culture | Rimantas
Thank you for your correction ..
Rick |
for my culture | Thanks,
So, do you think that FWH & mysql is a very good choice? |
for my culture | damianodec
There is nothing wrong with MySql+Fwh .. many successful friends here use MySql and Daniel Garcia-Gil's TDolphan Library
<!-- m --><a class="postlink" href="http://tdolphin.blogspot.com/">http://tdolphin.blogspot.com/</a><!-- m -->
Rick Lipkin |
for my culture | I followed the MySQL path an never looked back. TDolphin helps a lot. |
for my culture | Hello
if you plan is use more than one database engine (postgres, oracle, mysql server, etc), the best way is ADO, the big difference between ADO and Mysql API (used by TDolphin) with Mysql API you dont need install any ODBC client, not need create DSN, only need a dll and link a library |
for my culture | LAN
DBFCDX
twenty users
an average of 50,000 records modified every day
about a hundred touched tables every day in about 900 tables
bye |
for my culture | ciao Marco,
in una LAN con tre sedi distaccate pensi sia una buona scelta?
grazie per l'eventuale risposta. |
for xHarbour users: xharbour-clang | file: readme.txt
This package contains executables and essential libraries compiled in cLang for use with Borland family compilers.
[code=fw:rcoyzg0h]<div class="fw" id="{CB}" style="font-family: monospace;">Test results:<br /><br /><span style="color: #000000;">tests</span>/speedtst.prg<br /><br />with this clang pa... |
for your compiler break | <!-- m --><a class="postlink" href="https://www.youtube.com/watch?v=DPUZCy2Emyc">https://www.youtube.com/watch?v=DPUZCy2Emyc</a><!-- m -->
Best regards,
Otto |
for your compiler break | It's great |
for. Mr. Rao | Mr. Rao,
Hope you are well from hospital.
I would like to know which is the best way to do the following with xBrose:
First, Load all the records to a dbf to an array(), but use the inverse order (first the last record)
Second, xBrowse certain fields of the dbf loaded into the array.
Thank you very much. |
for. Mr. Rao | Mgsoft
First me byst wishes to mr Rao, i did not know he was at hospital. Hope he is ok and we shall see him soon here in this forum.
As per your questions , i do this frequently
1. Load dbf into an array
while ! eof()
aadd(TVISU,{field1,file2,filed3,ctod(field4) ....}) // You can also transform field dates ..e... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.