topic
stringlengths
1
63
text
stringlengths
1
577k
for. Mr. Rao
[quote="Richard Chidiak":16qsbx2c]i did not know he was at hospital.[/quote:16qsbx2c] Me neither. My best wishes to Rao! EMG
for. Mr. Rao
My Best to Rao as well !! Rick Lipkin
for. Mr. Rao
No questions. Just best wishes for a healthy return to the forum.
for. Mr. Rao
Sincere thanks to all for the good wishes. I am ok now and back at work. There are too many things to catch up though. Reply to the original post by mgsoft: This can be done in many ways. This is one approach. [code=fw:bk2n362m]<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> oWnd, oBrw, aData, cFieldList<br /><br />&nbsp; &nbsp; SET DATE ITALIAN<br />&nbsp; &nbsp; SET CENTURY <span style="color: #0000ff;">ON</span><br />&nbsp; &nbsp; SET DELETED <span style="color: #0000ff;">ON</span><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;USE CUSTOMER <span style="color: #00C800;">NEW</span> SHARED READONLY<br />&nbsp; &nbsp;SET FILTER <span style="color: #0000ff;">TO</span> !DELETED<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;GO TOP<br /><br />&nbsp; &nbsp;<span style="color: #B900B9;">// If all columns are required, comment out the next line.</span><br />&nbsp; &nbsp;cFieldList &nbsp;:= <span style="color: #000000;">&#91;</span> <span style="color: #ff0000;">"First"</span>, <span style="color: #ff0000;">"City"</span>, <span style="color: #ff0000;">"HireDate"</span>, <span style="color: #ff0000;">"Age"</span>, <span style="color: #ff0000;">"Salary"</span> <span style="color: #000000;">&#93;</span><br />&nbsp; &nbsp;aData &nbsp; &nbsp; &nbsp; := CUSTOMER-><span style="color: #000000;">&#40;</span> ReadIntoArray<span style="color: #000000;">&#40;</span> @cFieldList <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp;<span style="color: #0000ff;">DEFINE</span> <span style="color: #0000ff;">WINDOW</span> oWnd<br />&nbsp; &nbsp;@ <span style="color: #000000;">0</span>,<span style="color: #000000;">0</span> <span style="color: #0000ff;">XBROWSE</span> oBrw <span style="color: #0000ff;">OF</span> oWnd <span style="color: #0000ff;">AUTOCOLS</span> ARRAY aData HEADERS &cFieldList CELL LINES<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;oWnd:<span style="color: #000000;">oClient</span> &nbsp; := oBrw<br />&nbsp; &nbsp;<span style="color: #0000ff;">ACTIVATE</span> <span style="color: #0000ff;">WINDOW</span> oWnd<br />&nbsp; &nbsp;CLOSE <span style="color: #00C800;">DATA</span><br /><br /><span style="color: #00C800;">return</span> <span style="color: #000000;">&#40;</span><span style="color: #000000;">0</span><span style="color: #000000;">&#41;</span><br /><br /><span style="color: #B900B9;">//----------------------------------------------------------------------------//</span><br /><br /><span style="color: #00C800;">static</span> <span style="color: #00C800;">function</span> ReadIntoArray<span style="color: #000000;">&#40;</span> cList <span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp;<span style="color: #00C800;">local</span> bLine, aData, i, n<br /><br />&nbsp; &nbsp;<span style="color: #00C800;">if</span> Empty<span style="color: #000000;">&#40;</span> cList <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; n &nbsp; &nbsp; &nbsp; &nbsp;:= FCount<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; cList &nbsp; &nbsp;:= <span style="color: #ff0000;">'"'</span> &nbsp;+ FieldName<span style="color: #000000;">&#40;</span> <span style="color: #000000;">1</span> <span style="color: #000000;">&#41;</span> + <span style="color: #ff0000;">'"'</span><br />&nbsp; &nbsp; &nbsp; <span style="color: #00C800;">for</span> i := <span style="color: #000000;">2</span> <span style="color: #0000ff;">to</span> n<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;cList += <span style="color: #ff0000;">',"'</span> + FieldName<span style="color: #000000;">&#40;</span> i <span style="color: #000000;">&#41;</span> + <span style="color: #ff0000;">'"'</span><br />&nbsp; &nbsp; &nbsp; <span style="color: #00C800;">next</span><br />&nbsp; &nbsp;<span style="color: #00C800;">endif</span><br /><br />&nbsp; &nbsp;bLine &nbsp; &nbsp;:= &<span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"{||{"</span> + StrTran<span style="color: #000000;">&#40;</span> StrTran<span style="color: #000000;">&#40;</span> cList, <span style="color: #ff0000;">"'"</span>, <span style="color: #ff0000;">''</span> <span style="color: #000000;">&#41;</span>, <span style="color: #ff0000;">'"'</span>, <span style="color: #ff0000;">''</span> <span style="color: #000000;">&#41;</span> + <span style="color: #ff0000;">"}}"</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;aData &nbsp; &nbsp;:= Array<span style="color: #000000;">&#40;</span> n := OrdKeyCount<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp;GO TOP<br />&nbsp; &nbsp;DBEVAL<span style="color: #000000;">&#40;</span> <span style="color: #000000;">&#123;</span> || aData<span style="color: #000000;">&#91;</span> n-- <span style="color: #000000;">&#93;</span> := Eval<span style="color: #000000;">&#40;</span> bLine <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;GO TOP<br /><br /><span style="color: #00C800;">return</span> aData<br /><br /><span style="color: #B900B9;">//----------------------------------------------------------------------------//</span><br />&nbsp;</div>[/code:bk2n362m] Note of the filter "SET FILTER TO !DELETED()" : This filter is necessary to obtain accurate results from the functions OrdKeyCount(), OrdKeyGoTo(), OrdKeyNum(). This accuracy is desirable for XBrowse and also for the function I used in this program. This filter is Optimized by DBFCDX if there is a tag on the expression DELETED(). It is a good practice to add one TAG to every large DBF like: [code=fw:bk2n362m]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #0000ff;">INDEX</span> <span style="color: #0000ff;">ON</span> DELETED<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> TAG DELETED</div>[/code:bk2n362m] Another major advantage of having this index and setting this filter is that the frequently exprienced slownness in browsing large DBF files with many deleted records is avoided.
for. Mr. Rao
[quote:1ku8036g]oBrw:aCols["Date" + CRLF + "Création"] // example for the first column , i never address acols[1] or whatever, always address the column header definition [/quote:1ku8036g] This is a good practice because the order of the columns can be changed by the user at runtime, but the syntax appears inaccurate. This can be written as oBrw:oCol( "DateCreation" ) or oBrw:DateCreation. XBrowse matches "DateCreation" with the header after sripping CRLF and spaces. "DateCreation" matches header "Date" + CRLF + "Creation" or "Date Creation".
for. Mr. Rao
Thank you M. Rao Always something to learn from your great valuable posts. I will adapt my code, Best regards Richard
for. Mr. Rao
Thank you very much to all. Glad to see that Mr. Rao is Ok. I would like to know which is the best way for xBrowse to change order (starting from the end of the DBF and the array). Thank you.
for. Mr. Rao
[quote:2hym6xu2]I would like to know which is the best way for xBrowse to change order (starting from the end of the DBF and the array). [/quote:2hym6xu2] Can you please elaborate your question in greater detail?
for. Mr. Rao
Yes, sure. I have the following database: Code Company 1 ABC Video, S.A. 2 ARANGIO RUIZ, S.L. 3 SANZ CONSTRUCCIONES, C.B. 4 ZAPATA DEL RIO, S.L. I want the xBrowse to be sorted in the inverse order: 4 ZAPATA DEL RIO, S.L. 3 SANZ CONSTRUCCIONES, C.B. 2 ARANGIO RUIZ, S.L. 1 ABC VIDEO, S.A. So at the beginning of the xBrowse I get the latest companies. Thank you.
for. Mr. Rao
Very simple. Use OrdDescend() function. [url=http&#58;//img543&#46;imageshack&#46;us/i/descend&#46;jpg/:t6et0l0j][img:t6et0l0j]http&#58;//img543&#46;imageshack&#46;us/img543/8485/descend&#46;jpg[/img:t6et0l0j][/url:t6et0l0j] Here is the sample program: [code=fw:t6et0l0j]<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> oWnd, oBrw, aData, cFieldList<br /><br />&nbsp; &nbsp;SET DELETED <span style="color: #0000ff;">ON</span><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;CreateTestDBF<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp;USE COMPANY SHARED<br />&nbsp; &nbsp;SET ORDER <span style="color: #0000ff;">TO</span> TAG CODE<br />&nbsp; &nbsp;OrdDescend<span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">'CODE'</span>, <span style="color: #00C800;">nil</span>, .t. <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;GO TOP<br /><br />&nbsp; &nbsp;<span style="color: #0000ff;">DEFINE</span> <span style="color: #0000ff;">WINDOW</span> oWnd<br />&nbsp; &nbsp;@ <span style="color: #000000;">0</span>,<span style="color: #000000;">0</span> <span style="color: #0000ff;">XBROWSE</span> oBrw <span style="color: #0000ff;">OF</span> oWnd <span style="color: #0000ff;">AUTOCOLS</span> <span style="color: #0000ff;">ALIAS</span> <span style="color: #ff0000;">'COMPANY'</span> CELL LINES<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;oWnd:<span style="color: #000000;">oClient</span> &nbsp; := oBrw<br />&nbsp; &nbsp;<span style="color: #0000ff;">ACTIVATE</span> <span style="color: #0000ff;">WINDOW</span> oWnd<br />&nbsp; &nbsp;CLOSE <span style="color: #00C800;">DATA</span><br /><br /><span style="color: #00C800;">return</span> <span style="color: #000000;">&#40;</span><span style="color: #000000;">0</span><span style="color: #000000;">&#41;</span><br /><br /><span style="color: #B900B9;">//----------------------------------------------------------------------------//</span><br /><br /><span style="color: #00C800;">static</span> <span style="color: #00C800;">function</span> CreateTestDBF<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp;field CODE, COMPANY<br /><br />&nbsp; &nbsp;<span style="color: #00C800;">local</span> n<br />&nbsp; &nbsp;<span style="color: #00C800;">local</span> aData := <span style="color: #000000;">&#123;</span> ;<br />&nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#123;</span> &nbsp;<span style="color: #000000;">1</span>, &nbsp;<span style="color: #ff0000;">"ABC Video, S.A."</span> <span style="color: #000000;">&#125;</span>, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ;<br />&nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#123;</span> &nbsp;<span style="color: #000000;">2</span>, &nbsp;<span style="color: #ff0000;">"ARANGIO RUIZ, S.L."</span> <span style="color: #000000;">&#125;</span> , &nbsp; &nbsp; &nbsp; ;<br />&nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#123;</span> &nbsp;<span style="color: #000000;">3</span>, &nbsp;<span style="color: #ff0000;">"SANZ CONSTRUCCIONES, C.B."</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#123;</span> &nbsp;<span style="color: #000000;">4</span>, &nbsp;<span style="color: #ff0000;">"ZAPATA DEL RIO, S.L."</span> <span style="color: #000000;">&#125;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#125;</span><br />&nbsp; &nbsp;<span style="color: #00C800;">local</span> aCols := <span style="color: #000000;">&#123;</span> ;<br />&nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#123;</span> &nbsp;<span style="color: #ff0000;">"CODE"</span>, &nbsp; &nbsp; <span style="color: #ff0000;">"N"</span>, &nbsp;<span style="color: #000000;">2</span>, &nbsp; &nbsp;<span style="color: #000000;">0</span> &nbsp;<span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#123;</span> &nbsp;<span style="color: #ff0000;">"COMPANY"</span>, &nbsp;<span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">30</span>, &nbsp; &nbsp;<span style="color: #000000;">0</span> &nbsp;<span style="color: #000000;">&#125;</span> &nbsp;<span style="color: #000000;">&#125;</span><br /><br />&nbsp; &nbsp;DBCREATE<span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"COMPANY"</span>, aCols <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;USE COMPANY EXCLUSIVE<br />&nbsp; &nbsp;<span style="color: #00C800;">for</span> n := <span style="color: #000000;">1</span> <span style="color: #0000ff;">to</span> Len<span style="color: #000000;">&#40;</span> aData <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; DBAPPEND<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; FieldPut<span style="color: #000000;">&#40;</span> <span style="color: #000000;">1</span>, aData<span style="color: #000000;">&#91;</span> n <span style="color: #000000;">&#93;</span><span style="color: #000000;">&#91;</span> <span style="color: #000000;">1</span> <span style="color: #000000;">&#93;</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; FieldPut<span style="color: #000000;">&#40;</span> <span style="color: #000000;">2</span>, aData<span style="color: #000000;">&#91;</span> n <span style="color: #000000;">&#93;</span><span style="color: #000000;">&#91;</span> <span style="color: #000000;">2</span> <span style="color: #000000;">&#93;</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;<span style="color: #00C800;">next</span> n<br />&nbsp; &nbsp;<span style="color: #0000ff;">INDEX</span> <span style="color: #0000ff;">ON</span> CODE TAG CODE<br />&nbsp; &nbsp;<span style="color: #0000ff;">INDEX</span> <span style="color: #0000ff;">ON</span> UPPER<span style="color: #000000;">&#40;</span> COMPANY <span style="color: #000000;">&#41;</span> TAG COMPANY<br />&nbsp; &nbsp;CLOSE COMPANY<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:t6et0l0j]
force closure program execution
Hi, I have to be sure at 100% that every users every users are logged off. In your opinion is it dangerous to modify this? : [code=fw:3es4xquf]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">METHOD</span> ClockOn<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #00C800;">CLASS</span> TMsgBar<br /><br />   <span style="color: #00C800;">local</span> cTime := Time<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br />   <span style="color: #00C800;">if</span> ::<span style="color: #000000;">oClock</span> == <span style="color: #00C800;">nil</span><br />      <span style="color: #B900B9;">// keep the ':=' below for XBase++ compatibility</span><br />      ::<span style="color: #000000;">oClock</span> := TMsgItem<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: #00C800;">Self</span>, cTime, ::<span style="color: #000000;">GetWidth</span><span style="color: #000000;">&#40;</span> cTime <span style="color: #000000;">&#41;</span> + <span style="color: #000000;">12</span>,,,, .t.,;<br />                                 <span style="color: #000000;">&#123;</span> || WinExec<span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"Control date/time"</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#41;</span><br />      ::<span style="color: #000000;">oClock</span>:<span style="color: #000000;">lTimer</span> = .t.<br />      ::<span style="color: #000000;">oClock</span>:<span style="color: #000000;">bMsg</span>   = <span style="color: #000000;">&#123;</span> || <span style="color: #000000;">&#91;</span>b<span style="color: #000000;">&#93;</span>myTime<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#91;</span>/b<span style="color: #000000;">&#93;</span> <span style="color: #000000;">&#125;</span><br />   <span style="color: #00C800;">endif</span><br />   ::<span style="color: #000000;">CheckTimer</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br /><span style="color: #00C800;">return</span> <span style="color: #00C800;">nil</span><br /><br /><span style="color: #B900B9;">//---------------------------------------------------------------------------//</span><br /> </div>[/code:3es4xquf] and then //------------------------------------------------------------------------// [code=fw:3es4xquf]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">FUNCTION</span> MYTIME<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><span style="color: #00C800;">LOCAL</span> cTime := TIME<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><span style="color: #00C800;">IF</span> cTime >= <span style="color: #ff0000;">"20:00:00"</span><br />   logfile<span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"forced_exit.log"</span> , <span style="color: #000000;">&#123;</span> cTime , M->cUte_dos <span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#41;</span> <span style="color: #B900B9;">// M->cUte_dos is the number of user </span><br />   CLOSE DATABASE<br />   QUIT<br /><br /><span style="color: #00C800;">ENDIF</span><br /><span style="color: #00C800;">RETURN</span> cTime<br /> </div>[/code:3es4xquf] This is only a test condition IF cTime >= "20:00:00" Many thanks Marco
force closure program execution
Marco, I don't recommend to use QUIT. Instead of it, simply finish your app from the function Main(): function Main() ... return nil // application should reach this point
force closure program execution
Antonio, from the main function I define the window in this way. [code=fw:1jfzbj6n]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #0000ff;">DEFINE</span> <span style="color: #0000ff;">WINDOW</span> oMain &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;;<br />&nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">FROM</span> nTw , nLw <span style="color: #0000ff;">TO</span> nBw , nRw &nbsp; ;<br />&nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">TITLE</span> cTitle &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;;<br />&nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">ICON</span> oIcomain; <span style="color: #B900B9;">//oIcoMain &nbsp; &nbsp; ;</span><br />&nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">MENU</span> oMenu &nbsp; &nbsp; &nbsp; &nbsp;;<br />&nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">COLOR</span> RGB<span style="color: #000000;">&#40;</span> <span style="color: #000000;">255</span> , <span style="color: #000000;">255</span> , <span style="color: #000000;">255</span> <span style="color: #000000;">&#41;</span> , RGB<span style="color: #000000;">&#40;</span> <span style="color: #000000;">178</span> , <span style="color: #000000;">178</span> , <span style="color: #000000;">178</span> <span style="color: #000000;">&#41;</span> <span style="color: #0000ff;">PIXEL</span><br /><br />oMain:<span style="color: #000000;">bMoved</span> := <span style="color: #000000;">&#123;</span>|| oMain:<span style="color: #000000;">CoorsUpdate</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#125;</span><br /><br />&nbsp; &nbsp; SET <span style="color: #0000ff;">MESSAGE</span> <span style="color: #0000ff;">OF</span> oMain <span style="color: #0000ff;">TO</span> <span style="color: #ff0000;">"Winrap: "</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; + ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; M->cUte_dos &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;+ ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">" ("</span> + UPPER<span style="color: #000000;">&#40;</span>M->StampaWin<span style="color: #000000;">&#41;</span> + &nbsp; <span style="color: #ff0000;">")"</span> &nbsp; + ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">" ("</span> + M->dati_path + <span style="color: #ff0000;">")"</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ; &nbsp; <span style="color: #B900B9;">// era cCurFolder</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">CENTERED</span> CLOCK KEYBOARD <span style="color: #000000;">2007</span><br />&nbsp;</div>[/code:1jfzbj6n] Im sorry but I do not understand...
force closure program execution
Marco, He is saying not to use QUIT but rather create a condition that closes the main window. You can use the VALID clause to execute any codeblock. Remember that you have to return .t. for the window to close. ACTIVATE WINDOW oWnd...VALID (doWhatever(), .t.) QUITing in the middle of a program can leave stuff in memory and perhaps you need to other cleanup before exiting.
force table alias in complex select
Dear Friends, I have three tables where a field called Registro exists on two of them. This select Works fine in Access: "SELECT * FROM PRESTAMOS, LIBROS, LECTORES WHERE PRESTAMOS.REGISTRO = LIBROS.REGISTRO AND PRESTAMOS.REG_USUARI = LECTORES.REG_USUARI" ) Access converts first REIGSTRO from PRESTAMOS Table as PRESTAMOS.REGISTRO. The same with REGISTRO at LIBROS Table, converted as LIBROS.REGISTRO. But MySQL does not do such conversión. The resulting Recordset has a field REGISTRO twice. How can I forcé MySQL to work the same as Access please?: Thank you very much.
force table alias in complex select
Elvira, [quote="elvira":1fgg7g4i]Dear Friends, I have three tables where a field called Registro exists on two of them. This select Works fine in Access: "SELECT * FROM PRESTAMOS, LIBROS, LECTORES WHERE PRESTAMOS.REGISTRO = LIBROS.REGISTRO AND PRESTAMOS.REG_USUARI = LECTORES.REG_USUARI" ) Access converts first REIGSTRO from PRESTAMOS Table as PRESTAMOS.REGISTRO. The same with REGISTRO at LIBROS Table, converted as LIBROS.REGISTRO. But MySQL does not do such conversión. The resulting Recordset has a field REGISTRO twice. How can I forcé MySQL to work the same as Access please?: Thank you very much.[/quote:1fgg7g4i] This works at least on Access, MSSQL and MySQL: [code=fw:1fgg7g4i]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #ff0000;">"SELECT * FROM PRESTAMOS AS T1, LIBROS AS T2, LECTORES AS T3 WHERE T1.REGISTRO = T2.REGISTRO &nbsp;AND &nbsp;T1.REG_USUARI = T3.REG_USUARI"</span></div>[/code:1fgg7g4i] EMG
force table alias in complex select
Mr. Enrico, It Works in Access but it still does not work with MySQL. If I do an xBrowse, I see the same fields with no tx, even on registro field. Thaks.
force table alias in complex select
Elvira, [quote="elvira":348ej2bi]Mr. Enrico, It Works in Access but it still does not work with MySQL. If I do an xBrowse, I see the same fields with no tx, even on registro field. Thaks.[/quote:348ej2bi] All I can say is that I'm using that syntax with MySQL without problems. Do you get any error messages? EMG
force table alias in complex select
The issue raised by Mr Elvira is different. You will get duplicate column names when you use SELECT * , unless you specify every column and provide unique alias column name for the duplicated column names, in all DBMS expect MSACCESS. It is highly desirable to avoid duplicate field names by laboriously specifying all field names in the select clause. Sad no DBMS, except MSACESS provides this automatic feature. Any way, provided you do not make it a habit, you can tolerate the duplicate field names in the recordset and it does not hurt you much if you take some precautions like refer to fields by number and not by name. Eg: oRs:Fields(0):Value and not oRs:Fields( "name" ):Value Each field contains in its properties collection the real field name in the table and the basetable from which the field is read. Recordset does not get confused. That brings me to the point that xbrowse does get confused. XBrowse reads and writes fields by names ( eg. oRs:Fields( "name" ):Value := uNewVal ) It is high time I make some suitable changes.
force table alias in complex select
NageswaraRao, [quote="nageswaragunupudi":1stdic49]The issue raised by Mr Elvira is different. You will get duplicate column names when you use SELECT * , unless you specify every column and provide unique alias column name for the duplicated column names, in all DBMS expect MSACCESS.[/quote:1stdic49] Ok, I didn't understand. You can use [code=fw:1stdic49]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #0000ff;">SELECT</span> *, PRESTAMOS.REGISTRO AS PREREG, etc. <span style="color: #0000ff;">FROM</span> ...</div>[/code:1stdic49] [quote="nageswaragunupudi":1stdic49]It is highly desirable to avoid duplicate field names[/quote:1stdic49] I agree. EMG
forgotton password
Hi all, i changed my main browser to FireFox. Unfortunatelly this browser can not import all settings of IE ( FF claims to do so, but it doesn't work ). So i clicked the link 'i forgot my password'. PhpBB sends me an email with a new password and a link to activate it. But this link doesn't work. I get a forum page with message 'Not Authorised' <!-- s:( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":(" title="Sad" /><!-- s:( --> Thanks for any advice Regards, Detlef ( still with IE 7 )
forgotton password
This would require Antonio's help as the admin Detlef
forgotton password
Antonio, could you please, help me? Regards, Detlef
forgotton password
Detlef, Instructions just sent to your email,
forgotton password
Thanks Antonio. I succeeded to log in from FireFox. <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> Regards, Detlef
form designer
why I cannot save the form created into prg ? there is a bug ? when I click on "view form as fivewin source" it not make anything
form designer
Silvio, It is a work in development so it may be an unfinished feature.
form pdf
Hi, How is it possible to read the content of a pdf form with fivewin . Is there a dll or activex ? Thanks for your help.
form pdf
[color=#0000BF:20zp0e1s]Adobe Acrobat Pro version is require to use the sample.[/color:20zp0e1s] [code=fw:20zp0e1s]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">function</span> main<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />    AcroApp:= CreateObject<span style="color: #000000;">&#40;</span><span style="color: #ff0000;">"AcroExch.App"</span><span style="color: #000000;">&#41;</span><br />    theForm:= CreateObject<span style="color: #000000;">&#40;</span><span style="color: #ff0000;">"AcroExch.PDDoc"</span><span style="color: #000000;">&#41;</span><br />    theForm:<span style="color: #000000;">Open</span><span style="color: #000000;">&#40;</span><span style="color: #ff0000;">"c:<span style="color: #000000;">\r</span>eports<span style="color: #000000;">\t</span>est.pdf"</span><span style="color: #000000;">&#41;</span><br />    jso:= theForm:<span style="color: #000000;">GetJSObject</span><br />    text1 = jso:<span style="color: #000000;">getField</span><span style="color: #000000;">&#40;</span><span style="color: #ff0000;">"fld1"</span><span style="color: #000000;">&#41;</span>:<span style="color: #000000;">Value</span><br />    text2 = jso:<span style="color: #000000;">getField</span><span style="color: #000000;">&#40;</span><span style="color: #ff0000;">"fld2"</span><span style="color: #000000;">&#41;</span>:<span style="color: #000000;">Value</span><br />    ?text1<br />    ?text2<br /><span style="color: #00C800;">return</span> <span style="color: #00C800;">nil</span></div>[/code:20zp0e1s]
form pdf
Thanks for this answer . Do you have a help file giving more info about this communication . Is it also possible to write info in a field with fivewin and save this info in the PDF ? Thanks .
form pdf
[code=fw:18r952dl]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">function</span> main<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />    AcroApp:= CreateObject<span style="color: #000000;">&#40;</span><span style="color: #ff0000;">"AcroExch.App"</span><span style="color: #000000;">&#41;</span><br />    theForm:= CreateObject<span style="color: #000000;">&#40;</span><span style="color: #ff0000;">"AcroExch.PDDoc"</span><span style="color: #000000;">&#41;</span><br />    theForm:<span style="color: #000000;">Open</span><span style="color: #000000;">&#40;</span><span style="color: #ff0000;">"c:<span style="color: #000000;">\r</span>eport<span style="color: #000000;">\t</span>est.pdf"</span><span style="color: #000000;">&#41;</span><br />    jso:= theForm:<span style="color: #000000;">GetJSObject</span><br /><br />********** <span style="color: #0000ff;">To</span> Read Pdf form Field  ***********************<br />    text1 = jso:<span style="color: #000000;">getField</span><span style="color: #000000;">&#40;</span><span style="color: #ff0000;">"fld1"</span><span style="color: #000000;">&#41;</span>:<span style="color: #000000;">Value</span><br />    text2 = jso:<span style="color: #000000;">getField</span><span style="color: #000000;">&#40;</span><span style="color: #ff0000;">"fld2"</span><span style="color: #000000;">&#41;</span>:<span style="color: #000000;">Value</span><br /><br />********** <span style="color: #0000ff;">To</span> save pdf form field ************************<br />    jso:<span style="color: #000000;">getField</span><span style="color: #000000;">&#40;</span><span style="color: #ff0000;">"fld1"</span><span style="color: #000000;">&#41;</span>:<span style="color: #000000;">Value</span>=<span style="color: #ff0000;">"Value Changed"</span><br />    TheForm:<span style="color: #000000;">save</span><span style="color: #000000;">&#40;</span>,<span style="color: #ff0000;">"c:<span style="color: #000000;">\r</span>eport<span style="color: #000000;">\t</span>est.pdf"</span><span style="color: #000000;">&#41;</span><br />    <br /><span style="color: #00C800;">return</span> <span style="color: #00C800;">nil</span><br /> </div>[/code:18r952dl]
form pdf
Thanks for this answer, Do you have a help or pdf file with more info about this ? Thanks
form pdf
<!-- m --><a class="postlink" href="http://help.adobe.com/livedocs/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/wwhelp/wwhimpl/common/html/wwhelp.htm?context=Acrobat9_HTMLHelp&file=IAC_API_OLE_Objects.103.3.html">http://help.adobe.com/livedocs/acrobat_ ... 103.3.html</a><!-- m -->
form pdf
Jack, you can search this forum for pdftk if you need to fill pdf forms
formateo fecha xbrowse
Hola Gente En xbrowse deseo que la col fecha salga asi dd/mm/yyyy pero no consigo hacerlo [img] <!-- m --><a class="postlink" href="http://ge.tt/1WmryDx2">http://ge.tt/1WmryDx2</a><!-- m --> [/img] [code=fw:ieucipiu]<div class="fw" id="{CB}" style="font-family: monospace;"><br />   SET DATE FORMAT <span style="color: #0000ff;">TO</span> <span style="color: #ff0000;">"DD/MM/YYYY"</span><br /><br />    oCon1:=AbreConexBD<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />    cSql:= <span style="color: #ff0000;">"SELECT codubi, codusu, tipcam, dsctop, numero, facbol, fecha, moneda, totbruto, totdscto,totsub, totigv, total, ng,"</span><br />    cSql+=<span style="color: #ff0000;">"numfac, tdafab, ruc, estado from cabguia where left(CODUSU,2)='"</span>+<span style="color: #0000ff;">left</span><span style="color: #000000;">&#40;</span>codusu,<span style="color: #000000;">2</span><span style="color: #000000;">&#41;</span>+<span style="color: #ff0000;">"' and mes = '"</span>+cMes+<span style="color: #ff0000;">"' order by numero desc"</span><br /><br />    lRs:=.f.<br />    <span style="color: #00C800;">TRY</span><br />      oRs1 := TOleAuto<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;">"ADODB.RecordSet"</span> <span style="color: #000000;">&#41;</span><br />      WITH OBJECT oRs1<br />        :<span style="color: #000000;">ActiveConnection</span> := oCon1<br />        :<span style="color: #000000;">Source</span>             := cSql<br />        :<span style="color: #000000;">CursorLocation</span>     := adUseClient<br />        :<span style="color: #000000;">CursorType</span>         := adOpenStatic<br />        :<span style="color: #000000;">LockType</span>           := adLockOptimistic<br />        :<span style="color: #000000;">Open</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />      END<br />      lRS := .t.<br />    CATCH oError<br />      MsgStop<span style="color: #000000;">&#40;</span> oError:<span style="color: #000000;">Description</span> <span style="color: #000000;">&#41;</span><br />    END<br /><br />    xbrNumFormat<span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"A"</span>, .t. <span style="color: #000000;">&#41;</span><br /><br />    <span style="color: #0000ff;">REDEFINE</span> <span style="color: #0000ff;">XBROWSE</span> oBrw                                    ;<br />     DATASOURCE oRs1                                         ;<br />     COLUMNS <span style="color: #ff0000;">"FACBOL"</span>,<span style="color: #ff0000;">"FECHA"</span>,<span style="color: #ff0000;">"NUMERO"</span>,<span style="color: #ff0000;">"NG"</span>,<span style="color: #ff0000;">"MONEDA"</span>,;<br />             <span style="color: #ff0000;">"TOTBRUTO"</span>,<span style="color: #ff0000;">"TOTDSCTO"</span>,<span style="color: #ff0000;">"TOTSUB"</span>,<span style="color: #ff0000;">"TOTIGV"</span>,<span style="color: #ff0000;">"TOTAL"</span> ;<br />      FIELDSIZES <span style="color: #000000;">30</span>,<span style="color: #000000;">68</span>,<span style="color: #000000;">54</span>,<span style="color: #000000;">200</span>,<span style="color: #000000;">30</span>,<span style="color: #000000;">85</span>,<span style="color: #000000;">60</span>,<span style="color: #000000;">60</span>,<span style="color: #000000;">60</span>,<span style="color: #000000;">85</span>              ;<br />      HEADERS                               ;<br />             <span style="color: #ff0000;">"F/B"</span>                          ;<br />            ,<span style="color: #ff0000;">"FECHA"</span>                        ;<br />            ,<span style="color: #ff0000;">"NUMERO"</span>                       ;<br />            ,<span style="color: #ff0000;">"CLIENTE"</span>                      ;<br />            ,<span style="color: #ff0000;">"MON."</span>                         ;<br />            ,<span style="color: #ff0000;">"T.BRUTO"</span>                      ;<br />            ,<span style="color: #ff0000;">"T.DSCTO"</span>                      ;<br />            ,<span style="color: #ff0000;">"SUBTOT"</span>                       ;<br />            ,<span style="color: #ff0000;">"IGV"</span>                          ;<br />            ,<span style="color: #ff0000;">"TOTAL"</span>                        ;<br />      <span style="color: #0000ff;">ID</span> <span style="color: #000000;">4001</span> <span style="color: #0000ff;">OF</span> oDlg                       ;<br />      LINES CELL NOBORDER <span style="color: #0000ff;">UPDATE</span><br /> </div>[/code:ieucipiu] En management studio se ve asi: [img] <!-- m --><a class="postlink" href="http://ge.tt/7rMtyDx2">http://ge.tt/7rMtyDx2</a><!-- m --> [/img] Gracias
formateo fecha xbrowse
Please make sure that you stored dates as dates and not as character data in the table. By default, xbrowse displays dates in the Set Date format. In addition, you can display dates in a different format by specifying oCol:cEditPicture. Example: [code=fw:1fa4fv9b]<div class="fw" id="{CB}" style="font-family: monospace;"><br />&nbsp; &nbsp;<span style="color: #00C800;">local</span> oCn, oRs<br /><br />&nbsp; &nbsp;SET DATE FORMAT <span style="color: #0000ff;">TO</span> <span style="color: #ff0000;">"dd/mm/yyyy"</span><br /><br />&nbsp; &nbsp;oCn &nbsp; := FW_OpenAdoConnection<span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"xbrtest.mdb"</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;oRs &nbsp; := FW_OpenRecordSet<span style="color: #000000;">&#40;</span> oCn, <span style="color: #ff0000;">"customer"</span> <span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp;XBROWSER oRs COLUMNS <span style="color: #ff0000;">"FIRST"</span>, <span style="color: #ff0000;">"HIREDATE"</span>, <span style="color: #ff0000;">"HIREDATE"</span>, <span style="color: #ff0000;">"HIREDATE"</span> ;<br />&nbsp; &nbsp;SETUP oBrw:<span style="color: #000000;">cEditPictures</span> := <span style="color: #000000;">&#123;</span> <span style="color: #00C800;">nil</span>, <span style="color: #00C800;">nil</span>, <span style="color: #ff0000;">"yyyy-mm-dd"</span>, <span style="color: #ff0000;">"dd mmm yyyy"</span> <span style="color: #000000;">&#125;</span><br /><br />&nbsp; &nbsp;oRs:<span style="color: #000000;">Close</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;oCn:<span style="color: #000000;">Close</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />&nbsp;</div>[/code:1fa4fv9b] [url=https&#58;//imageshack&#46;com/i/pmckn4Bsp:1fa4fv9b][img:1fa4fv9b]https&#58;//imagizer&#46;imageshack&#46;com/v2/xq90/922/ckn4Bs&#46;png[/img:1fa4fv9b][/url:1fa4fv9b]
formateo fecha xbrowse
thank you mr. nages, but it does not work i get this result [img] <!-- m --><a class="postlink" href="http://s2.subirimagenes.com/otros/previo/thump_9904255error2.jpg">http://s2.subirimagenes.com/otros/previ ... error2.jpg</a><!-- m --> [/img] this is my code [code=fw:1laqj5c4]<div class="fw" id="{CB}" style="font-family: monospace;"><br />    SET DATE FORMAT <span style="color: #0000ff;">TO</span> <span style="color: #ff0000;">"dd/mm/yyyy"</span><br /><br />    xbrNumFormat<span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"A"</span>, .t. <span style="color: #000000;">&#41;</span><br /><br />    <span style="color: #0000ff;">REDEFINE</span> <span style="color: #0000ff;">XBROWSE</span> oBrw                                    ;<br />     DATASOURCE oRs1                                         ;<br />     COLUMNS <span style="color: #ff0000;">"FACBOL"</span>,<span style="color: #ff0000;">"FECHA"</span>,<span style="color: #ff0000;">"NUMERO"</span>,<span style="color: #ff0000;">"NG"</span>,<span style="color: #ff0000;">"MONEDA"</span>,;<br />             <span style="color: #ff0000;">"TOTBRUTO"</span>,<span style="color: #ff0000;">"TOTDSCTO"</span>,<span style="color: #ff0000;">"TOTSUB"</span>,<span style="color: #ff0000;">"TOTIGV"</span>,<span style="color: #ff0000;">"TOTAL"</span> ;<br />      FIELDSIZES <span style="color: #000000;">30</span>,<span style="color: #000000;">68</span>,<span style="color: #000000;">54</span>,<span style="color: #000000;">200</span>,<span style="color: #000000;">30</span>,<span style="color: #000000;">85</span>,<span style="color: #000000;">60</span>,<span style="color: #000000;">60</span>,<span style="color: #000000;">60</span>,<span style="color: #000000;">85</span>              ;<br />      HEADERS                               ;<br />             <span style="color: #ff0000;">"F/B"</span>                          ;<br />            ,<span style="color: #ff0000;">"FECHA"</span>                        ;<br />            ,<span style="color: #ff0000;">"NUMERO"</span>                       ;<br />            ,<span style="color: #ff0000;">"CLIENTE"</span>                      ;<br />            ,<span style="color: #ff0000;">"MON."</span>                         ;<br />            ,<span style="color: #ff0000;">"T.BRUTO"</span>                      ;<br />            ,<span style="color: #ff0000;">"T.DSCTO"</span>                      ;<br />            ,<span style="color: #ff0000;">"SUBTOT"</span>                       ;<br />            ,<span style="color: #ff0000;">"IGV"</span>                          ;<br />            ,<span style="color: #ff0000;">"TOTAL"</span>                        ;<br />      <span style="color: #0000ff;">ID</span> <span style="color: #000000;">4001</span> <span style="color: #0000ff;">OF</span> oDlg                       ;<br />      LINES CELL NOBORDER <span style="color: #0000ff;">UPDATE</span>      <br /><br />      oBrw:<span style="color: #000000;">cEditPictures</span> := <span style="color: #000000;">&#123;</span> <span style="color: #00C800;">nil</span>, <span style="color: #ff0000;">"dd/mm/yyyy"</span> <span style="color: #000000;">&#125;</span><br /><br /> </div>[/code:1laqj5c4]
formateo fecha xbrowse
[quote="nageswaragunupudi":3v61yh3e]Please make sure that you stored dates as dates and not as character data in the table. By default, xbrowse displays dates in the Set Date format. In addition, you can display dates in a different format by specifying oCol:cEditPicture. [/quote:3v61yh3e] my field is date as you can see it [url] <!-- m --><a class="postlink" href="http://s2.subirimagenes.com/otros/previo/thump_9904260tabla.jpg">http://s2.subirimagenes.com/otros/previ ... 0tabla.jpg</a><!-- m -->[/url]
formateo fecha xbrowse
Can you please do this small test and let us know the results? After opening the RecordSet oRs1, please insert these lines of code: [code=fw:180o8svr]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oRs1:<span style="color: #000000;">MoveNext</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />? oRs1:<span style="color: #000000;">Fields</span><span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"FECHA"</span> <span style="color: #000000;">&#41;</span>:<span style="color: #000000;">Type</span>, ValType<span style="color: #000000;">&#40;</span> oRs1:<span style="color: #000000;">Fields</span><span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"FECHA"</span> <span style="color: #000000;">&#41;</span>:<span style="color: #000000;">Value</span> <span style="color: #000000;">&#41;</span><br />&nbsp;</div>[/code:180o8svr]
formato Excel.
Hola He encontrado el formato de los ficheros xls, por si a alguien le interesa: [url:86uxfhfs]http&#58;//www&#46;openoffice&#46;org/sc/excelfileformat&#46;pdf[/url:86uxfhfs] Un saludo.
formato Excel.
Gracias, a mi si me interesa <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) -->
formatted NTFS
Is it possible to check if a disk is formatted NTFS. Thanks in advance Otto
formatted NTFS
Try this command line: fsutil fsinfo volumeinfo c:\ You can also try msinfo32 /report infos.txt or undex XP msinfo32 /report infos.txt /categories +ComponentsStorageDrives and search the generated file for the entry of the drive you need information about. You could also use the tdiskinfo class available from [url:2glob2aq]http&#58;//code&#46;google&#46;com/p/fivewin-contributions/downloads/detail?name=TDiskInfo%20Versi%C3%B3n%202&#46;1&#46;zip&can=2&q=[/url:2glob2aq]
formulas estadisticas
Hola Foro Alguien podria indicarme donde puedo obtener las formulas estgadisticas para calcular: Linea de Tendencia Estimación Lineal Excel las trae pero debo incluirla en mi programa Fivewin/Harbour, las ayudas ofrecidas por Excel no me son claras, realmente no la entiendo, (la estadística no es mi fuerte). Cualquier información al respecto es bienvenida. Gracias Miguel
foro SQL
pues eso, seria bueno ir pensando en un foro para sql, creo que a muchos que nos interesa explorar mas y conocer sus virtudes, seria bueno tener algo de informacion por donde comenzar salu2 Pako
foro SQL
[quote="Francisco Horta":3f1rer9z]pues eso, seria bueno ir pensando en un foro para sql, creo que a muchos que nos interesa explorar mas y conocer sus virtudes, seria bueno tener algo de informacion por donde comenzar salu2 Pako[/quote:3f1rer9z] 'toy de acuerdo. Solo que no les pongan marcas ni patentes, pues (según yo) se pierde el interés.
foro SQL
Ryszard (desarrollador del equipo Harbour) ha comenzado a construir un SQLRDD que supongo se podrá portar a xHarbour tambien. Seguro que cuando esté listo, habrá más interés en SQL <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) -->
forum fivewin.com.br
brasileiros, alguem sabe o que aconteceu com forum fivewin.com.br?
forum fivewin.com.br
foi H4CK3D
forum fivewin.com.br
Foi hakeado, e agora está tudo fora do ar, fórum e site. Tentei mandar mensagem para o Gilmer e também voltou. Alguém sabe se eles voltam? E o sistema NFE do Gilmer, quem usa? como contatar os colegas ?
forum fivewin.com.br
Já falei com varios, realmente ninguém sabe se o Gilmer vai colocar no ar de novo, o que é uma pena, uma pelo acervo de informações que tem la, e pelos amigo, que alguns o unico contato era por la, caso ele não entra no ar podemos utilizar este forum aqui mesmo, ou até criar um outro aonde um colega já dispos de servidor e tudo para podermos começar, seria interessante os que participa do forum do brasil podesse dar suas opnião aqui... Obs: não podemos perder o contato visto que somos uma turma pequena Abraços Luiz Fernando (empresoft)
forum fivewin.com.br
Consegui uma resposta da Cheila, segue: [quote:1tsfo7fw] Boa tarde Rogério, o nosso site foi atacado por hacker e estamos fazendo de tudo para poder ativá-lo. Espero que dentro de uma semana no mais tardar já esteja tudo ok. Atenciosamente Cheila Tavares Virtual Object Informática Ltda 15 3231-6840 [/quote:1tsfo7fw]
forum fivewin.com.br
[quote="rogerio":36n5ao2d]Consegui uma resposta da Cheila, segue: [quote:36n5ao2d] Boa tarde Rogério, o nosso site foi atacado por hacker e estamos fazendo de tudo para poder ativá-lo. Espero que dentro de uma semana no mais tardar já esteja tudo ok. Atenciosamente Cheila Tavares Virtual Object Informática Ltda 15 3231-6840 [/quote:36n5ao2d][/quote:36n5ao2d] Maravilha, vamos aguardar entao... Abraços Luiz Fernando
forum fivewin.com.br
que aconteceu com o forum fivewin.com.br? está pedindo senha pq?
forum fivewin.com.br
O forum deve estar em manunteção ou alguém errou e colocou bloqueio na pasta. Até ontem estava normal. []´s
forum fivewin.com.br
Já funcionando, galera! Caso não os 'veja', feliz ano novo p/ todos. Euclides
forum fivewin.com.br
[url:102pgbor]https&#58;//www&#46;facebook&#46;com/groups/112382682270253/?ref=bookmarks[/url:102pgbor]
forum fivewin.com.br
Pessoal o Forum caiu novamente, já tem vários dias. Alguém sabe o motivo? []´s Rogerio
forums scheduled maintenance
[quote:k0g0me0i]Antonio, An upgrade to the system infrastructure is scheduled to take place in two phases on Tuesday, December 8 at 9:30pm MST. This upgrade will allow us to increase reliability and uptime for the services we provide. Phase one includes 15-20 minutes of downtime during which your website may be temporarily unavailable to your viewers. Your website will be back online, viewable, and all interactive features will be fully functional at the beginning of phase two. During phase two, certain portions of the Bluehost website including the login function, cPanel tools, and webmail will be unavailable. Email generated will not be lost, though you will experience some slowness while sending and receiving mail during the maintenance period. Thanks in advance for your patience during this upgrade. We're working hard to improve the services that power your website and we understand any maintenance can be an inconvenience. Bluehost Support <!-- m --><a class="postlink" href="http://www.bluehost.com">http://www.bluehost.com</a><!-- m --> For support go to <!-- m --><a class="postlink" href="http://bluehost.com/help">http://bluehost.com/help</a><!-- m -->[/quote:k0g0me0i]
forums.fivetechsoft.com
We are migrating to a much better hosting company where we will have much better speed access and much more disk space to host files, utilities, etc. without having to use rapidshare, hotshare, etc. and where these forums will continue growing and growing <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->We appreciate for your support and help. Soon you will see forums.fivetechsoft.com above in the address bar. In the meantime, you will see a fixed IP. Thanks!
forums.fivetechsoft.com
Estamos migrando a una empresa de hosting mucho más potente en donde tendremos una mejor velocidad de acceso y mucho más sitio disponible para alojar ficheros, utilidades, etc. sin tener que usar rapidshare, hotshare, etc. y en donde estos foros continuarán creciendo y creciendo <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->Os agradecemos vuestro apoyo y ayuda. Pronto vereis forums.fivetechsoft.com en la barra superior de direcciones. Mientras tanto, se muestra una IP fija.Gracias!
forums.fivetechsoft.com
Mr AntonioNew forums are working well
forums.fivetechsoft.com
Antonio,the forum work well.i asked me why you not used the 2nd level website instead of a directory and now you made that i thnked.there are many important procedure in this forum not run as the sendig private message to a user... why?Can you put on line alll old messages (and files) when there was outlook newsgroup ?Someone created a program fivenautilus to read old messages .. you can insert it for the fivewin community ...
forums.fivetechsoft.com
Silvio,Time to time. We are still configuring the current forums <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
forums.fivetechsoft.com
TestEMG
forums.fivetechsoft.com
Antonio ,when someone write a message the forum send an notication to my email.the message is wrong because there is the old address of the forum
forums.fivetechsoft.com
HolaYa me di cuenta hoy Dominguito aqui en Mexico <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> Suena todo muy bien <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> Saluditos <!-- s:wink: --><img src="{SMILIES_PATH}/icon_wink.gif" alt=":wink:" title="Wink" /><!-- s:wink: --> Aida <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) -->
forums.fivetechsoft.com
Silvio,Thanks for your feedback,In a few days the domain will be transfered so then it will be ok
forums.fivetechsoft.com
Antonio,the link to show only the newest answers of a topic since last login is not working
forums.fivetechsoft.com
Stefan,We expect that once the domain name is transfered, this same week, then the forums will work fine. Somehow, they point to the old forums.
forums.fivetechsoft.com
Antonio,Forums feel faster now! <!-- s;-) --><img src="{SMILIES_PATH}/icon_wink.gif" alt=";-)" title="Wink" /><!-- s;-) -->Patrick
forums.fivetechsoft.com
Patrick and all,Thanks for your feedback and support! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
forums.fivetechsoft.com
Antonio,trying to post I always get the old domain. Then I have to edit the link manually to :Regards,Otto<!-- m --><a class="postlink" href="http://fivetechsoft.com/forums/login.php?redirect=posting.php&mode=reply&t=10819">http://fivetechsoft.com/forums/login.ph ... ly&t=10819</a><!-- m --><!-- m --><a class="postlink" href="http://67.222.39.232/forums/login.php?redirect=posting.php&mode=reply&t=10819">http://67.222.39.232/forums/login.php?r ... ly&t=10819</a><!-- m -->
forums.fivetechsoft.com
Otto,We may have the domain transfered by tomorrow, and everything should work fine.We apologize for these inconveniencies,
forums.fivetechsoft.com
Antonio, Según las estadísticas, FWH (español e inglés) se han convertido en los foros principales, con diferencias sobre los demas. Pero si a número nos referimos, el foro de FWH en español es el lider con 4.429 temas y 20.629 mensajes.Diariamente entro en los dos foros (FWH-español e ingles) y no se si seria acertado refundir los dos foros e uno Espanglish, o al menos, permitir que en el foro en ingles, pudieramos escribir indistintamente en Ingles o español. Creo que la mayoria de los hispanos-hablantes entendemos el ingles, pero somos mas perezosos para escribirlo. Y creo que igual les ocurre a los anglosajones.
forums.fivetechsoft.com
ANTONIO, ENHORABUENA POR TODOS ESOS AVANCES,TODO LO BUENO SEA BIENVENIDO,Y PARA EL BUEN MANUEL.. QUISEARA DECIRLE QUE AL PAN, PAN Y AL VINO, VINO
forums.fivetechsoft.com
Jose,Gracias! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->Manuel,Gracias por la sugerencia, lo que ocurre es que existen usuarios a los que no les gusta que se mezclen varios idiomas. Es preferible que lo dejemos como está <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
forums.fivetechsoft.com
Hola Antonio,Aún carece de RSS para manejar feed.... imagino que será porque actualmente se maneja con una IP fija.Cuando tenga DNS se incluirá el feed ?Abrazos,
forums.fivetechsoft.com
Julio,Sí. Todo debe funcionar como lo hacía hasta ahora y supuestamente mejor (más velocidad, capacidad, etc.) <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
forums.fivetechsoft.com
Hola Antonio,[quote="Antonio Linares":qfxl3t11] Sí. Todo debe funcionar como lo hacía hasta ahora y supuestamente mejor (más velocidad, capacidad, etc.) <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->[/quote:qfxl3t11]te comento un inconveniente que he tenido: Si estoy viendo el foro sin loguearme, al darle a responder normalmente me lleva a la pagina de login, pero debe estar mal configurado el enlace automático porque referencia al login de la pagina antigua, y da error. Ojo que es entrando a 'responder' sin estar logueado, una vez logueado no hay problemas.Un saludo,Carlos.
forums.fivetechsoft.com
Carlos,A ver si hoy mismo terminamos la migración del dominio y no deberíamos tener ningún problema...
forums.fivetechsoft.com
Test
forums.fivetechsoft.com
Antonio,the login button leads me still to the old address "fivetechsoft.com/forums/...". I have to insert the new url manually, then it´s working and see the new messages signed with orange color. Also the links after the thread to get back lead to the old address.
forums.fivetechsoft.com
Stefan,<!-- w --><a class="postlink" href="http://www.fivetechsoft.com/forums">www.fivetechsoft.com/forums</a><!-- w --> is also fine now as we have migrated the domain already
forums.fivetechsoft.com
Antonio,ok, but the problem is, I don´t have the new posts marked using the old address. It seems to a login problem, after pressing the login button the login is executed without errors, but on the startpage the login link does not change to "Log out [...]" link. If I change the address manually to "forums.fivetechsoft...." I have the right site.Maybe it´s problem with my browser, I´m using firefox.
forums.fivetechsoft.com
Stefan,Some problems may be solved if you delete all cookies
forums.fivetechsoft.com
Antonio:The new forums still show an anomalous behaviour when performing a search:1.- Click on "Buscar"2.- Search for whatever word. A list of answers appear.3.- Click on any of these posts to read it4.- Press "Back" on the IE to return to the list of posts so that you can read the next one. "Pagina caducada" appears and you have to manually refresh the query.This happens with both IE 6 and IE 7Regards,Rafael
forums.fivetechsoft.com
Rafael,Could you please try it again using FireFox ? thanks,Also, please delete all cookies and internet temporary files
forums.fivetechsoft.com
Antonio,I have the same problem as Rafael when using 'Search' option.I am using IE browser Version 7.0.5730.13Regards,George
forums.fivetechsoft.com
Antonio:This behaviour only appears when you make a query with "Buscar" and read a post on the first page of results.If there are several pages of results and you go to read one on the second page, then the Back button works Ok.Erasing cookies does not seem to make any difference.Rafael
forums.fivetechsoft.com
Con Mozilla Firefox trabaja perfecto!El problema pasa solo con Internet Explorer.
forums.fivetechsoft.com
I don't have Firefox installed and can only confirm that it happend with both IE6 and 7. And it is quite annoying.It only happens since the new server/forums were inaugurated, a couple of weeks ago; with the old forums, it worked Ok.Rafael
forums.fivetechsoft.com
Antonio,I deleted the cookies and it´s working fine now <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> Thanks.
forums.fivetechsoft.com
Antonio,I´m sorry to say that there is still a problem with firefox and the created cookies. If I delete the cookie from fivetechsoft.com, it´s working for the first time I logged in. The cookie is then created again. If I log in the second time, the same problem appears again.[quote:38h9v54o]ok, but the problem is, I don´t have the new posts marked using the old address. It seems to a login problem, after pressing the login button the login is executed without errors, but on the startpage the login link does not change to "Log out [...]" link. If I change the address manually to "forums.fivetechsoft...." I have the right site. [/quote:38h9v54o]The problem seems to be caused by the two different domain names fivetechsoft.com and forums.fivetechsoft.com. I get a cookie from both and they disturb each other. Before I can log in I have to delete the cookie from fivetechsoft.com to get it working as usual.Could you please check it ?
forums.fivetechsoft.com
Stefan,We always get forums.fivetechsoft.com at the address bar.How do you get <!-- w --><a class="postlink" href="http://www.fivetechsoft.com/forums">www.fivetechsoft.com/forums</a><!-- w --> there ?(edit: just clicking the above link) <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> How could we avoid that ? How to redirect it ?
forums.fivetechsoft.com
Antonio,I deleted all relevant cookies and cleared the cache, but it doesn´t seem to help. <!-- s:( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":(" title="Sad" /><!-- s:( --> It´s very curious. I don´t know where the wrong address comes from.While writing this answer this address is in the address bar[url:l2iytfb0]http&#58;//fivetechsoft&#46;com/forums/posting&#46;php?mode=reply&t=10819&sid=30ff8c910d4ea308a537a8f02371f7f0[/url:l2iytfb0]Shouldn´t it be <!-- m --><a class="postlink" href="http://forums.fivetechsoft.com/..">http://forums.fivetechsoft.com/..</a><!-- m -->. ? <!-- s:? --><img src="{SMILIES_PATH}/icon_confused.gif" alt=":?" title="Confused" /><!-- s:? -->
forums.fivetechsoft.com
Stefan,Please check how you have saved the bookmark to the forums.Do you have it as forums.fivetechsoft.com ?
forums.fivetechsoft.com
[quote="Antonio Linares":36yjkx10]Stefan, Please check how you have saved the bookmark to the forums. Do you have it as forums.fivetechsoft.com ?[/quote:36yjkx10]I have[url:36yjkx10]http&#58;//forums&#46;fivetechsoft&#46;com[/url:36yjkx10]in my bookmark and still see[url:36yjkx10]http&#58;//fivetechsoft&#46;com/forums/posting&#46;php?mode=quote&p=53819[/url:36yjkx10]on the top of my IE7.EMG
forums.fivetechsoft.com
[quote="Antonio Linares":2zpqp2nl]Stefan, Please check how you have saved the bookmark to the forums. Do you have it as forums.fivetechsoft.com ?[/quote:2zpqp2nl]Yes, I have the new address in my bookmarks.
forums.fivetechsoft.com
I just found that the address becomes <!-- w --><a class="postlink" href="http://www.fivetechsoft.com/forums">www.fivetechsoft.com/forums</a><!-- w --> when I click on the "View newer post" icon.Please check.EMG