... been used. I would like to know how to change from TCBrowse() to Xbrowse(), modifying the commands in TCBrowsech or Xbrowse.ch or if there is an intermediate class that does all this. Grateful, Ari
... vc_dll2lib.bat @echo off REM Usage: dll2lib [32|64] some-file.dll REM REM Generates some-file.lib from some-file.dll, making an intermediate REM some-file.def from the results of dumpbin /exports some-file.dll. REM Currently must run without path on DLL. REM (Fix by removing ...
Dear Otto, Yes, it is correct. From a Model - View - Controller point of view: 1. Controller: It is the intermediate between the users requests and the views and data. 2. View: It is in charge of building the user interface. 3. Model: It is in charge of managing the data. Users ...
... of 5 people, more time, more money and surely less than what you want. I know you feel this anger, I also experienced it. But either we stay in an intermediate layer or we go out to fight against the outermost layers, joining win & web. This is my obsession in these moments. How many it do ...
... to use TDolphin or TMySql to ADO. FWH does work with utf8 perfectly. An FWH+(x)Harbour program needs to communicate with MySql server through an intermediate interface. The interface can be: 1) ADO using TOleAuto() of Harbour --> Works Perfectly 2) ADO using TOleAuto() of xHarbour 3) TDolphin ...
Mr Otto You just need one line aRec[I] := CharRem( CRLF, aRec[I]) All Chr(13) and all Chr(10) will be removed, even if they are not together. select datenaFldNo := {}AEval( DbStruct(), { |a,i| If( a[ 2 ] $ 'CM', AAdd( aFldNo,...
Hello, is this a good and save way to remove CRLF form database-fields. Thanks in advance Otto select datenaStruc := DBStruct()go topdo while .not. eof() aRec := getrec() For I := 1 to len( aRec ) if aStruc[I,2] = "C" aRec[I...
This is only available with xHarbour though? Both Harbour and xHarbour. We need to link \xharbour\lib\ct.lib for xHarbour and \harbour\lib\hbct.lib for Harbour. If we are using fwh, it means we already have these libs included in our link scripts though we might not have noticed. These libs contain...
But CharRem() function specially made for such purposes and more efficient. You're right! Look at this sample: FUNCTION MAIN() LOCAL cSpaces := SPACE( 100000000 ) LOCAL nSec := SECONDS() cSpaces = STRTRAN( cSpaces, " ", &q...
Mr James Elvira's first posting was for removing all spaces. StrTran( cString, ' '. '' ) is correct. But CharRem() function specially made for such purposes and more efficient. Mr Carlos Vargas' posting was to remove duplicate adjacent spaces. I suggested CharOne() for this instead of the code he wa...