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;"> &nbsp; <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 style="color: #0000ff;">SIZE</span> <span style="color: #000000;">800</span>, <span style="color: #000000;">600</span><br /><br /><br />&nbsp; &nbsp; @ <span style="color: #000000;">05</span>, <span style="color: #000000;">05</span> <span style="color: #0000ff;">LISTBOX</span> oLbx <span style="color: #0000ff;">VAR</span> cLbx <span style="color: #0000ff;">OF</span> oDlg ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">SIZE</span> <span style="color: #000000;">750</span>, <span style="color: #000000;">500</span>;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">ITEMS</span> aItems<br /><br /><br />&nbsp; &nbsp; @ <span style="color: #000000;">520</span>, <span style="color: #000000;">190</span> <span style="color: #0000ff;">BUTTON</span> aBtn<span style="color: #000000;">&#91;</span><span style="color: #000000;">01</span> <span style="color: #000000;">&#93;</span> <span style="color: #0000ff;">PROMPT</span> <span style="color: #ff0000;">"Salir"</span> <span style="color: #0000ff;">OF</span> oDlg ;<br />&nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">ACTION</span> oDlg:<span style="color: #000000;">end</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #0000ff;">SIZE</span> <span style="color: #000000;">200</span>, <span style="color: #000000;">70</span><br /><br />&nbsp; &nbsp; <span style="color: #0000ff;">ACTIVATE</span> <span style="color: #0000ff;">DIALOG</span> oDlg <span style="color: #0000ff;">CENTERED</span><br />&nbsp;</div>[/code:3lk718gi] me funciona ben pero quisiera ponerle una fuente monospace es posible ? saludos Wilson
font en listbox
Me respondo a mi mismo [code=fw:3jt56dr6]<div class="fw" id="{CB}" style="font-family: monospace;"> &nbsp; &nbsp;oLbx:<span style="color: #000000;">setFont</span><span style="color: #000000;">&#40;</span> QFont<span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"Courier New"</span>, <span style="color: #000000;">10</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span></div>[/code:3jt56dr6] saludos Wilson
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 of the font. In the image you can see what I'm talking about. The font of the combos from 1 to 6 are disabled with a WHEN clause. The combo of the 7th radiobutton are enabled. [img:3cainnej]http&#58;//alanit&#46;com/wordpress/wp-content/uploads/2011/10/2011-11-16_191137&#46;png[/img:3cainnej] Regards, José Luis
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 CBS_DROPDOWN ; ITEMS { "ONE", "TWO", "THREE" } ; ON CHANGE oDlg:SetText( cText ) @ 2, 1 COMBOBOX oCbx1 VAR cText1 STYLE CBS_DROPDOWN ; ITEMS { "ONE", "TWO", "THREE" } ; ON CHANGE oDlg:SetText( cText1 ) when .f. ACTIVATE DIALOG oDlg CENTERED return nil procedure AppSys // Xbase++ requirement return
font on disabled combo
Please add: [code=fw:2aqa7ht7]<div class="fw" id="{CB}" style="font-family: monospace;"> &nbsp; <span style="color: #00C800;">if</span> Empty<span style="color: #000000;">&#40;</span> ::<span style="color: #000000;">oFont</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">DEFINE</span> <span style="color: #0000ff;">FONT</span> ::<span style="color: #000000;">oFont</span> <span style="color: #0000ff;">NAME</span> GetSysFont<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #0000ff;">SIZE</span> <span style="color: #000000;">0</span>, <span style="color: #000000;">-12</span><br />&nbsp; &nbsp;<span style="color: #00C800;">endif</span></div>[/code:2aqa7ht7] in New() method of TComboBox class, just before [code=fw:2aqa7ht7]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">if</span> nStyle == CBS_DROPDOWN</div>[/code:2aqa7ht7] statement. Antonio, is it the right fix? EMG
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: #0000ff;">INIT</span> oCbx1:<span style="color: #000000;">oGet</span>:<span style="color: #000000;">SetFont</span><span style="color: #000000;">&#40;</span> oCbx:<span style="color: #000000;">oFont</span> <span style="color: #000000;">&#41;</span><br /> </div>[/code:2ngvvepd] Enrico, Your fix looks as a good one, thanks! Included for FWH 11.11 <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
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 release the font it is not, in order to release the font i need to code this way redefine button id 01 action ..afont:end(),odlg:end() This is what is consuming memory making the change like above is releasing properly the font.... Am i missing something ?
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 of the program ? Antonio , is there a change in releasing fonts in fwh 10.7 ?
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" /><!-- s:-) -->
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: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><span style="color: #00C800;">LOCAL</span> oDlg, oFont, oFont1, oSay, lFontEnd := .F.<br /><br /><span style="color: #B900B9;">// Undefined Fonts are shown with Default-Values( no Error-Message ! )</span><br /><br /><span style="color: #0000ff;">DEFINE</span> <span style="color: #0000ff;">DIALOG</span> oDlg <span style="color: #0000ff;">FROM</span> <span style="color: #000000;">5</span>, <span style="color: #000000;">5</span> <span style="color: #0000ff;">TO</span> <span style="color: #000000;">240</span>, <span style="color: #000000;">400</span>  <span style="color: #0000ff;">TITLE</span> <span style="color: #ff0000;">"Fonttest"</span>    <span style="color: #0000ff;">PIXEL</span>  <span style="color: #0000ff;">FONT</span> oFont<br /><br /><span style="color: #B900B9;">// Font < oFont > is UNDEFINED, Default-values are used !!!</span><br /><br />@ <span style="color: #000000;">40</span>, <span style="color: #000000;">30</span> <span style="color: #0000ff;">SAY</span> oSay <span style="color: #0000ff;">PROMPT</span> <span style="color: #ff0000;">"Main-Dialog with UNDEFINED Font"</span> <span style="color: #0000ff;">OF</span> oDlg ;<br /><span style="color: #0000ff;">PIXEL</span> <span style="color: #0000ff;">FONT</span> oFont ;<br /><span style="color: #0000ff;">SIZE</span> <span style="color: #000000;">100</span>, <span style="color: #000000;">25</span> <span style="color: #0000ff;">COLOR</span> <span style="color: #000000;">0</span><br /><br />@ <span style="color: #000000;">80</span>,<span style="color: #000000;">120</span> <span style="color: #0000ff;">BUTTON</span> <span style="color: #ff0000;">"&Exit"</span> <span style="color: #0000ff;">size</span> <span style="color: #000000;">50</span>, <span style="color: #000000;">20</span> <span style="color: #0000ff;">FONT</span> oFont <span style="color: #0000ff;">OF</span> oDlg <span style="color: #0000ff;">PIXEL</span> ;<br /><span style="color: #0000ff;">ACTION</span> oDlg:<span style="color: #000000;">End</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br /><span style="color: #0000ff;">ACTIVATE</span> <span style="color: #0000ff;">DIALOG</span> oDlg <span style="color: #0000ff;">CENTERED</span> ;<br /><br />lFontEnd := .F.<br /><span style="color: #B900B9;">// 1. Dialog-Test with UNDEFINED Font</span><br />TEST_FONT<span style="color: #000000;">&#40;</span>lFontEnd, oFont1<span style="color: #000000;">&#41;</span><br /><br />lFontEnd := .T.<br /><span style="color: #B900B9;">// 2. Dialog-Test with DEFINED Font</span><br />TEST_FONT<span style="color: #000000;">&#40;</span>lFontEnd, oFont1<span style="color: #000000;">&#41;</span><br /><br />lFontEnd := .F.<br /><span style="color: #B900B9;">// 3. Dialog-Test with ENDED Font in 2.Dialog-Test</span><br />TEST_FONT<span style="color: #000000;">&#40;</span>lFontEnd, oFont1<span style="color: #000000;">&#41;</span><br /><br /><span style="color: #00C800;">RETURN</span><span style="color: #000000;">&#40;</span> <span style="color: #00C800;">NIL</span> <span style="color: #000000;">&#41;</span><br /><br /><span style="color: #B900B9;">// -----------------</span><br /><br /><span style="color: #00C800;">FUNCTION</span> TEST_FONT<span style="color: #000000;">&#40;</span>lFontEnd, oFont1<span style="color: #000000;">&#41;</span><br /><span style="color: #00C800;">LOCAL</span> oDlg1, oSay1<br /><br /><span style="color: #00C800;">IF</span> lFontEnd = .T.<br />      oFont1 := TFont<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>:<span style="color: #00C800;">New</span><span style="color: #000000;">&#40;</span><span style="color: #ff0000;">"Arial"</span>,<span style="color: #000000;">0</span>,<span style="color: #000000;">-16</span>,.F.,.T.,<span style="color: #000000;">0</span>,<span style="color: #000000;">0</span>,<span style="color: #000000;">0</span>,.T. <span style="color: #000000;">&#41;</span><br /><span style="color: #00C800;">ENDIF</span><br /><br /><span style="color: #0000ff;">DEFINE</span> <span style="color: #0000ff;">DIALOG</span> oDlg1 <span style="color: #0000ff;">FROM</span> <span style="color: #000000;">5</span>, <span style="color: #000000;">5</span> <span style="color: #0000ff;">TO</span> <span style="color: #000000;">240</span>, <span style="color: #000000;">400</span>  <span style="color: #0000ff;">TITLE</span> <span style="color: #ff0000;">"Fonttest"</span> <span style="color: #0000ff;">PIXEL</span>  <span style="color: #0000ff;">FONT</span> oFont1 <br /><br /><span style="color: #00C800;">IF</span> lFontEnd = .T. <br />      @ <span style="color: #000000;">40</span>, <span style="color: #000000;">30</span> <span style="color: #0000ff;">SAY</span> oSay1 <span style="color: #0000ff;">PROMPT</span> <span style="color: #ff0000;">"Test-Dialog with DEFINED Font"</span> <span style="color: #0000ff;">OF</span> oDlg1 ;<br />      <span style="color: #0000ff;">PIXEL</span> <span style="color: #0000ff;">FONT</span> oFont1 ;<br />      <span style="color: #0000ff;">SIZE</span> <span style="color: #000000;">150</span>, <span style="color: #000000;">25</span> <span style="color: #0000ff;">COLOR</span> <span style="color: #000000;">0</span><br /><span style="color: #00C800;">ELSE</span><br />      @ <span style="color: #000000;">40</span>, <span style="color: #000000;">30</span> <span style="color: #0000ff;">SAY</span> oSay1 <span style="color: #0000ff;">PROMPT</span> <span style="color: #ff0000;">"Test-Dialog with UNDEFINED Font ( oFont1 )"</span> <span style="color: #0000ff;">OF</span> oDlg1 ;<br />      <span style="color: #0000ff;">PIXEL</span> <span style="color: #0000ff;">FONT</span> oFont1 ;<br />      <span style="color: #0000ff;">SIZE</span> <span style="color: #000000;">150</span>, <span style="color: #000000;">25</span> <span style="color: #0000ff;">COLOR</span> <span style="color: #000000;">0</span><br /><span style="color: #00C800;">ENDIF</span><br /><br />@ <span style="color: #000000;">80</span>,<span style="color: #000000;">120</span> <span style="color: #0000ff;">BUTTON</span> <span style="color: #ff0000;">"&Exit Test"</span> <span style="color: #0000ff;">size</span> <span style="color: #000000;">50</span>,<span style="color: #000000;">20</span>  <span style="color: #0000ff;">OF</span> oDlg1 <span style="color: #0000ff;">FONT</span> oFont1 <span style="color: #0000ff;">PIXEL</span> ;<br /><span style="color: #0000ff;">ACTION</span> oDlg1:<span style="color: #000000;">End</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br /><span style="color: #0000ff;">ACTIVATE</span> <span style="color: #0000ff;">DIALOG</span> oDlg1 <span style="color: #0000ff;">CENTERED</span> ;<br /><br /><span style="color: #00C800;">IF</span> lFontEnd = .T. <br /><br />      oFont1:<span style="color: #000000;">End</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #B900B9;">// !!!!!!!!</span><br /><br />      MsgAlert<span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"Next Test will show oFont1 "</span> + CRLF + ;<br />          <span style="color: #ff0000;">"UNDEFINED !!!"</span> + CRLF + ;<br />          <span style="color: #ff0000;">"with oFont1:End()"</span>, <span style="color: #ff0000;">"Attention"</span> <span style="color: #000000;">&#41;</span><br /><span style="color: #00C800;">ENDIF</span><br /><br /><span style="color: #00C800;">RETURN</span><span style="color: #000000;">&#40;</span> <span style="color: #00C800;">NIL</span> <span style="color: #000000;">&#41;</span><br /> </div>[/code:iifadwnk] [img:iifadwnk]http&#58;//www&#46;pflegeplus&#46;com/pictures/fontrel&#46;jpg[/img:iifadwnk] Best Regards Uwe <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" alt=":lol:" title="Laughing" /><!-- s:lol: -->
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;">"FiveWin.ch"</span><br /><br /><span style="color: #00C800;">function</span> Main<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><span style="color: #00C800;">LOCAL</span> ATAB &nbsp; := <span style="color: #000000;">&#123;</span><span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; LSAVE &nbsp;:= .F., ;<br />&nbsp; &nbsp; &nbsp; ODLG,OBRW,AFONT<br /><br />AADD<span style="color: #000000;">&#40;</span>ATAB,<span style="color: #000000;">&#123;</span><span style="color: #ff0000;">"NUM1"</span>,<span style="color: #ff0000;">"NUM2"</span>,<span style="color: #ff0000;">"NUM3"</span><span style="color: #000000;">&#125;</span><span style="color: #000000;">&#41;</span><br /><br />SetResDebug<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br /><span style="color: #0000ff;">DEFINE</span> <span style="color: #0000ff;">DIALOG</span> ODLG <span style="color: #0000ff;">RESOURCE</span> <span style="color: #ff0000;">"TESTFONT"</span> <span style="color: #0000ff;">TITLE</span> <span style="color: #ff0000;">"TEST FONTS"</span><br /><span style="color: #0000ff;">DEFINE</span> <span style="color: #0000ff;">FONT</span> aFONT <span style="color: #0000ff;">NAME</span> <span style="color: #ff0000;">"Arial"</span> <span style="color: #0000ff;">SIZE</span> <span style="color: #000000;">0</span>,<span style="color: #000000;">-12</span><br /><br /><span style="color: #0000ff;">REDEFINE</span> <span style="color: #0000ff;">XBROWSE</span> oBrw <span style="color: #0000ff;">ID</span> <span style="color: #000000;">201</span> <span style="color: #0000ff;">OF</span> ODLG ;<br />&nbsp; &nbsp;<span style="color: #0000ff;">FONT</span> aFont ;<br />&nbsp; &nbsp;COLORS <span style="color: #000000;">&#123;</span>|| <span style="color: #000000;">&#123;</span> CLR_BLUE, CLR_WHITE <span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#125;</span> ;<br />&nbsp; &nbsp;array ATAB <span style="color: #0000ff;">AUTOCOLS</span> AUTOSORT<br /><br />oBrw:<span style="color: #000000;">nMarqueeStyle</span> &nbsp; &nbsp; &nbsp; := MARQSTYLE_HIGHLROW<br />oBrw:<span style="color: #000000;">lColDividerComplete</span> := .t.<br />oBrw:<span style="color: #000000;">nColDividerStyle</span> &nbsp; &nbsp;:= LINESTYLE_LIGHTGRAY<br />oBrw:<span style="color: #000000;">nRowDividerStyle</span> &nbsp; &nbsp;:= LINESTYLE_LIGHTGRAY<br /><br />oBrw:<span style="color: #000000;">bClrheader</span> := <span style="color: #000000;">&#123;</span>|| <span style="color: #000000;">&#123;</span> CLR_HBLUE, CLR_WHITE <span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#125;</span><br /><br /><span style="color: #0000ff;">REDEFINE</span> <span style="color: #0000ff;">BUTTON</span> <span style="color: #0000ff;">ID</span> <span style="color: #000000;">01</span> <span style="color: #0000ff;">OF</span> ODLG <span style="color: #0000ff;">ACTION</span> <span style="color: #000000;">&#40;</span>LSAVE := .T., ODLG:<span style="color: #000000;">END</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span><br /><span style="color: #0000ff;">REDEFINE</span> <span style="color: #0000ff;">BUTTON</span> <span style="color: #0000ff;">ID</span> <span style="color: #000000;">02</span> <span style="color: #0000ff;">OF</span> ODLG <span style="color: #0000ff;">ACTION</span> <span style="color: #000000;">&#40;</span>LSAVE := .F., ODLG:<span style="color: #000000;">END</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span><br /><br /><span style="color: #0000ff;">ACTIVATE</span> <span style="color: #0000ff;">DIALOG</span> ODLG <span style="color: #0000ff;">CENTERED</span><br />AFONT:<span style="color: #000000;">END</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br />CHECKRES<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><span style="color: #00C800;">return</span> <span style="color: #00C800;">nil</span><br /><br /><span style="color: #00D7D7;">#include</span> <windows.h><br /><span style="color: #00D7D7;">#include</span> <commctrl.h><br /><span style="color: #00D7D7;">#include</span> <richedit.h><br /><br />LANGUAGE LANG_ENGLISH,SUBLANG_ENGLISH_US<br /><br />TESTFONT <span style="color: #0000ff;">DIALOG</span> DISCARDABLE <span style="color: #000000;">21</span>, <span style="color: #000000;">13</span>, <span style="color: #000000;">283</span>, <span style="color: #000000;">183</span><br /><span style="color: #0000ff;">STYLE</span> WS_POPUP|DS_MODALFRAME|WS_CAPTION|WS_SYSMENU|WS_VISIBLE<br /><span style="color: #0000ff;">FONT</span> <span style="color: #000000;">10</span>, <span style="color: #ff0000;">"Tahoma"</span><br /><span style="color: #000000;">&#123;</span><br />&nbsp; CONTROL <span style="color: #ff0000;">""</span>, <span style="color: #000000;">201</span>, <span style="color: #ff0000;">"tXbrowse"</span>, 0x00b00000, <span style="color: #000000;">0</span>, <span style="color: #000000;">1</span>, <span style="color: #000000;">276</span>, <span style="color: #000000;">151</span><br />&nbsp; CONTROL <span style="color: #ff0000;">"OK"</span>, IDOK, <span style="color: #ff0000;">"Button"</span>, BS_DEFPUSHBUTTON|WS_TABSTOP, <span style="color: #000000;">0</span>, <span style="color: #000000;">160</span>, <span style="color: #000000;">42</span>, <span style="color: #000000;">21</span><br />&nbsp; CONTROL <span style="color: #ff0000;">"Annuler"</span>, IDCANCEL, <span style="color: #ff0000;">"Button"</span>, WS_TABSTOP, <span style="color: #000000;">240</span>, <span style="color: #000000;">160</span>, <span style="color: #000000;">42</span>, <span style="color: #000000;">21</span><br /><span style="color: #000000;">&#125;</span><br /><br />&nbsp;</div>[/code:ne4tglfd] if you modify the tst program this way [code=fw:ne4tglfd]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br /><span style="color: #0000ff;">REDEFINE</span> <span style="color: #0000ff;">BUTTON</span> <span style="color: #0000ff;">ID</span> <span style="color: #000000;">01</span> <span style="color: #0000ff;">OF</span> ODLG <span style="color: #0000ff;">ACTION</span> LSAVE := .T. , AFONT:<span style="color: #000000;">END</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>, ODLG:<span style="color: #000000;">END</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><span style="color: #0000ff;">REDEFINE</span> <span style="color: #0000ff;">BUTTON</span> <span style="color: #0000ff;">ID</span> <span style="color: #000000;">02</span> <span style="color: #0000ff;">OF</span> ODLG <span style="color: #0000ff;">ACTION</span> LSAVE := .F. , AFONT:<span style="color: #000000;">END</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>, ODLG:<span style="color: #000000;">END</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br />&nbsp;</div>[/code:ne4tglfd] the font is released ...
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 />&nbsp; &nbsp;FONT aFont ;<br />&nbsp; &nbsp;COLORS {|| { CLR_BLUE, CLR_WHITE } } ;<br />&nbsp; &nbsp;array ATAB AUTOCOLS AUTOSORT<br /><br />oBrw:nMarqueeStyle &nbsp; &nbsp; &nbsp; := MARQSTYLE_HIGHLROW<br />oBrw:lColDividerComplete := .t.<br />oBrw:nColDividerStyle &nbsp; &nbsp;:= LINESTYLE_LIGHTGRAY<br />oBrw:nRowDividerStyle &nbsp; &nbsp;:= LINESTYLE_LIGHTGRAY<br /><br />oBrw:bClrheader := {|| { CLR_HBLUE, CLR_WHITE } }<br /><br />*/</span><br />&nbsp;</div>[/code:34xuue83] and see if the font problem persists, thanks <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
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;"> &nbsp; <span style="color: #B900B9;">/*<br />&nbsp; &nbsp;if ::oFont != nil<br />&nbsp; &nbsp; &nbsp; ::SetFont( ::oFont )<br />&nbsp; &nbsp;else<br />&nbsp; &nbsp; &nbsp; ::GetFont()<br />&nbsp; &nbsp;endif<br />&nbsp; &nbsp;*/</span><br />&nbsp;</div>[/code:8q52eaz1] as the font was already assigned from: [code=fw:8q52eaz1]<div class="fw" id="{CB}" style="font-family: monospace;"><br />&nbsp; &nbsp;<span style="color: #00C800;">if</span> hDlg != <span style="color: #00C800;">nil</span><br />&nbsp; &nbsp; &nbsp; <span style="color: #00C800;">Super</span>:<span style="color: #000000;">Initiate</span><span style="color: #000000;">&#40;</span> hDlg <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;...<br />&nbsp;</div>[/code:8q52eaz1] some lines above, so the font was assigned an extra time. With such fix, your code is working fine and the font gets properly released <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
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;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #00C800;">CLASS</span> TMultiGet<br /><br />&nbsp; &nbsp;<span style="color: #B900B9;">/*<br />&nbsp; &nbsp;if ::oFont != nil<br />&nbsp; &nbsp; &nbsp; ::SetFont( ::oFont )<br />&nbsp; &nbsp;else<br />&nbsp; &nbsp; &nbsp; ::SetFont( ::oWnd:oFont )<br />&nbsp; &nbsp;endif<br />&nbsp; &nbsp;*/</span><br /><br /><span style="color: #00C800;">return</span> <span style="color: #00C800;">nil</span><br />&nbsp;</div>[/code:ybxhbxex] Many thanks for your feedback <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
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, esto es debido que en el momento de crear el xBrowse, el dialogo todavia no esta incializado y no tiene font definido. En el método new de xBrose se ejecuta el siguiente código [code=fw:kyvj08tp]<div class="fw" id="{CB}" style="font-family: monospace;"><br />   <span style="color: #00C800;">if</span> oWnd:<span style="color: #000000;">oFont</span> == <span style="color: #00C800;">nil</span><br />         oWnd:<span style="color: #000000;">GetFont</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />      <span style="color: #00C800;">endif</span><br />      ::<span style="color: #000000;">oFont</span> := oWnd:<span style="color: #000000;">oFont</span></div>[/code:kyvj08tp] que hace que varie el font de todo el dialogo. Se os ocurre alguna alternativa sin necesidad de añadir un oDlg:SetFont, ni cambiar xBrowse.
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="color: #0000ff;">DEFINE</span> <span style="color: #0000ff;">DIALOG</span> oDlg <span style="color: #0000ff;">RESOURCE</span> <span style="color: #ff0000;">"TPV"</span><br />   ...<br />   <span style="color: #0000ff;">REDEFINE</span> <span style="color: #0000ff;">SAY</span> <span style="color: #0000ff;">PROMPT</span> DToC<span style="color: #000000;">&#40;</span>Date<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span> <span style="color: #0000ff;">ID</span> <span style="color: #000000;">403</span> <span style="color: #0000ff;">OF</span> oDlg<br />   ...<br />   oBrw := txBrowse<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>:<span style="color: #00C800;">New</span><span style="color: #000000;">&#40;</span> oDlg <span style="color: #000000;">&#41;</span><br />   WITH OBJECT oBrw<br />      :<span style="color: #000000;">cAlias</span>:=<span style="color: #ff0000;">'det'</span><br />      ...<br />      :<span style="color: #000000;">SetRdd</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />      :<span style="color: #000000;">CreateFromResource</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">301</span><span style="color: #000000;">&#41;</span><br />   END<br />   <span style="color: #0000ff;">ACTIVATE</span> <span style="color: #0000ff;">DIALOG</span> oDlg <span style="color: #0000ff;">CENTERED</span> <span style="color: #0000ff;">ON</span> <span style="color: #0000ff;">INIT</span> <span style="color: #000000;">&#40;</span> IniBtn<span style="color: #000000;">&#40;</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span> <span style="color: #0000ff;">VALID</span> <span style="color: #000000;">&#40;</span>Salir<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span><br /> </div>[/code:1srb8g5b]
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;">SIZE</span> <span style="color: #000000;">0</span>,<span style="color: #000000;">-12</span><br />  <br />  <span style="color: #0000ff;">DEFINE</span> <span style="color: #0000ff;">DIALOG</span> oDlg <span style="color: #0000ff;">RESOURCE</span> <span style="color: #ff0000;">"Calendario"</span> <span style="color: #0000ff;">TITLE</span> cTitulo <span style="color: #0000ff;">ICON</span> oApp:<span style="color: #000000;">aRes</span><span style="color: #000000;">&#91;</span> ICON_FINGER <span style="color: #000000;">&#93;</span> <span style="color: #0000ff;">FONT</span> oFont<br /><br />  <span style="color: #0000ff;">REDEFINE</span> <span style="color: #0000ff;">SAY</span> ....... <span style="color: #0000ff;">OF</span> oDlg<br /><br />  <span style="color: #0000ff;">REDEFINE</span> <span style="color: #0000ff;">GET</span> ..... <span style="color: #0000ff;">OF</span> oDlg<br /><br />  <span style="color: #0000ff;">REDEFINE</span> <span style="color: #0000ff;">XBROWSE</span> ..... <span style="color: #0000ff;">OF</span> oDlg<br /><br />  <span style="color: #0000ff;">REDEFINE</span> <span style="color: #0000ff;">BTNBMP</span> .... <span style="color: #0000ff;">OF</span> oDlg<br /><br />  <span style="color: #0000ff;">ACTIVATE</span> <span style="color: #0000ff;">DIALOG</span> oDlg ..<br /><br /> </div>[/code:wlixp22m] Como vez cuando le asigno el font al dialogo al crearlo me hereda el mismo font para todos los demas controles que pertenescan a el dialogo. Espero te sirva. Saludos, Albeiro,
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á definido en el fichero de recursos. Entiendo que la función DialogBox()( que se ejeucta al realizase el activate del dialogo), lee el recurso y recupera el font definido en él, siempre que oFont sea NIL, y eso deja de ser cierto si antes hemos creado un xBrowse, puesto que ha necistado del font, y al ejecutar GetFont asigna el font al dialogo. O algo así, realemente el que sabe exactamente lo que hace es Antonio. Puedo sobrevivir con ese comportamiento, solo era por si habia alguna forma sin definir el font, para que todos los objetos contenidos en el dialogo usasen el font especificado en el editor de recursos.
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 />&nbsp; &nbsp;oBrw:<span style="color: #000000;">lFooter</span> &nbsp; := .t.<br />&nbsp; &nbsp;oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">&#91;</span> <span style="color: #000000;">2</span> <span style="color: #000000;">&#93;</span>:<span style="color: #000000;">bFooter</span> &nbsp; &nbsp; := <span style="color: #000000;">&#123;</span> || <span style="color: #ff0000;">" "</span>+Ltrim<span style="color: #000000;">&#40;</span> Str<span style="color: #000000;">&#40;</span> Len<span style="color: #000000;">&#40;</span>::<span style="color: #000000;">aData</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#125;</span><br />&nbsp; &nbsp;oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">&#91;</span> <span style="color: #000000;">2</span> <span style="color: #000000;">&#93;</span>:<span style="color: #000000;">oFooterFont</span> := oFootFont<br /><br />&nbsp; &nbsp;oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">&#91;</span> <span style="color: #000000;">3</span> <span style="color: #000000;">&#93;</span>:<span style="color: #000000;">nFooterType</span> := AGGR_TOTAL<br />&nbsp; &nbsp;oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">&#91;</span> <span style="color: #000000;">3</span> <span style="color: #000000;">&#93;</span>:<span style="color: #000000;">bLClickFooter</span>:= <span style="color: #000000;">&#123;</span> |r,c,f,o| ::<span style="color: #000000;">VerListines</span><span style="color: #000000;">&#40;</span> r, c, f, o <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#125;</span><br /><br />&nbsp; &nbsp;oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">&#91;</span> <span style="color: #000000;">4</span> <span style="color: #000000;">&#93;</span>:<span style="color: #000000;">nFootStrAlign</span> := AL_RIGHT<br />&nbsp; &nbsp;oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">&#91;</span> <span style="color: #000000;">4</span> <span style="color: #000000;">&#93;</span>:<span style="color: #000000;">nFooterType</span> := AGGR_TOTAL<br />&nbsp; &nbsp;oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">&#91;</span> <span style="color: #000000;">5</span> <span style="color: #000000;">&#93;</span>:<span style="color: #000000;">nFooterType</span> := AGGR_TOTAL<br />&nbsp; &nbsp;oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">&#91;</span> <span style="color: #000000;">6</span> <span style="color: #000000;">&#93;</span>:<span style="color: #000000;">nFooterType</span> := AGGR_TOTAL<br /><br /><br />&nbsp; &nbsp;oBrw:<span style="color: #000000;">MakeTotals</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;oBrw:<span style="color: #000000;">SetFocus</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />&nbsp;</div>[/code:2rq70sdc] en todas las columnas con footer tipo AGGR_TOTAL , me la justifica a la izquierda por defecto y no me toma el cambio. agradecido como siempre por las ayudas prestadas en este foro.
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&#58;//www&#46;mag071&#46;com/images/footer&#46;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;">&#91;</span> <span style="color: #000000;">3</span> <span style="color: #000000;">&#93;</span>:<span style="color: #000000;">nTotal</span>   := <span style="color: #000000;">0</span> <br />   oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">&#91;</span> <span style="color: #000000;">3</span> <span style="color: #000000;">&#93;</span>:<span style="color: #000000;">lTotal</span>   := .t.<br /><br />   oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">&#91;</span> <span style="color: #000000;">3</span> <span style="color: #000000;">&#93;</span>:<span style="color: #000000;">nFooterType</span> := AGGR_TOTAL<br />   oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">&#91;</span> <span style="color: #000000;">3</span> <span style="color: #000000;">&#93;</span>:<span style="color: #000000;">bLClickFooter</span>:= <span style="color: #000000;">&#123;</span> |r,c,f,o| ::<span style="color: #000000;">VerListines</span><span style="color: #000000;">&#40;</span> r, c, f, o <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#125;</span><br /><br />   oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">&#91;</span> <span style="color: #000000;">4</span> <span style="color: #000000;">&#93;</span>:<span style="color: #000000;">nFootStrAlign</span> := AL_RIGHT<br />   oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">&#91;</span> <span style="color: #000000;">4</span> <span style="color: #000000;">&#93;</span>:<span style="color: #000000;">nFooterType</span> := AGGR_TOTAL<br />   oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">&#91;</span> <span style="color: #000000;">5</span> <span style="color: #000000;">&#93;</span>:<span style="color: #000000;">nFooterType</span> := AGGR_TOTAL<br />   oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">&#91;</span> <span style="color: #000000;">6</span> <span style="color: #000000;">&#93;</span>:<span style="color: #000000;">nFooterType</span> := AGGR_TOTAL<br /> </div>[/code:3o6fhc3p] saludos
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 editable oCol2:nDataStrAlign := 1 oCol2:cHeader = "Movimiento"+CRLF+"Del Debe" oCol2:nWidth = 116 oCol2:lTotal := .t. oCol2:nTotal:=0 oCol2:nFooterType := AGGR_TOTAL oCol2:nFootStrAlign := 1 oCol2 = oBrw2:AddCol() oCol2:bEditValue = { || (cWork2)->Haber } oCol2:cEditPicture = "@Z 9,999,999,999.99" oCol2:nEditType = 0 //no editable oCol2:nDataStrAlign := 1 oCol2:cHeader = "Movimiento"+CRLF+"Del Haber" oCol2:nWidth = 116 oCol2:lTotal := .t. oCol2:nTotal:=0 oCol2:nFooterType := AGGR_TOTAL oCol2:nFootStrAlign := 1
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;">&#91;</span><span style="color: #000000;">4</span><span style="color: #000000;">&#93;</span>:<span style="color: #000000;">bfooter</span>:=<span style="color: #000000;">&#123;</span>|| Trans<span style="color: #000000;">&#40;</span>AGGR_TOTAL,<span style="color: #ff0000;">"@Z 9,999,999.99"</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#125;</span><br />&nbsp;</div>[/code:1ddledx2] Saludos, Adhemar
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 />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">REDEFINE</span> <span style="color: #0000ff;">XBROWSE</span> oBrw <span style="color: #0000ff;">ID</span> <span style="color: #000000;">30</span> <span style="color: #0000ff;">OF</span> xDlg COLUMNS <span style="color: #ff0000;">"MONE"</span>,<span style="color: #ff0000;">"FECH"</span>,<span style="color: #ff0000;">"FACT"</span> <span style="color: #0000ff;">ALIAS</span> <span style="color: #ff0000;">"PA11"</span> <span style="color: #0000ff;">FONT</span> oFont<span style="color: #000000;">&#91;</span><span style="color: #000000;">3</span><span style="color: #000000;">&#93;</span> AUTOSORT FOOTERS BACKGROUND aColor <span style="color: #0000ff;">VERTICAL</span><br /><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">&#91;</span><span style="color: #000000;">1</span><span style="color: #000000;">&#93;</span>:<span style="color: #000000;">cHeader</span> &nbsp; &nbsp; &nbsp; := <span style="color: #ff0000;">'Mon'</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">&#91;</span><span style="color: #000000;">1</span><span style="color: #000000;">&#93;</span>:<span style="color: #000000;">nWidth</span> &nbsp; &nbsp; &nbsp; &nbsp;:= <span style="color: #000000;">40</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">&#91;</span><span style="color: #000000;">2</span><span style="color: #000000;">&#93;</span>:<span style="color: #000000;">cHeader</span> &nbsp; &nbsp; &nbsp; := <span style="color: #ff0000;">'Fecha'</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">&#91;</span><span style="color: #000000;">2</span><span style="color: #000000;">&#93;</span>:<span style="color: #000000;">nWidth</span> &nbsp; &nbsp; &nbsp; &nbsp;:= <span style="color: #000000;">72</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">&#91;</span><span style="color: #000000;">3</span><span style="color: #000000;">&#93;</span>:<span style="color: #000000;">cHeader</span> &nbsp; &nbsp; &nbsp; := <span style="color: #ff0000;">'TCamb'</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">&#91;</span><span style="color: #000000;">3</span><span style="color: #000000;">&#93;</span>:<span style="color: #000000;">nWidth</span> &nbsp; &nbsp; &nbsp; &nbsp;:= <span style="color: #000000;">85</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">&#91;</span><span style="color: #000000;">3</span><span style="color: #000000;">&#93;</span>:<span style="color: #000000;">bEditValue</span> &nbsp; &nbsp;:= <span style="color: #000000;">&#123;</span> || PA11->FACT <span style="color: #000000;">&#125;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">&#91;</span><span style="color: #000000;">3</span><span style="color: #000000;">&#93;</span>:<span style="color: #000000;">nDataStrAlign</span> := <span style="color: #000000;">1</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">&#91;</span><span style="color: #000000;">3</span><span style="color: #000000;">&#93;</span>:<span style="color: #000000;">cEditPicture</span> &nbsp;:= <span style="color: #ff0000;">"@Z 99,999.99"</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">&#91;</span><span style="color: #000000;">3</span><span style="color: #000000;">&#93;</span>:<span style="color: #000000;">nEditType</span> &nbsp; &nbsp; := EDIT_GET<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">&#91;</span><span style="color: #000000;">3</span><span style="color: #000000;">&#93;</span>:<span style="color: #000000;">bOnPostEdit</span> &nbsp; := <span style="color: #000000;">&#123;</span> | oCol, xVal, nKey | IIF<span style="color: #000000;">&#40;</span> nKey == VK_RETURN, <span style="color: #000000;">&#40;</span>GrabaFactor<span style="color: #000000;">&#40;</span> xVal, oGraph <span style="color: #000000;">&#41;</span>,PA11->FACT := xVal<span style="color: #000000;">&#41;</span> ,<span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#125;</span><br /><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;WITH OBJECT oBrw:<span style="color: #000000;">TCamb</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">&#91;</span><span style="color: #000000;">3</span><span style="color: #000000;">&#93;</span>:<span style="color: #000000;">oFooterFont</span> &nbsp; := oFont<span style="color: #000000;">&#91;</span><span style="color: #000000;">7</span><span style="color: #000000;">&#93;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">&#91;</span><span style="color: #000000;">3</span><span style="color: #000000;">&#93;</span>:<span style="color: #000000;">nFooterType</span> &nbsp; := AGGR_AVERAGE<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">&#91;</span><span style="color: #000000;">3</span><span style="color: #000000;">&#93;</span>:<span style="color: #000000;">bLClickFooter</span> := <span style="color: #000000;">&#123;</span> |r,c,f,o| FootClick<span style="color: #000000;">&#40;</span> r, c, f, o <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#125;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;END<br /><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;oBrw:<span style="color: #000000;">nMarqueeStyle</span> &nbsp; &nbsp; &nbsp; &nbsp;:= <span style="color: #000000;">3</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;oBrw:<span style="color: #000000;">nColDividerStyle</span> &nbsp; &nbsp; := <span style="color: #000000;">4</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;oBrw:<span style="color: #000000;">nRowDividerStyle</span> &nbsp; &nbsp; := <span style="color: #000000;">4</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;oBrw:<span style="color: #000000;">l2007</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;:= .T.<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;oBrw:<span style="color: #000000;">lVScroll</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; := .T.<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;oBrw:<span style="color: #000000;">lFastEdit</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;:= .T.<br />&nbsp;</div>[/code:3la78an7] [img:3la78an7]http&#58;//i51&#46;tinypic&#46;com/2wqwww6&#46;jpg[/img:3la78an7] saludos desde Chile
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:<span style="color: #000000;">lFooter</span>   := .t.<br />   oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">&#91;</span> <span style="color: #000000;">2</span> <span style="color: #000000;">&#93;</span>:<span style="color: #000000;">bFooter</span>     := <span style="color: #000000;">&#123;</span> || <span style="color: #ff0000;">" "</span>+Ltrim<span style="color: #000000;">&#40;</span> Str<span style="color: #000000;">&#40;</span> Len<span style="color: #000000;">&#40;</span>::<span style="color: #000000;">aData</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#125;</span><br />   oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">&#91;</span> <span style="color: #000000;">2</span> <span style="color: #000000;">&#93;</span>:<span style="color: #000000;">oFooterFont</span> := oFootFont<br /><br />   oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">&#91;</span> <span style="color: #000000;">3</span> <span style="color: #000000;">&#93;</span>:<span style="color: #000000;">nFooterType</span> := AGGR_TOTAL<br />   oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">&#91;</span> <span style="color: #000000;">3</span> <span style="color: #000000;">&#93;</span>:<span style="color: #000000;">bLClickFooter</span>:= <span style="color: #000000;">&#123;</span> |r,c,f,o| ::<span style="color: #000000;">VerListines</span><span style="color: #000000;">&#40;</span> r, c, f, o <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#125;</span><br /><br />   oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">&#91;</span> <span style="color: #000000;">4</span> <span style="color: #000000;">&#93;</span>:<span style="color: #000000;">nFooterType</span> := AGGR_TOTAL<br />   oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">&#91;</span> <span style="color: #000000;">4</span> <span style="color: #000000;">&#93;</span>:<span style="color: #000000;">nFootStrAlign</span> := AL_RIGHT<br />   oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">&#91;</span> <span style="color: #000000;">4</span> <span style="color: #000000;">&#93;</span>:<span style="color: #000000;">RefreshFooter</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br />   oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">&#91;</span> <span style="color: #000000;">5</span> <span style="color: #000000;">&#93;</span>:<span style="color: #000000;">nFooterType</span> := AGGR_TOTAL<br />   oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">&#91;</span> <span style="color: #000000;">5</span> <span style="color: #000000;">&#93;</span>:<span style="color: #000000;">nFootStrAlign</span> := AL_LEFT<br />   oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">&#91;</span> <span style="color: #000000;">5</span> <span style="color: #000000;">&#93;</span>:<span style="color: #000000;">RefreshFooter</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br /><br />   oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">&#91;</span> <span style="color: #000000;">6</span> <span style="color: #000000;">&#93;</span>:<span style="color: #000000;">nFooterType</span> := AGGR_TOTAL<br />   oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">&#91;</span> <span style="color: #000000;">6</span> <span style="color: #000000;">&#93;</span>:<span style="color: #000000;">nFootStrAlign</span> := AL_CENTER<br />   oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">&#91;</span> <span style="color: #000000;">6</span> <span style="color: #000000;">&#93;</span>:<span style="color: #000000;">RefreshFooter</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br /><br /><br />   oBrw:<span style="color: #000000;">MakeTotals</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />   oBrw:<span style="color: #000000;">SetFocus</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />   oBrw:<span style="color: #0000ff;">Refresh</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /> </div>[/code:2g7x7r82] Para el FWH 10.11 me justifica todo los footer hacia derecha, aqui dejo imagen [img:2g7x7r82]http&#58;//www&#46;mag071&#46;com/images/footer1011&#46;JPG[/img:2g7x7r82] Para el FWH 11.04 me justifica todos los footer hacia la izquierda [img:2g7x7r82]http&#58;//www&#46;mag071&#46;com/images/footer1104&#46;JPG[/img:2g7x7r82] solo quiero saber si es posible hacer justicaciones en los footer. Gracias a todos.
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> <span style="color: #ff0000;">"FiveWin.Ch"</span><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"ord.ch"</span><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"xbrowse.ch"</span><br /><br />REQUEST DBFCDX<br /><br /><span style="color: #B900B9;">//----------------------------------------------------------------------------//</span><br /><br /><span style="color: #00C800;">function</span> Main<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp;<span style="color: #00C800;">local</span> oDlg, oBrw, oFont<br /><br />&nbsp; &nbsp;XbrNumFormat<span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"E"</span>, .t. <span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp;USE CUSTOMER VIA <span style="color: #ff0000;">"DBFCDX"</span><br />&nbsp; &nbsp;<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;">SIZE</span> <span style="color: #000000;">0</span>,<span style="color: #000000;">-12</span><br />&nbsp; &nbsp;<span style="color: #0000ff;">DEFINE</span> <span style="color: #0000ff;">DIALOG</span> oDlg <span style="color: #0000ff;">SIZE</span> <span style="color: #000000;">400</span>,<span style="color: #000000;">400</span> <span style="color: #0000ff;">PIXEL</span> <span style="color: #0000ff;">FONT</span> oFont<br />&nbsp; &nbsp;@ <span style="color: #000000;">10</span>,<span style="color: #000000;">10</span> <span style="color: #0000ff;">XBROWSE</span> oBrw <span style="color: #0000ff;">SIZE</span> <span style="color: #000000;">-10</span>,<span style="color: #000000;">-10</span> <span style="color: #0000ff;">PIXEL</span> <span style="color: #0000ff;">OF</span> oDlg ;<br />&nbsp; &nbsp; &nbsp; COLUMNS <span style="color: #ff0000;">"First"</span>, <span style="color: #ff0000;">"Age"</span>, <span style="color: #ff0000;">"Salary"</span> ;<br />&nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">ALIAS</span> <span style="color: #ff0000;">"CUSTOMER"</span> CELL LINES FOOTERS NOBORDER<br /><br />&nbsp; &nbsp;oBrw:<span style="color: #000000;">Age</span>:<span style="color: #000000;">nFooterType</span> &nbsp; &nbsp;:= AGGR_AVG<br />&nbsp; &nbsp;oBrw:<span style="color: #000000;">Salary</span>:<span style="color: #000000;">nFooterType</span> := AGGR_TOTAL<br />&nbsp; &nbsp;oBrw:<span style="color: #000000;">MakeTotals</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp;oBrw:<span style="color: #000000;">CreateFromCode</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;<span style="color: #0000ff;">ACTIVATE</span> <span style="color: #0000ff;">DIALOG</span> oDlg <span style="color: #0000ff;">CENTERED</span><br />&nbsp; &nbsp;<span style="color: #0000ff;">RELEASE</span> <span style="color: #0000ff;">FONT</span> oFont<br />&nbsp; &nbsp;CLOSE CUSTOMER<br /><br /><span style="color: #00C800;">return</span> <span style="color: #00C800;">nil</span><br /><br /><span style="color: #B900B9;">//----------------------------------------------------------------------------//</span><br />&nbsp;</div>[/code:3ncmktd5] Screeen Shot: [url=http&#58;//img651&#46;imageshack&#46;us/i/xbrfootalign&#46;jpg/:3ncmktd5][img:3ncmktd5]http&#58;//img651&#46;imageshack&#46;us/img651/970/xbrfootalign&#46;jpg[/img:3ncmktd5][/url:3ncmktd5] I request you to post a self contained sample, using a dbf available in \fwh\samples folder, so that we can test here and solve your problem. I used FWH 11.04
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:lColDividerComplete := .t. oRLbx:lRecordSelector := .T. oRLbx:lHScroll := .f. oRLbx:cAlias := "RB" aBrowseRb := { { { || RB->CodArt }, i18n("Codice"), 40 },; { { || RB->Articolo}, i18n("Articolo"),140 },; { { || RB->Misura}, i18n("Unità"), 50 },; { { || RB->Quantita}, i18n("Qt."), 30 },; { { || RB->Iva}, i18n("Iva"), 30 },; { { || RB->Unitario}, i18n("Unitario"), 80 },; { { || RB->Totale}, i18n("Totale"), 90 } } FOR i := 1 TO Len(aBrowseRb) oCol := oRLbx:AddCol() oCol:bStrData := aBrowseRb[ i, 1 ] oCol:cHeader := aBrowseRb[ i, 2 ] oCol:nWidth := aBrowseRb[ i, 3 ] NEXT AEval( oRLbx:aCols, { |o| o:cEditPicture := '99,999.99', ; o:nFooterType := AGGR_SUM, ; o:bOnChange := { || oRLbx:MakeTotals(),oRLbx:RefreshFooters() } }, 2 ) oRLbx:aCols[ 7 ]:cFooter := 'Totale' oRLbx:Totale:cFooter := 'Totale' oRLbx:nStretchCol :=- 1 oRLbx:MakeTotals() oRLbx:SetRDD() oRLbx:CreateFromCode() but I[b:sc6iwhh3] cannot see any footers [/b:sc6iwhh3]!! why ? where is the error ?
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 :nFooterType := AGGR_TOTAL END :MakeTotals() :nStretchCol :=- 1 :lFooter:= .T. END oRLbx:SetRDD() oRLbx:CreateFromCode() THE ERROR [code=fw:59m4ut2a]<div class="fw" id="{CB}" style="font-family: monospace;">Path and <span style="color: #0000ff;">name</span>: <span style="color: #000000;">C</span>:\work\ERRORI5\GUT\GUT.Exe <span style="color: #000000;">&#40;</span><span style="color: #000000;">32</span> bits<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;<span style="color: #0000ff;">Size</span>: <span style="color: #000000;">3</span>,<span style="color: #000000;">392</span>,<span style="color: #000000;">512</span> bytes<br />&nbsp; &nbsp;Time <span style="color: #0000ff;">from</span> start: <span style="color: #000000;">0</span> hours <span style="color: #000000;">0</span> mins <span style="color: #000000;">2</span> secs <br />&nbsp; &nbsp;Error occurred <span style="color: #00C800;">at</span>: <span style="color: #000000;">05</span><span style="color: #000000;">-03</span><span style="color: #000000;">-2011</span>, <span style="color: #000000;">21</span>:<span style="color: #000000;">45</span>:<span style="color: #000000;">58</span><br />&nbsp; &nbsp;Error description: <span style="color: #000000;">Error</span> BASE/<span style="color: #000000;">1004</span> &nbsp;<span style="color: #00C800;">Class</span>: <span style="color: #ff0000;">'NIL'</span> has no exported <span style="color: #00C800;">method</span>: <span style="color: #000000;">EVAL</span><br />&nbsp; &nbsp;Args:<br />&nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> &nbsp; <span style="color: #000000;">1</span><span style="color: #000000;">&#93;</span> = U &nbsp; <br />&nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> &nbsp; <span style="color: #000000;">2</span><span style="color: #000000;">&#93;</span> = U &nbsp; <br /><br />Stack Calls<br />===========<br />&nbsp; &nbsp;Called <span style="color: #0000ff;">from</span>: &nbsp;=> EVAL<span style="color: #000000;">&#40;</span><span style="color: #000000;">0</span><span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;Called <span style="color: #0000ff;">from</span>: <span style="color: #000000;">Lib</span>\<span style="color: #0000ff;">xbrowse</span>.prg => TXBROWSE:<span style="color: #000000;">BOOKMARK</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">2748</span><span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;Called <span style="color: #0000ff;">from</span>: <span style="color: #000000;">Lib</span>\<span style="color: #0000ff;">xbrowse</span>.prg => TXBROWSE:<span style="color: #000000;">MAKETOTALS</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">6375</span><span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;Called <span style="color: #0000ff;">from</span>: <span style="color: #000000;">source</span>\Pripara.prg => RPEDITA<span style="color: #000000;">&#40;</span><span style="color: #000000;">461</span><span style="color: #000000;">&#41;</span></div>[/code:59m4ut2a]
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 AAAAAAAAAAAAA 300 ZZZZZZZZZZZZZZ After INDEXFLD OTHER DATA 100 AAAAAAAAAAAAA 200 BBBBBBBBBBBBB 300 ZZZZZZZZZZZZZZ
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 src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
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 pros and cons of each one please?.
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 oracle, I personally use NUMBER field with 1 or 0. But when we work with tables created by others, we should keep in mind that the general practice of Oracle community for ages is to use 'Y' and 'N'. (I consider this unsafe and also experienced it. But we can't change their age old habits) I understand Postgre has a boolean field type. Not sure about postgre, informix, etc Personally I use =0 or <> 0 instead of =0 and =1.
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:1zgif87a]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"fivewin.ch"</span><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"dbinfo.ch"</span><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"adodef.ch"</span><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"xbrowse.ch"</span><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"Set.ch"</span><br /><br /><br />REQUEST HB_Lang_ES<br />REQUEST HB_CODEPAGE_ESWIN<br /><br /><br /><br /><br /><span style="color: #00C800;">FUNCTION</span> MAIN<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp;<span style="color: #00C800;">local</span> cStr, oCn, oRs<br />&nbsp; &nbsp;<span style="color: #00C800;">local</span> oData<br /><br /><br />&nbsp; &nbsp;<span style="color: #B900B9;">// Idioma español</span><br />&nbsp; &nbsp;HB_LangSelect<span style="color: #000000;">&#40;</span><span style="color: #ff0000;">"ES"</span><span style="color: #000000;">&#41;</span> <span style="color: #B900B9;">// Para mensajes, fechas, etc..</span><br />&nbsp; &nbsp;HB_CDPSELECT<span style="color: #000000;">&#40;</span><span style="color: #ff0000;">"ESWIN"</span><span style="color: #000000;">&#41;</span> <span style="color: #B900B9;">// Para ordenación, requiere CodePage.lib</span><br /><br />&nbsp; &nbsp;<span style="color: #B900B9;">// Driver CDX----------------------------------------------------------------</span><br />&nbsp; &nbsp;REQUEST DBFCDX, DBFFPT<br /><br />&nbsp; &nbsp;RDDSETDEFAULT<span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"DBFCDX"</span><span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp;SET DATE <span style="color: #0000ff;">TO</span> ITALIAN<br />&nbsp; &nbsp;SET EPOCH <span style="color: #0000ff;">TO</span> <span style="color: #000000;">1990</span><br /><br /><br /><br />&nbsp; &nbsp;cStr := <span style="color: #ff0000;">"NAGES.MDB"</span><br /><br /><br /><br />&nbsp; &nbsp;<span style="color: #B900B9;">//</span><br />&nbsp; &nbsp;<span style="color: #00C800;">IF</span> !FILE<span style="color: #000000;">&#40;</span> cStr <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; Alert<span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"Creating "</span> + cStr <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; FW_CreateMDB<span style="color: #000000;">&#40;</span> cStr <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;<span style="color: #00C800;">ENDIF</span><br /><br /><br /><br />&nbsp; &nbsp;<span style="color: #B900B9;">//</span><br />&nbsp; &nbsp;oCn &nbsp; := FW_OpenAdoConnection<span style="color: #000000;">&#40;</span> cStr <span style="color: #000000;">&#41;</span><br /><br /><br /><br />&nbsp; &nbsp;<span style="color: #B900B9;">//</span><br />&nbsp; &nbsp;<span style="color: #00C800;">IF</span> !FW_AdoTableExists<span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"CLIENTES"</span>, oCn <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; Alert<span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"Creating CLIENTES table..."</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; FWAdoCreateTable<span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"CLIENTES"</span>, aEstructuraClientes<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>, oCn, .T. <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;<span style="color: #00C800;">ENDIF</span><br /><br /><br /><br />&nbsp; &nbsp;oRs &nbsp; := FW_OpenRecordSet<span style="color: #000000;">&#40;</span> oCn, <span style="color: #ff0000;">"SELECT * FROM CLIENTES"</span> <span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp;<span style="color: #00C800;">if</span> oRs = <span style="color: #00C800;">nil</span><br />&nbsp; &nbsp; &nbsp; FW_ShowAdoError<span style="color: #000000;">&#40;</span> oCN <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; oCn:<span style="color: #000000;">Close</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; <span style="color: #00C800;">RETURN</span> <span style="color: #00C800;">NIL</span><br />&nbsp; &nbsp;<span style="color: #00C800;">endif</span><br /><br /><br /><br />&nbsp; &nbsp;<span style="color: #B900B9;">//</span><br />&nbsp; &nbsp;FWAdoAppendBlank<span style="color: #000000;">&#40;</span> oRS <span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp;XBROWSER oRs FASTEDIT<br />&nbsp; &nbsp;oCn:<span style="color: #000000;">Close</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;QUIT<br /><br /><br /><br /><br /><span style="color: #00C800;">RETURN</span> <span style="color: #00C800;">NIL</span><br /><span style="color: #B900B9;">//----------------------------------------------------------------------------//</span><br /><br /><br /><br /><span style="color: #B900B9;">// ---------------------------------------------------------------------------</span><br /><span style="color: #00C800;">FUNCTION</span> aEstructuraClientes<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><span style="color: #B900B9;">// ---------------------------------------------------------------------------</span><br /><br />&nbsp; <span style="color: #00C800;">LOCAL</span> aArray := <span style="color: #000000;">&#123;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"CODIGO"</span>, &nbsp; &nbsp;<span style="color: #ff0000;">"N"</span>, <span style="color: #000000;">20</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ; &nbsp; <span style="color: #B900B9;">// PANTALLA 2</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"ORDEN"</span>, &nbsp; &nbsp; <span style="color: #ff0000;">"N"</span>, <span style="color: #000000;">10</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"NIF"</span>, &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">20</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"NOMBRE"</span>, &nbsp; &nbsp;<span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"DIRECCION"</span>, <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"POBLACION"</span>, <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"CPOSTAL"</span>, &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">20</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"PROVINCIA"</span>, <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"PAIS"</span>, &nbsp; &nbsp; &nbsp;<span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">40</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"TELEFONO"</span>, &nbsp;<span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">25</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"TELEFONO2"</span>, <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">25</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"TRABAJO"</span>, &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">25</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"FAX"</span>, &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">25</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"MOVIL"</span>, &nbsp; &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">25</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"EMAIL"</span>, &nbsp; &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"EMAIL2"</span>, &nbsp; &nbsp;<span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"WEB"</span>, &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"REFERENCIA"</span>,<span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"GRUPO"</span>, &nbsp; &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">30</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"EMPRESA"</span>, &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"CARGO"</span>, &nbsp; &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"CAMPO01"</span>, &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"CAMPO02"</span>, &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"OBSERVA"</span>, &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"TITULAR"</span>, &nbsp; &nbsp;<span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ; &nbsp;<span style="color: #B900B9;">// PANTALLA ECONOMICOS</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"FPAGO"</span>, &nbsp; &nbsp; &nbsp;<span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">15</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"BANCO"</span>, &nbsp; &nbsp; &nbsp;<span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"DIR_BANCO"</span>, &nbsp;<span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"POB_BANCO"</span>, &nbsp;<span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"CP_BANCO"</span>, &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">20</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"PRV_BANCO"</span>, &nbsp;<span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"PAIS_BANC"</span>, &nbsp;<span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">40</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"OFICINA"</span>, &nbsp; &nbsp;<span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">04</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"SUCURSAL"</span>, &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">04</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"DC"</span>, &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">02</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"CUENTA"</span>, &nbsp; &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">10</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"IBAN"</span>, &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">50</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"BIC"</span>, &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">50</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"MANDATO"</span>, &nbsp; &nbsp;<span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">50</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"SEPAB2B"</span>, &nbsp; &nbsp;<span style="color: #ff0000;">"L"</span>, <span style="color: #000000;">01</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"LENVIADO"</span>, &nbsp; <span style="color: #ff0000;">"L"</span>, <span style="color: #000000;">01</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"COMERCIAL"</span>, &nbsp;<span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"COBRADOR"</span>, &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"DESCUENTO"</span>, &nbsp;<span style="color: #ff0000;">"N"</span>, <span style="color: #000000;">05</span>, <span style="color: #000000;">02</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"EXENTOIVA"</span>, &nbsp;<span style="color: #ff0000;">"L"</span>, <span style="color: #000000;">01</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"CUENTACONT"</span>, <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">20</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"SERIE"</span>, &nbsp; &nbsp; &nbsp;<span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">20</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"DIAPAGO"</span>, &nbsp; &nbsp;<span style="color: #ff0000;">"N"</span>, <span style="color: #000000;">02</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"VTO"</span>, &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #ff0000;">"N"</span>, <span style="color: #000000;">03</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"DEUDA"</span>, &nbsp; &nbsp; &nbsp;<span style="color: #ff0000;">"N"</span>, <span style="color: #000000;">20</span>, <span style="color: #000000;">05</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"RIESGO_C"</span>, &nbsp; <span style="color: #ff0000;">"N"</span>, <span style="color: #000000;">20</span>, <span style="color: #000000;">05</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"RIESGO_R"</span>, &nbsp; <span style="color: #ff0000;">"N"</span>, <span style="color: #000000;">10</span>, <span style="color: #000000;">00</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"SUBCTA"</span>, &nbsp; &nbsp; <span style="color: #ff0000;">"N"</span>, <span style="color: #000000;">12</span>, <span style="color: #000000;">00</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"ULT_RECI"</span>, &nbsp; <span style="color: #ff0000;">"D"</span>, <span style="color: #000000;">08</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"TIPO_DIRE"</span>, &nbsp; &nbsp;<span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">10</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ; &nbsp;<span style="color: #B900B9;">// PANTALLA ENVIO</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"DESTINATAR"</span>, &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"DDIRECCION"</span>, &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"DCPOSTAL"</span>, &nbsp; &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">20</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"DPOBLACION"</span>, &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"DPROVINCIA"</span>, &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"DPAIS"</span>, &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">40</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"REPARTIDOR"</span>, &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"ZONA"</span>, &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"CARTAS"</span>, &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">"L"</span>, <span style="color: #000000;">01</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"EMAILS"</span>, &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">"L"</span>, <span style="color: #000000;">01</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"SMS"</span>, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #ff0000;">"L"</span>, <span style="color: #000000;">01</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"REPORT"</span>, &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"PRINTS"</span>, &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">"N"</span>, <span style="color: #000000;">02</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"FOTO"</span>, &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ; &nbsp; <span style="color: #B900B9;">// PERSONALES</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"SEXO"</span>, &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">20</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"FNAC"</span>, &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">"D"</span>, <span style="color: #000000;">08</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"LNAC"</span>, &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"PNAC"</span>, &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"NACIONALID"</span>, &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"CONTACTO1"</span>, &nbsp; &nbsp;<span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"VINCULO1"</span>, &nbsp; &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"TELEF1"</span>, &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">30</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"CONTACTO2"</span>, &nbsp; &nbsp;<span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"VINCULO2"</span>, &nbsp; &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"TELEF2"</span>, &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">30</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"CONYUGE"</span>, &nbsp; &nbsp; &nbsp;<span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"FAMILIA"</span>, &nbsp; &nbsp; &nbsp;<span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"PROFESOR"</span>, &nbsp; &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"TAQUILLA"</span>, &nbsp; &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"ALERGIAS"</span>, &nbsp; &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"COPROPIETA"</span>, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ; &nbsp; <span style="color: #B900B9;">// COMUNIDADES</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"TIPO_PROPI"</span>, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"DENOMINACI"</span>, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"CBLOQUE"</span>, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">40</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"CDIRECCION"</span>, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"REGISTRO"</span>, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"CATASTRO"</span>, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"VCATASTRAL"</span>, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">"N"</span>, <span style="color: #000000;">30</span>, <span style="color: #000000;">10</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"NOTAS"</span>, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"COEFICIENT"</span>, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">"N"</span>, <span style="color: #000000;">20</span>, <span style="color: #000000;">08</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"COEFICI2"</span>, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">"N"</span>, <span style="color: #000000;">20</span>, <span style="color: #000000;">08</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"COEFICI3"</span>, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">"N"</span>, <span style="color: #000000;">20</span>, <span style="color: #000000;">08</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"COEFICI4"</span>, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">"N"</span>, <span style="color: #000000;">20</span>, <span style="color: #000000;">08</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"COEFICI5"</span>, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">"N"</span>, <span style="color: #000000;">20</span>, <span style="color: #000000;">08</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"COEFICI6"</span>, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">"N"</span>, <span style="color: #000000;">20</span>, <span style="color: #000000;">08</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"COEFICI7"</span>, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">"N"</span>, <span style="color: #000000;">20</span>, <span style="color: #000000;">08</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"COEFICI8"</span>, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">"N"</span>, <span style="color: #000000;">20</span>, <span style="color: #000000;">08</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"COEFICI9"</span>, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">"N"</span>, <span style="color: #000000;">20</span>, <span style="color: #000000;">08</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"USUARIO"</span>, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"PASSWORD"</span>, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"FALTA"</span>, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #ff0000;">"D"</span>, <span style="color: #000000;">08</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ; &nbsp; <span style="color: #B900B9;">// PANTALLA BAJAS</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"FBAJA"</span>, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #ff0000;">"D"</span>, <span style="color: #000000;">08</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"MOTIVO"</span>, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"BAJATEMP"</span>, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">"L"</span>, <span style="color: #000000;">01</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"BTIPO"</span>, &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">15</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"HASTA"</span>, &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #ff0000;">"D"</span>, <span style="color: #000000;">08</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"CAMPO1"</span>, &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ; &nbsp; &nbsp; <span style="color: #B900B9;">// CAMPOS EXTRA</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"CAMPO2"</span>, &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"CAMPO3"</span>, &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"CAMPO4"</span>, &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"CAMPO5"</span>, &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"CAMPO6"</span>, &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"CAMPO7"</span>, &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"CAMPO8"</span>, &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"CAMPO9"</span>, &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"CAMPO10"</span>, &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">80</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"PORCENTAJE"</span>,<span style="color: #ff0000;">"N"</span>, <span style="color: #000000;">02</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #B900B9;">// VARIOS</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"DESCRIP01"</span>, <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">50</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #B900B9;">// compatibilidad VIEJOS</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"PRECIO01"</span>, &nbsp;<span style="color: #ff0000;">"N"</span>, <span style="color: #000000;">11</span>, <span style="color: #000000;">2</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"DESCRIP02"</span>, <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">50</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"PRECIO02"</span>, &nbsp;<span style="color: #ff0000;">"N"</span>, <span style="color: #000000;">11</span>, <span style="color: #000000;">2</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"DESCRIP03"</span>, <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">50</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"PRECIO03"</span>, &nbsp;<span style="color: #ff0000;">"N"</span>, <span style="color: #000000;">11</span>, <span style="color: #000000;">2</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"DESCRIP04"</span>, <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">50</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"PRECIO04"</span>, &nbsp;<span style="color: #ff0000;">"N"</span>, <span style="color: #000000;">11</span>, <span style="color: #000000;">2</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"DESCRIP05"</span>, <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">50</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"PRECIO05"</span>, &nbsp;<span style="color: #ff0000;">"N"</span>, <span style="color: #000000;">11</span>, <span style="color: #000000;">2</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"DESCRIP06"</span>, <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">50</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"PRECIO06"</span>, &nbsp;<span style="color: #ff0000;">"N"</span>, <span style="color: #000000;">11</span>, <span style="color: #000000;">2</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"DESCRIP07"</span>, <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">50</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"PRECIO07"</span>, &nbsp;<span style="color: #ff0000;">"N"</span>, <span style="color: #000000;">11</span>, <span style="color: #000000;">2</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"DESCRIP08"</span>, <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">50</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"PRECIO08"</span>, &nbsp;<span style="color: #ff0000;">"N"</span>, <span style="color: #000000;">11</span>, <span style="color: #000000;">2</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"DESCRIP09"</span>, <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">50</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"PRECIO09"</span>, &nbsp;<span style="color: #ff0000;">"N"</span>, <span style="color: #000000;">11</span>, <span style="color: #000000;">2</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"MEMO"</span>, &nbsp;<span style="color: #ff0000;">"M"</span>, <span style="color: #000000;">10</span>, <span style="color: #000000;">0</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#125;</span><br /><br /><br /><span style="color: #00C800;">RETURN</span> aArray<br /><span style="color: #B900B9;">// ---------------------------------------------------------------------------</span><br /><br /><br /><br />&nbsp;</div>[/code:1zgif87a] What is wrong please?. Thank you very much. Thank you so much.
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 are more important nowadays. Thank you.
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 use any feature that involves full refresh. 2) avoid using any feature that depends on OrdKeyNo() ( example pajama colors) 3) if still necessary remove vertical scrollbar. dbf: 1) keep smaller index files. 2) SET FILTER TO !DELETED() and have an index tag on DELETED(). Improves performance when there are many deleted records. 3) if you are using filters, ensure that they are fully optimized.
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. Limit the columns to what we can see on the screen. Do not add any features of xbrowse. Let us see the performance. And then decide what all we can add to the browse without hitting performance.
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="http://www.pflegeplus.com/fw_downloads/Buttonhelp2.zip">http://www.pflegeplus.com/fw_downloads/Buttonhelp2.zip</a><!-- m --> <!-- m --><a class="postlink" href="http://www.pflegeplus.com/fw_downloads/Freeimg3_12.zip">http://www.pflegeplus.com/fw_downloads/Freeimg3_12.zip</a><!-- m --> <!-- m --><a class="postlink" href="http://www.pflegeplus.com/fw_downloads/GrdTool1.zip">http://www.pflegeplus.com/fw_downloads/GrdTool1.zip</a><!-- m --> <!-- m --><a class="postlink" href="http://www.pflegeplus.com/fw_downloads/Imggrad2.zip">http://www.pflegeplus.com/fw_downloads/Imggrad2.zip</a><!-- m --> <!-- m --><a class="postlink" href="http://www.pflegeplus.com/fw_downloads/Skintool1.zip">http://www.pflegeplus.com/fw_downloads/Skintool1.zip</a><!-- m --> <!-- m --><a class="postlink" href="http://www.pflegeplus.com/fw_downloads/background1.zip">http://www.pflegeplus.com/fw_downloads/background1.zip</a><!-- m --> <!-- m --><a class="postlink" href="http://www.pflegeplus.com/fw_downloads/bmptest.zip">http://www.pflegeplus.com/fw_downloads/bmptest.zip</a><!-- m --> <!-- m --><a class="postlink" href="http://www.pflegeplus.com/fw_downloads/brwtools5.zip">http://www.pflegeplus.com/fw_downloads/brwtools5.zip</a><!-- m --> <!-- m --><a class="postlink" href="http://www.pflegeplus.com/fw_downloads/btntools1.zip">http://www.pflegeplus.com/fw_downloads/btntools1.zip</a><!-- m --> I can’t find the link to the VTitle tools. Thanks in advance Otto
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/fw_downloads/Bartools2.zip</a><!-- m --> ( Bar- Tools ) <!-- m --><a class="postlink" href="http://www.pflegeplus.com/fw_downloads/BtnTemplate1.zip">http://www.pflegeplus.com/fw_downloads/BtnTemplate1.zip</a><!-- m --> ( Collection of Button Templates ) <!-- m --><a class="postlink" href="http://www.pflegeplus.com/fw_downloads/BtnTemplate2.zip">http://www.pflegeplus.com/fw_downloads/BtnTemplate2.zip</a><!-- m --> <!-- m --><a class="postlink" href="http://www.pflegeplus.com/fw_downloads/BtnTemplate3.zip">http://www.pflegeplus.com/fw_downloads/BtnTemplate3.zip</a><!-- m --> <!-- m --><a class="postlink" href="http://www.pflegeplus.com/fw_downloads/BtnTemplate4.zip">http://www.pflegeplus.com/fw_downloads/BtnTemplate4.zip</a><!-- m --> <!-- m --><a class="postlink" href="http://www.pflegeplus.com/fw_downloads/Skintool3.zip">http://www.pflegeplus.com/fw_downloads/Skintool3.zip</a><!-- m --> ( a newer Version ) I have to check, what is Up to Date, or must be fixed. the VTitle-Tools, I'm still working on. There will be still some new Functions to be added, like the new Circle-Gradient. It really saves a lot of Time, to Test different Settings at Runtime. I will send Daniel a first Release this Week. He can test, how his new Function is working inside the Application. Also the Skin-Tools will be Updated, after FWH-9.09 is released. The new Circle-Gradient is included as well ( can be choosed as Background ). Gradient-Background must be added to the XBrowse-Tools and ....... There will be a < Download > - Message added to the VTitle-Toppic, as soon it is ready for Download. Best Regards Uwe <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" alt=":lol:" title="Laughing" /><!-- s:lol: -->
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&#58;//www&#46;pflegeplus&#46;com/pictures/dinformat&#46;jpg[/img:1z4jr9no] Best regards Uwe <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: -->
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&#58;//img690&#46;imageshack&#46;us/img690/3328/adq3&#46;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&#58;//www&#46;finestra3000&#46;com/files/posscurovicent&#46;jpg[/img:3cosl4j8]
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="color: #000000;">&#40;</span>array<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; ntotrec += aRe3<span style="color: #000000;">&#91;</span>z,<span style="color: #000000;">3</span><span style="color: #000000;">&#93;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; ntotpago += div_zero<span style="color: #000000;">&#40;</span>aRe3<span style="color: #000000;">&#91;</span>z,<span style="color: #000000;">3</span><span style="color: #000000;">&#93;</span>,aRe3<span style="color: #000000;">&#91;</span>z,<span style="color: #000000;">5</span><span style="color: #000000;">&#93;</span><span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; ntotdif += &nbsp;aRe3<span style="color: #000000;">&#91;</span>z,<span style="color: #000000;">6</span><span style="color: #000000;">&#93;</span><br /><span style="color: #00C800;">next</span><br /><br />lo hice así y no funciona da error <br /><br /><span style="color: #00C800;">FOR</span> EACH &nbsp;z in aRe3<br />&nbsp; &nbsp; &nbsp; &nbsp; ntotrec += aRe3<span style="color: #000000;">&#91;</span>z,<span style="color: #000000;">3</span><span style="color: #000000;">&#93;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; ntotpago += div_zero<span style="color: #000000;">&#40;</span>aRe3<span style="color: #000000;">&#91;</span>z,<span style="color: #000000;">3</span><span style="color: #000000;">&#93;</span>,aRe3<span style="color: #000000;">&#91;</span>z,<span style="color: #000000;">5</span><span style="color: #000000;">&#93;</span><span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; ntotdif += &nbsp;aRe3<span style="color: #000000;">&#91;</span>z,<span style="color: #000000;">6</span><span style="color: #000000;">&#93;</span><br /><span style="color: #00C800;">next</span></div>[/code:3gcub2ty] Error description: Error BASE/1068 Error de argumento: acceso al array Args: [ 1] = A { ... } [ 2] = A { ... } Luis
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 />&nbsp; &nbsp;<statements><br />&nbsp; &nbsp;<span style="color: #000000;">&#91;</span>LOOP<span style="color: #000000;">&#93;</span><br />&nbsp; &nbsp;<statements><br />&nbsp; &nbsp;<span style="color: #000000;">&#91;</span>EXIT<span style="color: #000000;">&#93;</span><br /><span style="color: #00C800;">NEXT</span></div>[/code:2lrfoiv8] <element> Es la variable que tomará los valores en cada iteracción En tu caso, cada que vez que avance una iteraccion EACH, [i:2lrfoiv8][b:2lrfoiv8]z[/b:2lrfoiv8][/i:2lrfoiv8], recibirá todo el elemento de [i:2lrfoiv8]aReg3[/i:2lrfoiv8], convirtiendose [i:2lrfoiv8][b:2lrfoiv8]z[/b:2lrfoiv8][/i:2lrfoiv8] en un array unidimensional de cada "fila" de [i:2lrfoiv8]aReg3[/i:2lrfoiv8] deberias hacerlo asi... [code=fw:2lrfoiv8]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">FOR</span> EACH &nbsp;z IN aRe3<br />&nbsp; &nbsp; &nbsp; &nbsp; ntotrec += z<span style="color: #000000;">&#91;</span> <span style="color: #000000;">3</span> <span style="color: #000000;">&#93;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; ntotpago += Div_Zero<span style="color: #000000;">&#40;</span> z<span style="color: #000000;">&#91;</span> <span style="color: #000000;">3</span> <span style="color: #000000;">&#93;</span>, z<span style="color: #000000;">&#91;</span> <span style="color: #000000;">5</span> <span style="color: #000000;">&#93;</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; ntotdif += &nbsp;z<span style="color: #000000;">&#91;</span> <span style="color: #000000;">6</span> <span style="color: #000000;">&#93;</span><br /><span style="color: #00C800;">next</span></div>[/code:2lrfoiv8]
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 your audience grows to multiple locations over a wide area network Advantage Database server would be the next logical step. 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 Access and MS Sql Server on every Desktop from WinXP thru Windows 8... Oracle, dB2 and MySql will need clients to be loaded on each desktop running your application. I chose to use Ms Access and Ms Sql Server. Here is a good write up on how ADO works with FiveWin : <!-- m --><a class="postlink" href="http://wiki.fivetechsoft.com/doku.php?id=ado-related_stuffs&s=ado">http://wiki.fivetechsoft.com/doku.php?i ... uffs&s=ado</a><!-- m --> Rick Lipkin
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 Access and MS Sql Server on every Desktop from WinXP thru Windows 8... Oracle, dB2 and MySql will need clients to be loaded on each desktop running your application. I chose to use Ms Access and Ms Sql Server. Rick Lipkin[/quote:3ma9r40p] Not so true , Rick ... <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) --> . Simply MySql , with which I'm working , only needs connection string . Native lib works perfect and with a good speed in Harbour + Fwh app. Also I'm using the same MySql database from Internet ( JavaScript + PhP app ) . So need only did all work in client server ( install Wamp and install mine Harbour + Fwh app ) and all enterprise local network clients can work with mine program . Also through Internet too . Nothing requires for clients PC . Only create desktop link from server to Harbour app or save Internet address as Favorite in browser ... <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) -->
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 package and BCC73:<br /><br /><span style="color: #000000;">12</span>/<span style="color: #000000;">01</span>/<span style="color: #000000;">17</span> <span style="color: #000000;">15</span>:<span style="color: #000000;">32</span>:<span style="color: #000000;">52</span> Windows <span style="color: #000000;">8</span> <span style="color: #000000;">6.2</span><span style="color: #000000;">.9200</span><br />xHarbour <span style="color: #000000;">1.2</span><span style="color: #000000;">.3</span> Intl. <span style="color: #000000;">&#40;</span>SimpLex<span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#40;</span>Build <span style="color: #000000;">20170902</span><span style="color: #000000;">&#41;</span> LLVM/Clang C <span style="color: #000000;">3.3</span><span style="color: #000000;">.1</span> <span style="color: #000000;">&#40;</span><span style="color: #000000;">35962</span>.e6d55e0.777e1b8<span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#40;</span><span style="color: #000000;">32</span>-bit<span style="color: #000000;">&#41;</span> ?<br />THREADS: <span style="color: #000000;">0</span><br />N_LOOPS: <span style="color: #000000;">1000000</span><br /><span style="color: #000000;">&#91;</span> T000: <span style="color: #000000;">empty</span> loop overhead <span style="color: #000000;">&#93;</span>...................................<span style="color: #000000;">0.05</span><br />====================================================================<br /><span style="color: #000000;">&#91;</span> T001: <span style="color: #000000;">x</span> := L_C <span style="color: #000000;">&#93;</span>..............................................<span style="color: #000000;">0.02</span><br /><span style="color: #000000;">&#91;</span> T002: <span style="color: #000000;">x</span> := L_N <span style="color: #000000;">&#93;</span>..............................................<span style="color: #000000;">0.03</span><br /><span style="color: #000000;">&#91;</span> T003: <span style="color: #000000;">x</span> := L_D <span style="color: #000000;">&#93;</span>..............................................<span style="color: #000000;">0.02</span><br /><span style="color: #000000;">&#91;</span> T004: <span style="color: #000000;">x</span> := S_C <span style="color: #000000;">&#93;</span>..............................................<span style="color: #000000;">0.02</span><br /><span style="color: #000000;">&#91;</span> T005: <span style="color: #000000;">x</span> := S_N <span style="color: #000000;">&#93;</span>..............................................<span style="color: #000000;">0.00</span><br /><span style="color: #000000;">&#91;</span> T006: <span style="color: #000000;">x</span> := S_D <span style="color: #000000;">&#93;</span>..............................................<span style="color: #000000;">0.02</span><br /><span style="color: #000000;">&#91;</span> T007: <span style="color: #000000;">x</span> := M->M_C <span style="color: #000000;">&#93;</span>...........................................<span style="color: #000000;">0.03</span><br /><span style="color: #000000;">&#91;</span> T008: <span style="color: #000000;">x</span> := M->M_N <span style="color: #000000;">&#93;</span>...........................................<span style="color: #000000;">0.03</span><br /><span style="color: #000000;">&#91;</span> T009: <span style="color: #000000;">x</span> := M->M_D <span style="color: #000000;">&#93;</span>...........................................<span style="color: #000000;">0.03</span><br /><span style="color: #000000;">&#91;</span> T010: <span style="color: #000000;">x</span> := M->P_C <span style="color: #000000;">&#93;</span>...........................................<span style="color: #000000;">0.03</span><br /><span style="color: #000000;">&#91;</span> T011: <span style="color: #000000;">x</span> := M->P_N <span style="color: #000000;">&#93;</span>...........................................<span style="color: #000000;">0.03</span><br /><span style="color: #000000;">&#91;</span> T012: <span style="color: #000000;">x</span> := M->P_D <span style="color: #000000;">&#93;</span>...........................................<span style="color: #000000;">0.02</span><br /><span style="color: #000000;">&#91;</span> T013: <span style="color: #000000;">x</span> := F_C <span style="color: #000000;">&#93;</span>..............................................<span style="color: #000000;">0.13</span><br /><span style="color: #000000;">&#91;</span> T014: <span style="color: #000000;">x</span> := F_N <span style="color: #000000;">&#93;</span>..............................................<span style="color: #000000;">0.23</span><br /><span style="color: #000000;">&#91;</span> T015: <span style="color: #000000;">x</span> := F_D <span style="color: #000000;">&#93;</span>..............................................<span style="color: #000000;">0.05</span><br /><span style="color: #000000;">&#91;</span> T016: <span style="color: #000000;">x</span> := o:<span style="color: #000000;">Args</span> <span style="color: #000000;">&#93;</span>...........................................<span style="color: #000000;">0.17</span><br /><span style="color: #000000;">&#91;</span> T017: <span style="color: #000000;">x</span> := o<span style="color: #000000;">&#91;</span><span style="color: #000000;">2</span><span style="color: #000000;">&#93;</span> <span style="color: #000000;">&#93;</span>.............................................<span style="color: #000000;">0.05</span><br /><span style="color: #000000;">&#91;</span> T018: <span style="color: #0000ff;">round</span><span style="color: #000000;">&#40;</span> i / <span style="color: #000000;">1000</span>, <span style="color: #000000;">2</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>..................................<span style="color: #000000;">0.20</span><br /><span style="color: #000000;">&#91;</span> T019: <span style="color: #000000;">str</span><span style="color: #000000;">&#40;</span> i / <span style="color: #000000;">1000</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>.......................................<span style="color: #000000;">0.55</span><br /><span style="color: #000000;">&#91;</span> T020: <span style="color: #000000;">val</span><span style="color: #000000;">&#40;</span> s <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>..............................................<span style="color: #000000;">0.27</span><br /><span style="color: #000000;">&#91;</span> T021: <span style="color: #000000;">val</span><span style="color: #000000;">&#40;</span> a <span style="color: #000000;">&#91;</span> i % <span style="color: #000000;">16</span> + <span style="color: #000000;">1</span> <span style="color: #000000;">&#93;</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>...............................<span style="color: #000000;">0.34</span><br /><span style="color: #000000;">&#91;</span> T022: <span style="color: #000000;">dtos</span><span style="color: #000000;">&#40;</span> d - i % <span style="color: #000000;">10000</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>.................................<span style="color: #000000;">0.31</span><br /><span style="color: #000000;">&#91;</span> T023: <span style="color: #000000;">eval</span><span style="color: #000000;">&#40;</span> <span style="color: #000000;">&#123;</span> || i % <span style="color: #000000;">16</span> <span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>.................................<span style="color: #000000;">0.39</span><br /><span style="color: #000000;">&#91;</span> T024: <span style="color: #000000;">eval</span><span style="color: #000000;">&#40;</span> bc := <span style="color: #000000;">&#123;</span> || i % <span style="color: #000000;">16</span> <span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>...........................<span style="color: #000000;">0.23</span><br /><span style="color: #000000;">&#91;</span> T025: <span style="color: #000000;">eval</span><span style="color: #000000;">&#40;</span> <span style="color: #000000;">&#123;</span> |x| x % <span style="color: #000000;">16</span> <span style="color: #000000;">&#125;</span>, i <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>.............................<span style="color: #000000;">0.28</span><br /><span style="color: #000000;">&#91;</span> T026: <span style="color: #000000;">eval</span><span style="color: #000000;">&#40;</span> bc := <span style="color: #000000;">&#123;</span> |x| x % <span style="color: #000000;">16</span> <span style="color: #000000;">&#125;</span>, i <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>.......................<span style="color: #000000;">0.23</span><br /><span style="color: #000000;">&#91;</span> T027: <span style="color: #000000;">eval</span><span style="color: #000000;">&#40;</span> <span style="color: #000000;">&#123;</span> |x| f1<span style="color: #000000;">&#40;</span> x <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#125;</span>, i <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>............................<span style="color: #000000;">0.47</span><br /><span style="color: #000000;">&#91;</span> T028: <span style="color: #000000;">eval</span><span style="color: #000000;">&#40;</span> bc := <span style="color: #000000;">&#123;</span> |x| f1<span style="color: #000000;">&#40;</span> x <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#125;</span>, i <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>......................<span style="color: #000000;">0.30</span><br /><span style="color: #000000;">&#91;</span> T029: <span style="color: #000000;">eval</span><span style="color: #000000;">&#40;</span> bc := &<span style="color: #000000;">&#40;</span><span style="color: #ff0000;">"{ |x| f1( x ) }"</span><span style="color: #000000;">&#41;</span>, i <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>.................<span style="color: #000000;">0.34</span><br /><span style="color: #000000;">&#91;</span> T030: <span style="color: #000000;">x</span> := &<span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"f1("</span> + str<span style="color: #000000;">&#40;</span>i<span style="color: #000000;">&#41;</span> + <span style="color: #ff0000;">")"</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>........................<span style="color: #000000;">3.25</span><br /><span style="color: #000000;">&#91;</span> T031: <span style="color: #000000;">bc</span> := &<span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"{|x|f1(x)}"</span> <span style="color: #000000;">&#41;</span>, eval<span style="color: #000000;">&#40;</span> bc, i <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>................<span style="color: #000000;">3.33</span><br /><span style="color: #000000;">&#91;</span> T032: <span style="color: #000000;">x</span> := valtype<span style="color: #000000;">&#40;</span> x <span style="color: #000000;">&#41;</span> +  valtype<span style="color: #000000;">&#40;</span> i <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>.....................<span style="color: #000000;">0.45</span><br /><span style="color: #000000;">&#91;</span> T033: <span style="color: #000000;">x</span> := strzero<span style="color: #000000;">&#40;</span> i % <span style="color: #000000;">100</span>, <span style="color: #000000;">2</span> <span style="color: #000000;">&#41;</span> $ a<span style="color: #000000;">&#91;</span> i % <span style="color: #000000;">16</span> + <span style="color: #000000;">1</span> <span style="color: #000000;">&#93;</span> <span style="color: #000000;">&#93;</span>..........<span style="color: #000000;">0.59</span><br /><span style="color: #000000;">&#91;</span> T034: <span style="color: #000000;">x</span> := a<span style="color: #000000;">&#91;</span> i % <span style="color: #000000;">16</span> + <span style="color: #000000;">1</span> <span style="color: #000000;">&#93;</span> == s <span style="color: #000000;">&#93;</span>.............................<span style="color: #000000;">0.20</span><br /><span style="color: #000000;">&#91;</span> T035: <span style="color: #000000;">x</span> := a<span style="color: #000000;">&#91;</span> i % <span style="color: #000000;">16</span> + <span style="color: #000000;">1</span> <span style="color: #000000;">&#93;</span> = s <span style="color: #000000;">&#93;</span>..............................<span style="color: #000000;">0.20</span><br /><span style="color: #000000;">&#91;</span> T036: <span style="color: #000000;">x</span> := a<span style="color: #000000;">&#91;</span> i % <span style="color: #000000;">16</span> + <span style="color: #000000;">1</span> <span style="color: #000000;">&#93;</span> >= s <span style="color: #000000;">&#93;</span>.............................<span style="color: #000000;">0.22</span><br /><span style="color: #000000;">&#91;</span> T037: <span style="color: #000000;">x</span> := a<span style="color: #000000;">&#91;</span> i % <span style="color: #000000;">16</span> + <span style="color: #000000;">1</span> <span style="color: #000000;">&#93;</span> <= s <span style="color: #000000;">&#93;</span>.............................<span style="color: #000000;">0.20</span><br /><span style="color: #000000;">&#91;</span> T038: <span style="color: #000000;">x</span> := a<span style="color: #000000;">&#91;</span> i % <span style="color: #000000;">16</span> + <span style="color: #000000;">1</span> <span style="color: #000000;">&#93;</span> < s <span style="color: #000000;">&#93;</span>..............................<span style="color: #000000;">0.20</span><br /><span style="color: #000000;">&#91;</span> T039: <span style="color: #000000;">x</span> := a<span style="color: #000000;">&#91;</span> i % <span style="color: #000000;">16</span> + <span style="color: #000000;">1</span> <span style="color: #000000;">&#93;</span> > s <span style="color: #000000;">&#93;</span>..............................<span style="color: #000000;">0.20</span><br /><span style="color: #000000;">&#91;</span> T040: <span style="color: #000000;">ascan</span><span style="color: #000000;">&#40;</span> a, i % <span style="color: #000000;">16</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>....................................<span style="color: #000000;">0.41</span><br /><span style="color: #000000;">&#91;</span> T041: <span style="color: #000000;">ascan</span><span style="color: #000000;">&#40;</span> a, <span style="color: #000000;">&#123;</span> |x| x == i % <span style="color: #000000;">16</span> <span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>.......................<span style="color: #000000;">2.80</span><br /><span style="color: #000000;">&#91;</span> T042: <span style="color: #000000;">iif</span><span style="color: #000000;">&#40;</span> i%<span style="color: #000000;">1000</span>==<span style="color: #000000;">0</span>, a:=<span style="color: #000000;">&#123;</span><span style="color: #000000;">&#125;</span>, <span style="color: #000000;">&#41;</span> , aadd<span style="color: #000000;">&#40;</span>a,<span style="color: #000000;">&#123;</span>i,<span style="color: #000000;">1</span>,.T.,s,s2,a2 <span style="color: #000000;">&#93;</span>....<span style="color: #000000;">0.67</span><br /><span style="color: #000000;">&#91;</span> T043: <span style="color: #000000;">x</span> := a <span style="color: #000000;">&#93;</span>................................................<span style="color: #000000;">0.05</span><br /><span style="color: #000000;">&#91;</span> T044: <span style="color: #000000;">x</span> := <span style="color: #000000;">&#123;</span><span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#93;</span>...............................................<span style="color: #000000;">0.08</span><br /><span style="color: #000000;">&#91;</span> T045: <span style="color: #000000;">f0</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>..................................................<span style="color: #000000;">0.08</span><br /><span style="color: #000000;">&#91;</span> T046: <span style="color: #000000;">f1</span><span style="color: #000000;">&#40;</span> i <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>...............................................<span style="color: #000000;">0.11</span><br /><span style="color: #000000;">&#91;</span> T047: <span style="color: #000000;">f2</span><span style="color: #000000;">&#40;</span> c<span style="color: #000000;">&#91;</span><span style="color: #000000;">1</span>...<span style="color: #000000;">8</span><span style="color: #000000;">&#93;</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>........................................<span style="color: #000000;">0.16</span><br /><span style="color: #000000;">&#91;</span> T048: <span style="color: #000000;">f2</span><span style="color: #000000;">&#40;</span> c<span style="color: #000000;">&#91;</span><span style="color: #000000;">1</span>...<span style="color: #000000;">40000</span><span style="color: #000000;">&#93;</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>....................................<span style="color: #000000;">0.14</span><br /><span style="color: #000000;">&#91;</span> T049: <span style="color: #000000;">f2</span><span style="color: #000000;">&#40;</span> @c<span style="color: #000000;">&#91;</span><span style="color: #000000;">1</span>...<span style="color: #000000;">40000</span><span style="color: #000000;">&#93;</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>...................................<span style="color: #000000;">0.11</span><br /><span style="color: #000000;">&#91;</span> T050: <span style="color: #000000;">f2</span><span style="color: #000000;">&#40;</span> @c<span style="color: #000000;">&#91;</span><span style="color: #000000;">1</span>...<span style="color: #000000;">40000</span><span style="color: #000000;">&#93;</span> <span style="color: #000000;">&#41;</span>, c2 := c <span style="color: #000000;">&#93;</span>..........................<span style="color: #000000;">0.16</span><br /><span style="color: #000000;">&#91;</span> T051: <span style="color: #000000;">f3</span><span style="color: #000000;">&#40;</span> a, a2, s, i, s2, bc, i, n, x <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>....................<span style="color: #000000;">0.31</span><br /><span style="color: #000000;">&#91;</span> T052: <span style="color: #000000;">f2</span><span style="color: #000000;">&#40;</span> a <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>...............................................<span style="color: #000000;">0.13</span><br /><span style="color: #000000;">&#91;</span> T053: <span style="color: #000000;">x</span> := f4<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>.............................................<span style="color: #000000;">0.61</span><br /><span style="color: #000000;">&#91;</span> T054: <span style="color: #000000;">x</span> := f5<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>.............................................<span style="color: #000000;">0.39</span><br /><span style="color: #000000;">&#91;</span> T055: <span style="color: #000000;">x</span> := space<span style="color: #000000;">&#40;</span><span style="color: #000000;">16</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>........................................<span style="color: #000000;">0.23</span><br /><span style="color: #000000;">&#91;</span> T056: <span style="color: #000000;">f_prv</span><span style="color: #000000;">&#40;</span> c <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>............................................<span style="color: #000000;">0.50</span><br />====================================================================<br /><span style="color: #000000;">&#91;</span> total application time: <span style="color: #000000;">&#93;</span>....................................<span style="color: #000000;">23.23</span><br /><span style="color: #000000;">&#91;</span> total real time: <span style="color: #000000;">&#93;</span>...........................................<span style="color: #000000;">24.06</span><br /><br />with traditional C BCC73:<br /><br /><span style="color: #000000;">12</span>/<span style="color: #000000;">01</span>/<span style="color: #000000;">17</span> <span style="color: #000000;">15</span>:<span style="color: #000000;">07</span>:<span style="color: #000000;">20</span> Windows <span style="color: #000000;">8</span> <span style="color: #000000;">6.2</span><span style="color: #000000;">.9200</span><br />xHarbour <span style="color: #000000;">1.2</span><span style="color: #000000;">.3</span> Intl. <span style="color: #000000;">&#40;</span>SimpLex<span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#40;</span>Build <span style="color: #000000;">20170902</span><span style="color: #000000;">&#41;</span> Borland/Embarcadero C++ <span style="color: #000000;">7.3</span> <span style="color: #000000;">&#40;</span><span style="color: #000000;">32</span>-bit<span style="color: #000000;">&#41;</span> ?<br />THREADS: <span style="color: #000000;">0</span><br />N_LOOPS: <span style="color: #000000;">1000000</span><br /><span style="color: #000000;">&#91;</span> T000: <span style="color: #000000;">empty</span> loop overhead <span style="color: #000000;">&#93;</span>...................................<span style="color: #000000;">0.06</span><br />====================================================================<br /><span style="color: #000000;">&#91;</span> T001: <span style="color: #000000;">x</span> := L_C <span style="color: #000000;">&#93;</span>..............................................<span style="color: #000000;">0.05</span><br /><span style="color: #000000;">&#91;</span> T002: <span style="color: #000000;">x</span> := L_N <span style="color: #000000;">&#93;</span>..............................................<span style="color: #000000;">0.05</span><br /><span style="color: #000000;">&#91;</span> T003: <span style="color: #000000;">x</span> := L_D <span style="color: #000000;">&#93;</span>..............................................<span style="color: #000000;">0.05</span><br /><span style="color: #000000;">&#91;</span> T004: <span style="color: #000000;">x</span> := S_C <span style="color: #000000;">&#93;</span>..............................................<span style="color: #000000;">0.06</span><br /><span style="color: #000000;">&#91;</span> T005: <span style="color: #000000;">x</span> := S_N <span style="color: #000000;">&#93;</span>..............................................<span style="color: #000000;">0.05</span><br /><span style="color: #000000;">&#91;</span> T006: <span style="color: #000000;">x</span> := S_D <span style="color: #000000;">&#93;</span>..............................................<span style="color: #000000;">0.03</span><br /><span style="color: #000000;">&#91;</span> T007: <span style="color: #000000;">x</span> := M->M_C <span style="color: #000000;">&#93;</span>...........................................<span style="color: #000000;">0.05</span><br /><span style="color: #000000;">&#91;</span> T008: <span style="color: #000000;">x</span> := M->M_N <span style="color: #000000;">&#93;</span>...........................................<span style="color: #000000;">0.05</span><br /><span style="color: #000000;">&#91;</span> T009: <span style="color: #000000;">x</span> := M->M_D <span style="color: #000000;">&#93;</span>...........................................<span style="color: #000000;">0.05</span><br /><span style="color: #000000;">&#91;</span> T010: <span style="color: #000000;">x</span> := M->P_C <span style="color: #000000;">&#93;</span>...........................................<span style="color: #000000;">0.05</span><br /><span style="color: #000000;">&#91;</span> T011: <span style="color: #000000;">x</span> := M->P_N <span style="color: #000000;">&#93;</span>...........................................<span style="color: #000000;">0.05</span><br /><span style="color: #000000;">&#91;</span> T012: <span style="color: #000000;">x</span> := M->P_D <span style="color: #000000;">&#93;</span>...........................................<span style="color: #000000;">0.05</span><br /><span style="color: #000000;">&#91;</span> T013: <span style="color: #000000;">x</span> := F_C <span style="color: #000000;">&#93;</span>..............................................<span style="color: #000000;">0.17</span><br /><span style="color: #000000;">&#91;</span> T014: <span style="color: #000000;">x</span> := F_N <span style="color: #000000;">&#93;</span>..............................................<span style="color: #000000;">0.28</span><br /><span style="color: #000000;">&#91;</span> T015: <span style="color: #000000;">x</span> := F_D <span style="color: #000000;">&#93;</span>..............................................<span style="color: #000000;">0.11</span><br /><span style="color: #000000;">&#91;</span> T016: <span style="color: #000000;">x</span> := o:<span style="color: #000000;">Args</span> <span style="color: #000000;">&#93;</span>...........................................<span style="color: #000000;">0.23</span><br /><span style="color: #000000;">&#91;</span> T017: <span style="color: #000000;">x</span> := o<span style="color: #000000;">&#91;</span><span style="color: #000000;">2</span><span style="color: #000000;">&#93;</span> <span style="color: #000000;">&#93;</span>.............................................<span style="color: #000000;">0.09</span><br /><span style="color: #000000;">&#91;</span> T018: <span style="color: #0000ff;">round</span><span style="color: #000000;">&#40;</span> i / <span style="color: #000000;">1000</span>, <span style="color: #000000;">2</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>..................................<span style="color: #000000;">0.27</span><br /><span style="color: #000000;">&#91;</span> T019: <span style="color: #000000;">str</span><span style="color: #000000;">&#40;</span> i / <span style="color: #000000;">1000</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>.......................................<span style="color: #000000;">0.98</span><br /><span style="color: #000000;">&#91;</span> T020: <span style="color: #000000;">val</span><span style="color: #000000;">&#40;</span> s <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>..............................................<span style="color: #000000;">0.34</span><br /><span style="color: #000000;">&#91;</span> T021: <span style="color: #000000;">val</span><span style="color: #000000;">&#40;</span> a <span style="color: #000000;">&#91;</span> i % <span style="color: #000000;">16</span> + <span style="color: #000000;">1</span> <span style="color: #000000;">&#93;</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>...............................<span style="color: #000000;">0.47</span><br /><span style="color: #000000;">&#91;</span> T022: <span style="color: #000000;">dtos</span><span style="color: #000000;">&#40;</span> d - i % <span style="color: #000000;">10000</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>.................................<span style="color: #000000;">0.45</span><br /><span style="color: #000000;">&#91;</span> T023: <span style="color: #000000;">eval</span><span style="color: #000000;">&#40;</span> <span style="color: #000000;">&#123;</span> || i % <span style="color: #000000;">16</span> <span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>.................................<span style="color: #000000;">0.53</span><br /><span style="color: #000000;">&#91;</span> T024: <span style="color: #000000;">eval</span><span style="color: #000000;">&#40;</span> bc := <span style="color: #000000;">&#123;</span> || i % <span style="color: #000000;">16</span> <span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>...........................<span style="color: #000000;">0.31</span><br /><span style="color: #000000;">&#91;</span> T025: <span style="color: #000000;">eval</span><span style="color: #000000;">&#40;</span> <span style="color: #000000;">&#123;</span> |x| x % <span style="color: #000000;">16</span> <span style="color: #000000;">&#125;</span>, i <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>.............................<span style="color: #000000;">0.38</span><br /><span style="color: #000000;">&#91;</span> T026: <span style="color: #000000;">eval</span><span style="color: #000000;">&#40;</span> bc := <span style="color: #000000;">&#123;</span> |x| x % <span style="color: #000000;">16</span> <span style="color: #000000;">&#125;</span>, i <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>.......................<span style="color: #000000;">0.30</span><br /><span style="color: #000000;">&#91;</span> T027: <span style="color: #000000;">eval</span><span style="color: #000000;">&#40;</span> <span style="color: #000000;">&#123;</span> |x| f1<span style="color: #000000;">&#40;</span> x <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#125;</span>, i <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>............................<span style="color: #000000;">0.63</span><br /><span style="color: #000000;">&#91;</span> T028: <span style="color: #000000;">eval</span><span style="color: #000000;">&#40;</span> bc := <span style="color: #000000;">&#123;</span> |x| f1<span style="color: #000000;">&#40;</span> x <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#125;</span>, i <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>......................<span style="color: #000000;">0.48</span><br /><span style="color: #000000;">&#91;</span> T029: <span style="color: #000000;">eval</span><span style="color: #000000;">&#40;</span> bc := &<span style="color: #000000;">&#40;</span><span style="color: #ff0000;">"{ |x| f1( x ) }"</span><span style="color: #000000;">&#41;</span>, i <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>.................<span style="color: #000000;">0.47</span><br /><span style="color: #000000;">&#91;</span> T030: <span style="color: #000000;">x</span> := &<span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"f1("</span> + str<span style="color: #000000;">&#40;</span>i<span style="color: #000000;">&#41;</span> + <span style="color: #ff0000;">")"</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>........................<span style="color: #000000;">4.22</span><br /><span style="color: #000000;">&#91;</span> T031: <span style="color: #000000;">bc</span> := &<span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"{|x|f1(x)}"</span> <span style="color: #000000;">&#41;</span>, eval<span style="color: #000000;">&#40;</span> bc, i <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>................<span style="color: #000000;">4.52</span><br /><span style="color: #000000;">&#91;</span> T032: <span style="color: #000000;">x</span> := valtype<span style="color: #000000;">&#40;</span> x <span style="color: #000000;">&#41;</span> +  valtype<span style="color: #000000;">&#40;</span> i <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>.....................<span style="color: #000000;">0.59</span><br /><span style="color: #000000;">&#91;</span> T033: <span style="color: #000000;">x</span> := strzero<span style="color: #000000;">&#40;</span> i % <span style="color: #000000;">100</span>, <span style="color: #000000;">2</span> <span style="color: #000000;">&#41;</span> $ a<span style="color: #000000;">&#91;</span> i % <span style="color: #000000;">16</span> + <span style="color: #000000;">1</span> <span style="color: #000000;">&#93;</span> <span style="color: #000000;">&#93;</span>..........<span style="color: #000000;">0.86</span><br /><span style="color: #000000;">&#91;</span> T034: <span style="color: #000000;">x</span> := a<span style="color: #000000;">&#91;</span> i % <span style="color: #000000;">16</span> + <span style="color: #000000;">1</span> <span style="color: #000000;">&#93;</span> == s <span style="color: #000000;">&#93;</span>.............................<span style="color: #000000;">0.25</span><br /><span style="color: #000000;">&#91;</span> T035: <span style="color: #000000;">x</span> := a<span style="color: #000000;">&#91;</span> i % <span style="color: #000000;">16</span> + <span style="color: #000000;">1</span> <span style="color: #000000;">&#93;</span> = s <span style="color: #000000;">&#93;</span>..............................<span style="color: #000000;">0.31</span><br /><span style="color: #000000;">&#91;</span> T036: <span style="color: #000000;">x</span> := a<span style="color: #000000;">&#91;</span> i % <span style="color: #000000;">16</span> + <span style="color: #000000;">1</span> <span style="color: #000000;">&#93;</span> >= s <span style="color: #000000;">&#93;</span>.............................<span style="color: #000000;">0.28</span><br /><span style="color: #000000;">&#91;</span> T037: <span style="color: #000000;">x</span> := a<span style="color: #000000;">&#91;</span> i % <span style="color: #000000;">16</span> + <span style="color: #000000;">1</span> <span style="color: #000000;">&#93;</span> <= s <span style="color: #000000;">&#93;</span>.............................<span style="color: #000000;">0.30</span><br /><span style="color: #000000;">&#91;</span> T038: <span style="color: #000000;">x</span> := a<span style="color: #000000;">&#91;</span> i % <span style="color: #000000;">16</span> + <span style="color: #000000;">1</span> <span style="color: #000000;">&#93;</span> < s <span style="color: #000000;">&#93;</span>..............................<span style="color: #000000;">0.30</span><br /><span style="color: #000000;">&#91;</span> T039: <span style="color: #000000;">x</span> := a<span style="color: #000000;">&#91;</span> i % <span style="color: #000000;">16</span> + <span style="color: #000000;">1</span> <span style="color: #000000;">&#93;</span> > s <span style="color: #000000;">&#93;</span>..............................<span style="color: #000000;">0.30</span><br /><span style="color: #000000;">&#91;</span> T040: <span style="color: #000000;">ascan</span><span style="color: #000000;">&#40;</span> a, i % <span style="color: #000000;">16</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>....................................<span style="color: #000000;">0.39</span><br /><span style="color: #000000;">&#91;</span> T041: <span style="color: #000000;">ascan</span><span style="color: #000000;">&#40;</span> a, <span style="color: #000000;">&#123;</span> |x| x == i % <span style="color: #000000;">16</span> <span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>.......................<span style="color: #000000;">3.55</span><br /><span style="color: #000000;">&#91;</span> T042: <span style="color: #000000;">iif</span><span style="color: #000000;">&#40;</span> i%<span style="color: #000000;">1000</span>==<span style="color: #000000;">0</span>, a:=<span style="color: #000000;">&#123;</span><span style="color: #000000;">&#125;</span>, <span style="color: #000000;">&#41;</span> , aadd<span style="color: #000000;">&#40;</span>a,<span style="color: #000000;">&#123;</span>i,<span style="color: #000000;">1</span>,.T.,s,s2,a2 <span style="color: #000000;">&#93;</span>....<span style="color: #000000;">0.88</span><br /><span style="color: #000000;">&#91;</span> T043: <span style="color: #000000;">x</span> := a <span style="color: #000000;">&#93;</span>................................................<span style="color: #000000;">0.05</span><br /><span style="color: #000000;">&#91;</span> T044: <span style="color: #000000;">x</span> := <span style="color: #000000;">&#123;</span><span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#93;</span>...............................................<span style="color: #000000;">0.14</span><br /><span style="color: #000000;">&#91;</span> T045: <span style="color: #000000;">f0</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>..................................................<span style="color: #000000;">0.13</span><br /><span style="color: #000000;">&#91;</span> T046: <span style="color: #000000;">f1</span><span style="color: #000000;">&#40;</span> i <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>...............................................<span style="color: #000000;">0.20</span><br /><span style="color: #000000;">&#91;</span> T047: <span style="color: #000000;">f2</span><span style="color: #000000;">&#40;</span> c<span style="color: #000000;">&#91;</span><span style="color: #000000;">1</span>...<span style="color: #000000;">8</span><span style="color: #000000;">&#93;</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>........................................<span style="color: #000000;">0.17</span><br /><span style="color: #000000;">&#91;</span> T048: <span style="color: #000000;">f2</span><span style="color: #000000;">&#40;</span> c<span style="color: #000000;">&#91;</span><span style="color: #000000;">1</span>...<span style="color: #000000;">40000</span><span style="color: #000000;">&#93;</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>....................................<span style="color: #000000;">0.16</span><br /><span style="color: #000000;">&#91;</span> T049: <span style="color: #000000;">f2</span><span style="color: #000000;">&#40;</span> @c<span style="color: #000000;">&#91;</span><span style="color: #000000;">1</span>...<span style="color: #000000;">40000</span><span style="color: #000000;">&#93;</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>...................................<span style="color: #000000;">0.16</span><br /><span style="color: #000000;">&#91;</span> T050: <span style="color: #000000;">f2</span><span style="color: #000000;">&#40;</span> @c<span style="color: #000000;">&#91;</span><span style="color: #000000;">1</span>...<span style="color: #000000;">40000</span><span style="color: #000000;">&#93;</span> <span style="color: #000000;">&#41;</span>, c2 := c <span style="color: #000000;">&#93;</span>..........................<span style="color: #000000;">0.22</span><br /><span style="color: #000000;">&#91;</span> T051: <span style="color: #000000;">f3</span><span style="color: #000000;">&#40;</span> a, a2, s, i, s2, bc, i, n, x <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>....................<span style="color: #000000;">0.48</span><br /><span style="color: #000000;">&#91;</span> T052: <span style="color: #000000;">f2</span><span style="color: #000000;">&#40;</span> a <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>...............................................<span style="color: #000000;">0.16</span><br /><span style="color: #000000;">&#91;</span> T053: <span style="color: #000000;">x</span> := f4<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>.............................................<span style="color: #000000;">0.72</span><br /><span style="color: #000000;">&#91;</span> T054: <span style="color: #000000;">x</span> := f5<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>.............................................<span style="color: #000000;">0.52</span><br /><span style="color: #000000;">&#91;</span> T055: <span style="color: #000000;">x</span> := space<span style="color: #000000;">&#40;</span><span style="color: #000000;">16</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>........................................<span style="color: #000000;">0.31</span><br /><span style="color: #000000;">&#91;</span> T056: <span style="color: #000000;">f_prv</span><span style="color: #000000;">&#40;</span> c <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>............................................<span style="color: #000000;">0.69</span><br />====================================================================<br /><span style="color: #000000;">&#91;</span> total application time: <span style="color: #000000;">&#93;</span>....................................<span style="color: #000000;">31.41</span><br /><span style="color: #000000;">&#91;</span> total real time: <span style="color: #000000;">&#93;</span>...........................................<span style="color: #000000;">32.92</span><br /><br />So, more than <span style="color: #000000;">25</span>% speed increase is gained. It<span style="color: #ff0000;">'s big enough, IMO :)</span></div>[/code:rcoyzg0h] Use your traditional BCC73 to utilize this package, in other words, consider it as an alternative binary download. --or-- if you wish to use Borland clang, you can download it here. It is free: [url:rcoyzg0h]http&#58;//altd&#46;embarcadero&#46;com/download/bcppbuilder/BCC101&#46;zip[/url:rcoyzg0h] download xharbour-clang: [url:rcoyzg0h]http&#58;//www&#46;mediafire&#46;com/file/lfh1ly96zk7qwmk/xharbour-clang_win32_bcc73_20170902&#46;7z[/url:rcoyzg0h]
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 ..etc Browsing the array This is a sample where i browse certain fields of the dbf , if you want them all remove the columns syntax REDEFINE XBROWSE oBrw ID 201 OF ODLG ; COLUMNS 33,34,4,22,31,23,6,7,8,24,21 ; HEADERS "Date" + CRLF + "Création","Style", "N°" + CRLF + "Devis","Client","Date" + CRLF + "Impression","Téléphone","Total" + CRLF + "HT","Total" + CRLF + "TTC","Total" + CRLF + "Acomptes",; " ","Taux" + CRLF + "Tva"; FOOTERS ; FONT aFont ; COLORS {|| { CLR_BLUE, CLR_WHITE } } ; COLSIZES asize ; array TVISU lines AUTOSORT In order to read them from last to first WITH OBJECT oBrw:aCols["Date" + CRLF + "Création"] // example for the first column , i never address acols[1] or whatever, always address the column header definition :cOrder := If( corder == 'A', 'D', 'A' ) :SetOrder() END Hth Richard