topic
stringlengths
1
63
text
stringlengths
1
577k
filtro entre fechas
Armando, Los registros pertenecen a una tabla de licencias. poseen dos campos: "desde" y "hasta" que me indican la duración de la licencia. supongamos que tengo un registro de la siguiente manera: Registro: [code=fw:2vqy90rb]<div class="fw" id="{CB}" style="font-family: monospace;"><br />desde = <span style="color: #ff0000;">'2019-05-18'</span>, hasta = <span style="color: #ff0000;">'2019-05-28'</span><br /> </div>[/code:2vqy90rb] Si hago la siguiente consulta: [code=fw:2vqy90rb]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #0000ff;">select</span> * <span style="color: #0000ff;">from</span> licencias <span style="color: #0000ff;">where</span> desde >= <span style="color: #ff0000;">"2019-05-20"</span> and hasta <= <span style="color: #ff0000;">"2019-05-26"</span><br /> </div>[/code:2vqy90rb] No obtendría el registro que definí al principio, sin embargo las fechas del where se encuentran dentro del rango del registro y eso es lo que necesitaría mostrar. Espero haber sido claro. Saludos
filtro entre fechas
This query shows all licences valid during the full period from 2019-05-20 to 2019-05-26. [code=fw:247evd9s]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #0000ff;">select</span> * <span style="color: #0000ff;">from</span> licencias <span style="color: #0000ff;">where</span> desde <= <span style="color: #ff0000;">'2019-05-20'</span> and hasta >= <span style="color: #ff0000;">'2019-05-26'</span><br />&nbsp;</div>[/code:247evd9s] The next query shows all licences valid for atleast one day or more during the period from 2019-05-20 to 2019-05-26. [code=fw:247evd9s]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #0000ff;">select</span> * <span style="color: #0000ff;">from</span> licencias <span style="color: #0000ff;">where</span> desde <= <span style="color: #ff0000;">"2019-05-26"</span> and hasta >= <span style="color: #ff0000;">"2019-05-20"</span><br />&nbsp;</div>[/code:247evd9s]
filtro entre fechas
[quote:11cocqni]Hola, creo que valdría : ( desde <= hasta1 and hasta >= desde1 ) Un saludo. [/quote:11cocqni] Esta solución es la misma que te indica Mr. Rao en el segundo caso, cuando quieres que algún día del rango esté dentro de desde1:hasta1. Si lo que quieres es que el periodo desde:hasta esté dentro de desde1:hasta1, osea que sea un subperiodo, te valdría : ( desde >= desde1 and hasta <= hasta1 ) Es la primera solución de Mr. Rao, aunque creo que ha cometido un pequeño error en los operadores mayor y menor, los ha invertido. Un saludo.
filtros con scopes..
tengo una dbf con mas de 300,000 registros y quiero hacer filtros por muchos campos, probe el setfilter pero es muy lento, he hecho scopes con el campo como llave y va muy bien, mi pregunta es: es necesario tener el indice por el scope que se necesita para hacer el filtro? o que me recomiendan para hacer multi-filtros rapidos? salu2 gracias Paco
filtros con scopes..
Hay 2 formas la primera es aplicar el SCOPE y luego un filtro sobre el scope, lo cual resulta mucho mas rapido porque hay que filtrar menos datos, pero de entrada, siempre es necesario que exista un indice para poder "scopear". Lo que yo hago, es hacer multiples indices con multiples llaves para hacer "multi-filtros" como tu los llamas, ya que capacidad de un CDX es de hasta 50 indices por archivo, tengo DBFs que tiene mas de 35 ordenes en cada CDX, basado en combiancines de campos y clauslas restrictivias (INDEX ON campo+otrocampo+ campo TAG nombre FOR condicion)y funcionan bastante bien. Eso cuando tengo que trabajar con CDX puros y duros. Cuando trabajas con ADS puedes utilizar Queries de SQL que funcionan alucinamente bien, o bien los famoso AOF (Advantage Optimized Filters) que son filtros sumamente eficientes y super rapidos basados en la funcion DBSETFILTER
filtros con scopes..
bien explicado rene, a trabajar con muchos indices... salu2 paco
filtros con scopes..
Yo hago algo parecido, monto unos cuantos indices. Cuando voy a filtrar, segun los datos que me han introducido elijo el filtro que creo que me va a devolver menor numero de registros despues de hacer un scope.( si tengo indice por fecha e indice por cliente, si quieren filtrar por cliente y fecha, cojo scope de cliente que casi seguro es mas pequeno que por fecha), y sobre el resultado si me quedan campos para filtrar, creo un indice custom. Con el indice custom siempre sera mas rapido para manipular el resultado(browse, listados,...) que no con un filtro. Un filtro evalua el codeblock de filtro por cada registro, con el indice custom, solo una vez al crearlo. Cada inidice adicional, hace que sea mas lento los procesos de acutlizacion de la tabla, aunque CDX es muy rapido, lo importante es encontrar un buen equilibrio(como todo en la vida). Esa es la opinion de un novato(cada dia intento aprender mas, pero todavia me queda mucho).
filtros con scopes..
Paco: Por no dejar podrías probar sin tener que hacer ningun SCOPE ni FILTER, por ejemplo si quiero leer el detalle de una factura cuyo índice esta formado por dos campos DET_FAC + DET_PRO (Número de factura y código del producto facturado) hago lo siguiente: (cDetFac)->(DBSEEK((cHdrFac)HDR_FAC)) // El puntero se coloca en el primer registro del detalle de la factura DO WHILE (cDetFac)->(! EOF()) .AND.; (cDetFac)->DET_FAC == (cHdrFac)->HDR_FAC ..... ..... // Resto del código para listar el detalle ..... (cDetFac)->(DBSKIP()) ENDDO Evidentemente esto no te libera de tener los TAG necesarios, pero como bien explicó el Master René, eso no es mayor problema. Un Abrazo, Armando
finalizar objetos ?
Antonio, de tempos em tempos preciso matar (finalizar) determinados objetos e recria-los Como matar seria assim: objnume[x]:end() ??? ex: objnume:=array(100) for x:=1 to len(objnume) redefine btnbmp objnume[x] ... next
finalizar objetos ?
ReleaseDC(objnume)
finalizar objetos ?
Aoki, FWH does it automatically. Don't care about it.
find con comodines oWord:Find(""{*}"") para Vikthor
Es posible utilizar el comando find de esta forma osea con comodines oWord:Find({*}) y de alguna manera obtener todos los campos que tengo entre corchetes {} en un documento word. He intentado utilizarla cambiando la propiedad [code:2ckt9phw] oFind&#58;Set&#40; "MatchWildcards", &#46;t&#46; &#41; //True si el texto va a buscarse contiene comodines de búsqueda [/code:2ckt9phw] Pero no me hace caso. Tengo una funcion que me transforma lo que hay entre corchetes en texto y haciendolo directamente con replace funciona perfecto pero necesito que me entregue lo que hay entre corchetes hasta que no quede ninguno mas, y cada uno ir sustituyendolo por el valor de la funcion con el comando replace hasta que no quede ningun campo entre corchetes, se te ocurre como... ? Puedes enviarme la clase tWord actualizada en otros mensajes pone que esta en tu pagina pero me sale en construccion..... Saludos
find con comodines oWord:Find(""{*}"") para Vikthor
Investigando en el explorador de objetos de visualbasic he descubierto que esta manera de definir los campos no puedes realizarla en word, pueste se reserva este tipo de corchetes para pasar parametros...... [code:26r6rujw] Sel&#123;2&#125; Busca todos los que empiezan con Sel y tengan dos letras mas&#46;&#46;&#46;&#46; [/code:26r6rujw] Esta informacion solo la he encontrado el office 2000 puesto que en la 2003 los ejemplos de los comodines estan eliminados o almenos yo no los he encontrado...
find pc client
How I can found pc clients with tcp/ip protocol from a server? can I see if this each pc is open or close ?
fingerprint sample uploaded
Antonio: this is the link <!-- m --><a class="postlink" href="http://hyperupload.com/download/01d1f85d62/HUELLA.ZIP.html">http://hyperupload.com/download/01d1f85 ... A.ZIP.html</a><!-- m --> I hope this can help, Please consider It's not a really reduced sample, but take a look at the aParams Array (line 90) where are shifted and doesn't work as expected. In the Ocx docs exist a lot af ocx:methods with by Reference parameters, especially: Extract( byRef rawImage as Variant, ...) and I haven't a known way to call a Method with byReference parameters uRet = ActXInvoke( ActXPdisp( ::hActiveX ), cMethodName, uParam1,... ) Doesn't do the job for me at this moment. I will thank any answer. Regards Fco Gamboa
fingerprint sample uploaded
Francisco ¿Qué lector tienes? Saludos Fernando
fingerprint sample uploaded
Hola Fernando: Tengo Digital Persona U.areU.400B Reader Gracias por tu atención y Saludos Fco Gamboa
fingerprint sample uploaded
Francisco, dame de alta en el messanger o envíame un mail a. <!-- e --><a href="mailto:visitante32@hotmail.com">visitante32@hotmail.com</a><!-- e --> Gracias Fernando Leal México, DF
fingerprint sample uploaded
it is compatible with microsoft fingerprint reader ?
fingerprint sample uploaded
Hi fGamboa You can't use oActiveX&#058;bOnEvent if used CreateOleObject(). This features return a handle and not a object. If use oActiveX = TActiveX():New( oWnd, "GrFingerX.[b:1nrsjb07]GrFingerXCtrl.1[/b:1nrsjb07]") the result is better. I post this code below to help you in database control: My ADODB.CH: [code:1nrsjb07] #command ADO APPEND BLANK => oRs&#58;AddNew&#40;&#41; #command ADO EDIT => oRs&#58;Edit&#40;&#41; #command ADO COMMIT => oRs&#58;Update&#40;&#41; #command ADO SKIP => oRs&#58;Move&#40; oRs&#58;AbsolutePosition &#41; #command ADO REGLOCK => dbNetRegLock&#40; 0 &#41; ; dbCommitLog&#40;'M', PROCNAME&#40;&#41;&#41; #command ADO DELETE => oRs&#58;Delete&#40;&#41; #command ADO REPLACE <f1> WITH <v1> => oRs&#58;Fields&#40; <&#40;f1&#41;> &#41;&#58;Value &#58;= <v1> #command ADO GOTOP => oRs&#58;MoveFirst&#40;&#41; #command ADO GOBOTTOM => oRs&#58;MoveLast&#40;&#41; #command ADORECNO&#40;&#41; => oRs&#58;AbsolutePosition #command ADOFILE&#40;<tB>&#41; => iif&#40;oRs&#58;Table&#40;<tB>&#41;==<tB>,&#46;t&#46;,&#46;f&#46;&#41; #command ADO USE => oRs&#58;Close&#40;&#41; #command ADO CLOSE => oRs&#58;Close&#40;&#41; #command ADO SAVE <CfILE> => oRs&#58;Save&#40; <CfILE>, adPersistXML &#41; #command ADO EXECUTE <Sql> => oRs&#58;Open&#40; <Sql>, StrConnection, 1, 3 &#41; #command ADO CONNECT ON <StrServer> ; &#91;PORT <StrPort>&#93; ; &#91;DATABASE <StrDatabase>&#93; ; &#91;USER <StrUserID>&#93; ; &#91;PASSWORD <StrUserPWD>&#93; ; &#91;OPTIONS <nFlags>&#93; ; DRIVER <StrDriver> => ; StrConnection &#58;= "driver=&#123;"+<StrDriver>+"&#125;;database="+<StrDatabase>+";server="+<StrServer>+";uid="+<StrUserID>+";pwd="+<StrUserPWD>+";option=35" ; ; oRs &#58;= TOleAuto&#40;&#41;&#58;New&#40; "ADODB&#46;Recordset" &#41; ; ; oRS&#58;CursorType &#58;= adOpenStatic ; ; oRS&#58;CursorLocation &#58;= adUseClient ; ; oRS&#58;LockType &#58;= adLockPessimistic /*---- CursorTypeEnum Values ----*/ #define adOpenForwardOnly 0 #define adOpenKeyset 1 #define adOpenDynamic 2 #define adOpenStatic 3 /*---- LockTypeEnum Values ----*/ #define adLockReadOnly 1 #define adLockPessimistic 2 #define adLockOptimistic 3 #define adLockBatchOptimistic 4 /*---- CursorLocationEnum Values ----*/ #define adUseServer 2 #define adUseClient 3 /*---- DataTypeEnum Values ----*/ #define adEmpty 0 #define adTinyInt 16 #define adSmallInt 2 #define adInteger 3 #define adBigInt 20 #define adUnsignedTinyInt 17 #define adUnsignedSmallInt 18 #define adUnsignedInt 19 #define adUnsignedBigInt 21 #define adSingle 4 #define adDouble 5 #define adCurrency 6 #define adDecimal 14 #define adNumeric 131 #define adBoolean 11 #define adError 10 #define adUserDefined 132 #define adVariant 12 #define adIDispatch 9 #define adIUnknown 13 #define adGUID 72 #define adDate 7 #define adDBDate 133 #define adDBTime 134 #define adDBTimeStamp 135 #define adBSTR 8 #define adChar 129 #define adVarChar 200 #define adLongVarChar 201 #define adWChar 130 #define adVarWChar 202 #define adLongVarWChar 203 #define adBinary 128 #define adVarBinary 204 #define adLongVarBinary 205 #define adChapter 136 #define adFileTime 64 #define adPropVariant 138 #define adVarNumeric 139 #define adArray &H2000 /*---- GetRowsOptionEnum Values ----*/ #define adGetRowsRest -1 /*---- PositionEnum Values ----*/ #define adPosUnknown -1 #define adPosBOF -2 #define adPosEOF -3 /*---- BookmarkEnum Values ----*/ #define adBookmarkCurrent 0 #define adBookmarkFirst 1 #define adBookmarkLast 2 /*---- MarshalOptionsEnum Values ----*/ #define adMarshalAll 0 #define adMarshalModifiedOnly 1 /*---- AffectEnum Values ----*/ #define adAffectCurrent 1 #define adAffectGroup 2 #define adAffectAllChapters 4 /*---- ResyncEnum Values ----*/ #define adResyncUnderlyingValues 1 #define adResyncAllValues 2 /*---- CompareEnum Values ----*/ #define adCompareLessThan 0 #define adCompareEqual 1 #define adCompareGreaterThan 2 #define adCompareNotEqual 3 #define adCompareNotComparable 4 /*---- FilterGroupEnum Values ----*/ #define adFilterNone 0 #define adFilterPendingRecords 1 #define adFilterAffectedRecords 2 #define adFilterFetchedRecords 3 #define adFilterConflictingRecords 5 /*---- SearchDirectionEnum Values ----*/ #define adSearchForward 1 #define adSearchBackward -1 /*---- PersistFormatEnum Values ----*/ #define adPersistADTG 0 #define adPersistXML 1 /*---- StringFormatEnum Values ----*/ #define adClipString 2 /*---- ConnectPromptEnum Values ----*/ #define adPromptAlways 1 #define adPromptComplete 2 #define adPromptCompleteRequired 3 #define adPromptNever 4 /*---- ConnectModeEnum Values ----*/ #define adModeUnknown 0 #define adModeRead 1 #define adModeWrite 2 #define adModeReadWrite 3 #define adModeShareDenyRead 4 #define adModeShareDenyWrite 8 /*---- EventReasonEnum Values ----*/ #define adRsnAddNew 1 #define adRsnDelete 2 #define adRsnUpdate 3 #define adRsnUndoUpdate 4 #define adRsnUndoAddNew 5 #define adRsnUndoDelete 6 #define adRsnRequery 7 #define adRsnResynch 8 #define adRsnClose 9 #define adRsnMove 10 #define adRsnFirstChange 11 #define adRsnMoveFirst 12 #define adRsnMoveNext 13 #define adRsnMovePrevious 14 #define adRsnMoveLast 15 /*---- SchemaEnum Values ----*/ #define adSchemaProviderSpecific -1 #define adSchemaAsserts 0 #define adSchemaCatalogs 1 #define adSchemaCharacterSets 2 #define adSchemaCollations 3 #define adSchemaColumns 4 #define adSchemaCheckConstraints 5 #define adSchemaConstraintColumnUsage 6 #define adSchemaConstraintTableUsage 7 #define adSchemaKeyColumnUsage 8 #define adSchemaReferentialConstraints 9 #define adSchemaTableConstraints 10 #define adSchemaColumnsDomainUsage 11 #define adSchemaIndexes 12 #define adSchemaColumnPrivileges 13 #define adSchemaTablePrivileges 14 #define adSchemaUsagePrivileges 15 #define adSchemaProcedures 16 #define adSchemaSchemata 17 #define adSchemaSQLLanguages 18 #define adSchemaStatistics 19 #define adSchemaTables 20 #define adSchemaTranslations 21 #define adSchemaProviderTypes 22 #define adSchemaViews 23 #define adSchemaViewColumnUsage 24 #define adSchemaViewTableUsage 25 #define adSchemaProcedureParameters 26 #define adSchemaForeignKeys 27 #define adSchemaPrimaryKeys 28 #define adSchemaProcedureColumns 29 #define adSchemaDBInfoKeywords 30 #define adSchemaDBInfoLiterals 31 #define adSchemaCubes 32 #define adSchemaDimensions 33 #define adSchemaHierarchies 34 #define adSchemaLevels 35 #define adSchemaMeasures 36 #define adSchemaProperties 37 #define adSchemaMembers 38 #define adSchemaTrustees 39 /*---- FieldStatusEnum Values ----*/ #define adFieldOK 0 #define adFieldCantConvertValue 2 #define adFieldIsNull 3 #define adFieldTruncated 4 #define adFieldSignMismatch 5 #define adFieldDataOverflow 6 #define adFieldCantCreate 7 #define adFieldUnavailable 8 #define adFieldPermissionDenied 9 #define adFieldIntegrityViolation 10 #define adFieldSchemaViolation 11 #define adFieldBadStatus 12 #define adFieldDefault 13 #define adFieldIgnore 15 #define adFieldDoesNotExist 16 #define adFieldInvalidURL 17 #define adFieldResourceLocked 18 #define adFieldResourceExists 19 #define adFieldCannotComplete 20 #define adFieldVolumeNotFound 21 #define adFieldOutOfSpace 22 #define adFieldCannotDeleteSource 23 #define adFieldReadOnly 24 #define adFieldResourceOutOfScope 25 #define adFieldAlreadyExists 26 #define adFieldPendingInsert &H10000 #define adFieldPendingDelete &H20000 #define adFieldPendingChange &H40000 #define adFieldPendingUnknown &H80000 #define adFieldPendingUnknownDelete &H100000 /*---- SeekEnum Values ----*/ #define adSeekFirstEQ &H1 #define adSeekLastEQ &H2 #define adSeekAfterEQ &H4 #define adSeekAfter &H8 #define adSeekBeforeEQ &H10 #define adSeekBefore &H20 /*---- ADCPROP_UPDATECRITERIA_ENUM Values ----*/ #define adCriteriaKey 0 #define adCriteriaAllCols 1 #define adCriteriaUpdCols 2 #define adCriteriaTimeStamp 3 /*---- ADCPROP_ASYNCTHREADPRIORITY_ENUM Values ----*/ #define adPriorityLowest 1 #define adPriorityBelowNormal 2 #define adPriorityNormal 3 #define adPriorityAboveNormal 4 #define adPriorityHighest 5 /*---- ADCPROP_AUTORECALC_ENUM Values ----*/ #define adRecalcUpFront 0 #define adRecalcAlways 1 /*---- ADCPROP_UPDATERESYNC_ENUM Values ----*/ /*---- ADCPROP_UPDATERESYNC_ENUM Values ----*/ /*---- MoveRecordOptionsEnum Values ----*/ #define adMoveUnspecified -1 #define adMoveOverWrite 1 #define adMoveDontUpdateLinks 2 #define adMoveAllowEmulation 4 /*---- CopyRecordOptionsEnum Values ----*/ #define adCopyUnspecified -1 #define adCopyOverWrite 1 #define adCopyAllowEmulation 4 #define adCopyNonRecursive 2 /*---- StreamTypeEnum Values ----*/ #define adTypeBinary 1 #define adTypeText 2 /*---- LineSeparatorEnum Values ----*/ #define adLF 10 #define adCR 13 #define adCRLF -1 /*---- StreamOpenOptionsEnum Values ----*/ #define adOpenStreamUnspecified -1 #define adOpenStreamAsync 1 #define adOpenStreamFromRecord 4 /*---- StreamWriteEnum Values ----*/ #define adWriteChar 0 #define adWriteLine 1 /*---- SaveOptionsEnum Values ----*/ #define adSaveCreateNotExist 1 #define adSaveCreateOverWrite 2 /*---- FieldEnum Values ----*/ #define adDefaultStream -1 #define adRecordURL -2 /*---- StreamReadEnum Values ----*/ #define adReadAll -1 #define adReadLine -2 /*---- RecordTypeEnum Values ----*/ #define adSimpleRecord 0 #define adCollectionRecord 1 #define adStructDoc 2 [/code:1nrsjb07] My sample database: [code:1nrsjb07] /* * * Mais informacoes sobre ADO em * http&#58;//www&#46;microsoft&#46;com/brasil/technet/Colunas/scriptcenter/resources/officetips/nov05/tips1103&#46;mspx * */ #include "Fivewin&#46;ch" #include "adodb&#46;ch" FUNCTION MAIN&#40;&#41; PUBLIC oRs StrDatabase &#58;= &#91;DBMRDELIVERY&#93; StrServer &#58;= &#91;127&#46;0&#46;0&#46;1&#93; StrPort &#58;= 3306 StrUserID &#58;= &#91;root&#93; StrUserPWD &#58;= &#91;&#93; StrDriver &#58;= "MySQL ODBC 3&#46;51 Driver" StrTable &#58;= &#91;TBCLIENTE&#93; StrField &#58;= &#91;ddd&#93; StrField2 &#58;= &#91;nome&#93; StrWhere &#58;= StrField+&#91;="034"&#93; StrSqlCommand &#58;= &#91;SELECT * FROM &#93; + StrTable + &#91; WHERE &#93; + StrWhere ADO CONNECT ON StrServer ; PORT StrPort ; DATABASE StrDatabase ; USER StrUserID ; PASSWORD StrUserPWD ; OPTIONS 35 ; DRIVER StrDriver ADO EXECUTE StrSqlCommand ADO GOTOP Browse&#40; oRs &#41; ADO CLOSE RETURN NIL function WBrowseRecordSet&#40; oRs, cStrField &#41; LOCAL oDlg, oBrw, nRec DEFINE DIALOG oDlg SIZE 300, 300 @ 0, 0 LISTBOX oBrw FIELDS oRs&#58;Fields&#40; "nome" &#41;&#58;Value ; HEADERS "Nome do Cliente" ; FIELDSIZES 300 ; ON RIGHT CLICK &#40; nRec &#58;= oRs&#58;AbsolutePosition,; oBrw&#58;Report&#40; "TWBrowse report", &#46;T&#46; &#41;,; oRs&#58;MoveFirst&#40;&#41;,; oRs&#58;Move&#40; nRec - 1 &#41; &#41; oBrw&#58;bLDblClick&#58;= &#123; |nRow,nCol| MsgStop&#40; oRs&#58;Fields&#40; "BAIRRO" &#41;&#58;Value &#41; &#125; oBrw&#58;nHeaderStyle &#58;= 2 oBrw&#58;nHeaderHeight &#58;= 20 oBrw&#58;nLineHeight &#58;= 15 oBrw&#58;bLogicLen &#58;= &#123; || oRs&#58;RecordCount &#125; oBrw&#58;bGoTop &#58;= &#123; || oRs&#58;MoveFirst&#40;&#41; &#125; oBrw&#58;bGoBottom &#58;= &#123; || oRs&#58;MoveLast&#40;&#41; &#125; oBrw&#58;bSkip &#58;= &#123; | nSkip | ADOSkipper&#40; oRs, nSkip &#41; &#125; oBrw&#58;cAlias &#58;= "ARRAY" ACTIVATE DIALOG oDlg; ON INIT oDlg&#58;SetControl&#40; oBrw &#41;; CENTER RETURN NIL function browse&#40;oRs, bPrc, bAdc, bAlt, bExc, bImp, bSai&#41; LOCAL oDlg, oBrw, nRec LOCAL aData &#58;= &#123;&#125; LOCAL nFor LOCAL oLbx, cItem LOCAL btnPrc, btnAdc, btnAlt, btnExc, btnImp, btnsai DEFAULT bPrc &#58;= &#123; || RecPrc&#40; oLbx &#41; &#125;,; bAdc &#58;= &#123; || RecInc&#40; oLbx &#41; &#125;,; bAlt &#58;= &#123; || RecAlt&#40; oLbx &#41; &#125;,; bExc &#58;= &#123; || RecExc&#40; oLbx &#41; &#125;,; bImp &#58;= &#123; || RecImp&#40; oLbx &#41; &#125;,; bSai &#58;= &#123; || oDlg2&#58;End&#40;&#41; &#125; DEFINE DIALOG oDlg2 From 0,0 To 800,1020 Pixel TITLE " ListBox da Tabela " @ 05,15 listbox oBrw Fields oRs&#58;Fields&#40; "nome" &#41;&#58;Value, oRs&#58;Fields&#40; "fone" &#41;&#58;Value; headers "Nome","Telefone"; fieldsizes 250,100 ; pixel size 400,300 of odlg2 //oBrw&#58;bLDblClick&#58;= &#123; |nRow,nCol| MsgStop&#40; oRs&#58;Fields&#40; "apelido" &#41;&#58;Value &#41; &#125; oBrw&#58;nHeaderStyle &#58;= 2 oBrw&#58;nHeaderHeight &#58;= 20 oBrw&#58;nLineHeight &#58;= 15 oBrw&#58;bLogicLen &#58;= &#123; || oRs&#58;RecordCount &#125; oBrw&#58;bGoTop &#58;= &#123; || oRs&#58;MoveFirst&#40;&#41; &#125; oBrw&#58;bGoBottom &#58;= &#123; || oRs&#58;MoveLast&#40;&#41; &#125; oBrw&#58;bSkip &#58;= &#123; | nSkip | ADOSkipper&#40; oRs, nSkip &#41; &#125; oBrw&#58;cAlias &#58;= "ARRAY" @ 18&#46;7 , 05 button btnprc prompt "&Procurar" of oDlg2 size 40,12 Action RecPrc&#40;oBrw&#41; @ 18&#46;7 , 15 button btnadc prompt "&Adicionar" of oDlg2 size 40,12 Action RecInc&#40;oBrw&#41; @ 18&#46;7 , 25 button btnalt prompt "A&lterar" of oDlg2 size 40,12 Action RecAlt&#40;oBrw&#41; @ 18&#46;7 , 35 button btnexc prompt "&Excluir" of oDlg2 size 40,12 Action RecExc&#40;oBrw&#41; @ 18&#46;7 , 45 button btnimp prompt "&Imprimir" of oDlg2 size 40,12 @ 18&#46;7 , 55 button btnsai prompt "&Sair" of oDlg2 size 40,12 Action oDlg2&#58;End&#40;&#41; ACTIVATE DIALOG oDlg2 //; //ON INIT oDlg2&#58;SetControl&#40; oBrw &#41;; //CENTER RETURN NIL function ADOSkipper&#40; oRs, nSkip &#41; LOCAL nRec &#58;= oRs&#58;AbsolutePosition oRs&#58;Move&#40; nSkip &#41; IF oRs&#58;EOF; oRs&#58;MoveLast&#40;&#41;; ENDIF IF oRs&#58;BOF; oRs&#58;MoveFirst&#40;&#41;; ENDIF RETURN oRs&#58;AbsolutePosition - nRec //----------------------------------------------------------- static function RecPrc&#40;oLbx&#41; Local odlg1 Local cCodigo&#58;=0 Local cSair&#58;=" " Local sql DEFINE DIALOG oDlg1 From 0,0 To 160,250 PIXEL; TITLE " Procura na Tabela em Access " DEFINE FONT oFont NAME "FIXEDSYS" SIZE 10, -10 && Use a Nonproportional font SET FONT OF oDlg1 TO oFont && so characters line up in Says @ 02,05 say "Codigo &#58; " OF oDlg1 @ 02&#46;2,10 get cCodigo OF oDlg1 picture "9999" size 20,10 @ 02&#46;7 , 10 button "Procurar" of oDlg1 size 40,12 action &#40;cSair&#58;="*",oDlg1&#58;End&#40;&#41;&#41; ACTIVATE DIALOG oDlg1 centered if cSair="*" //locate for &#40;odbf&#58;cAlias&#41;->field_0001 = cCodigo criterio = "idpessoa Like '" + cCodigo + "%'" //oRs&#58;MoveFirst&#40;&#41; //oRs&#58;Find criterio, 0, adSearchFoward if eof&#40;&#41; msgAlert&#40;"NÆo encontrado !!!"&#41; go top endif oLbx&#58;Refresh&#40;&#41; endif return nil //----------------------------------------------------------- static function RecInc&#40;oLbx&#41; LOCAL odlg3 LOCAL cNome &#58;= space&#40;40&#41; LOCAL cTelefone &#58;= space&#40;14&#41; LOCAL cEndereco &#58;= space&#40;45&#41; LOCAL cSair &#58;= " " DEFINE DIALOG oDlg3 From 0,0 To 230,500 PIXEL TITLE " Inclusao na Tabela em Access " DEFINE FONT oFont NAME "FIXEDSYS" SIZE 10, -10 && Use a Nonproportional font SET FONT OF oDlg3 TO oFont && so characters line up in Says @ 02,05 say "Nome_____&#58; " OF oDlg3 @ 03,05 say "Telefone_&#58; " OF oDlg3 @ 04,05 say "Endereco_&#58; " OF oDlg3 //go bottom //cCodigo &#58;= odbf&#58;au_id+1 @ 02&#46;2,10 get cNome OF oDlg3 picture "@!" size 150,10 @ 03&#46;3,10 get cTelefone OF oDlg3 picture "&#40;99&#41;9999-9999" size 100,10 valid !empty&#40;cNome&#41; @ 04&#46;4,10 get cEndereco OF oDlg3 picture "@!" size 150,10 @ 04&#46;7 , 15 button "Salvar" of oDlg3 size 40,12 action &#40;cSair&#58;="*",oDlg3&#58;End&#40;&#41;&#41; ACTIVATE DIALOG oDlg3 centered if cSair="*" ADO APPEND BLANK ADO REPLACE nome WITH cNome ADO REPLACE fone WITH cTelefone ADO REPLACE endereco WITH cEndereco ADO COMMIT oLbx&#58;Refresh&#40;&#41; //oLbx&#58;UpStable&#40;&#41; endif return nil //----------------------------------------------------------- static function RecExc&#40;oLbx&#41; if MsgYesNo&#40; "Excluir este Registro ?", "Por Favor, confirme" &#41; ADO DELETE ADO SKIP oLbx&#58;Refresh&#40;&#41; //oLbx&#58;UpStable&#40;&#41; endif return nil //----------------------------------------------------------- static function RecAlt&#40;oLbx&#41; LOCAL odlg3 LOCAL cNome &#58;= oRs&#58;Fields&#40; "nome" &#41;&#58;Value LOCAL cTelefone &#58;= oRs&#58;Fields&#40; "fone" &#41;&#58;Value LOCAL cEstado &#58;= oRs&#58;Fields&#40; "endereco" &#41;&#58;Value LOCAL cSair &#58;= " " DEFINE DIALOG oDlg3 From 0,0 To 230,500 PIXEL TITLE " Inclusao na Tabela em Access " DEFINE FONT oFont NAME "FIXEDSYS" SIZE 10, -10 && Use a Nonproportional font SET FONT OF oDlg3 TO oFont && so characters line up in Says @ 02,05 say "Nome_____&#58; " OF oDlg3 @ 03,05 say "Telefone_&#58; " OF oDlg3 @ 04,05 say "Endereco_&#58; " OF oDlg3 //go bottom //cCodigo &#58;= odbf&#58;au_id+1 @ 02&#46;2,10 get cNome OF oDlg3 picture "@!" size 150,10 @ 03&#46;3,10 get cTelefone OF oDlg3 picture "&#40;99&#41;9999-9999" size 100,10 valid !empty&#40;cNome&#41; @ 04&#46;4,10 get cEndereco OF oDlg3 picture "@!" size 150,10 @ 04&#46;7 , 15 button "Salvar" of oDlg3 size 40,12 action &#40;cSair&#58;="*",oDlg3&#58;End&#40;&#41;&#41; ACTIVATE DIALOG oDlg3 centered if cSair="*" ADO APPEND BLANK ADO REPLACE nome WITH cNome ADO REPLACE fone WITH cTelefone ADO REPLACE endereco WITH cEndereco ADO COMMIT oLbx&#58;Refresh&#40;&#41; //oLbx&#58;UpStable&#40;&#41; endif return nil //----------------------------------------------------------- static function RecImp&#40; oLbx &#41; /* local oRpt local n local cAlias &#58;= If&#40; oLbx != nil, oLbx&#58;cAlias, Alias&#40;&#41; &#41; REPORT oRpt TITLE "Report&#58; " + cAlias ; HEADER "Date&#58; " + DToC&#40; Date&#40;&#41; &#41; + ", Time&#58; " + Time&#40;&#41; ; FOOTER "Page&#58; " + Str&#40; oRpt&#58;nPage, 3 &#41; ; PREVIEW if Empty&#40; oRpt &#41; &#46;or&#46; oRpt&#58;oDevice&#58;hDC == 0 return nil endif for n = 1 to FCount&#40;&#41; oRpt&#58;AddColumn&#40; TrColumn&#40;&#41;&#58;New&#40; &#123; FInfo1&#40; cAlias, n &#41; &#125;,,; &#123; FInfo2&#40; cAlias, n &#41; &#125;,,,,,,,,,, oRpt &#41; &#41; next ENDREPORT ACTIVATE REPORT oRpt GO TOP */ return nil //-------------------------------------------- static function FInfo1&#40; cAlias, n &#41; return &#123; || &#40; cAlias &#41;->&#40; FieldName&#40; n &#41; &#41; &#125; //----------------------------------------------------------- static function FInfo2&#40; cAlias, n &#41; return &#123; || &#40; cAlias &#41;->&#40; FieldGet&#40; n &#41; &#41; &#125; Function DbfDbt&#40;&#41; Return Nil [/code:1nrsjb07] This samples works with MySQL, but you can modify to work with Access. No i sent in private, i prefer to share this information. Good work.
firebird
Alguien utiliza firebird???
firebird
I use with odbc =) <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
firebird
Thanks for answering,please excuse my English, is very poor. Now, thanks to Williams Morales'm trying to do a small program in Mysql, and you accomplish something. But I also like to know something about firebird.
firebird
<!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) --> No problem, so say what you wanna know about firebird. <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
firmar PDF con un certificado
Muy buenas, ¿Es posible firmar digitalmente un pdf desde Fivewin con un certificado digital?. Muchas gracias.
firmar digitalmente el archivo ejecutable?
Maestro, como firmar digitalmente el archivo ejecutable directamente en fivewin como en el ejemplo abajo: <!-- m --><a class="postlink" href="http://codesigning.ksoftware.net/">http://codesigning.ksoftware.net/</a><!-- m --> Gracias, saludos.
firmar digitalmente el archivo ejecutable?
Up
firmar digitalmente el archivo ejecutable?
Joao: Lo unico que se me ocurre es incrustar la cadena "Version" dentro de tu exe con un resource.. [img:330dstv3]http&#58;//i57&#46;tinypic&#46;com/os4uo2&#46;jpg[/img:330dstv3] Te envio el que uso en mi aplicación como ejemplo.. <!-- m --><a class="postlink" href="https://www.mediafire.com/?rabo9ybz0zv3p5m">https://www.mediafire.com/?rabo9ybz0zv3p5m</a><!-- m --> Saludos..
firmar digitalmente el archivo ejecutable?
Gracias, me di cuenta de que su archivo es difrente. ¿Me puede decir por qué? [code=fw:2l64tctj]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #000000;">1</span> VERSIONINFO <br />FILEVERSION <span style="color: #000000;">1</span>, <span style="color: #000000;">0</span>, <span style="color: #000000;">0</span>, <span style="color: #000000;">0</span><br />PRODUCTVERSION <span style="color: #000000;">1</span>, <span style="color: #000000;">0</span>, <span style="color: #000000;">0</span>, <span style="color: #000000;">0</span><br />FILEFLAGSMASK VS_FFI_FILEFLAGSMASK<br />FILEOS VOS__WINDOWS32<br />FILETYPE VFT_APP<br /><span style="color: #000000;">&#123;</span><br />&nbsp;BLOCK <span style="color: #ff0000;">"StringFileInfo"</span><br />&nbsp;<span style="color: #000000;">&#123;</span><br />&nbsp; BLOCK <span style="color: #ff0000;">"041604B0"</span><br />&nbsp; <span style="color: #000000;">&#123;</span><br />&nbsp; &nbsp;VALUE <span style="color: #ff0000;">"CompanyName"</span>, <span style="color: #ff0000;">"Contato Sistemas<span style="color: #000000;">\0</span>00"</span><br />&nbsp; &nbsp;VALUE <span style="color: #ff0000;">"FileDescription"</span>, <span style="color: #ff0000;">"PlenoWin &nbsp;- &nbsp;Cesta Básica<span style="color: #000000;">\0</span>00"</span><br />&nbsp; &nbsp;VALUE <span style="color: #ff0000;">"FileVersion"</span>, <span style="color: #ff0000;">"1.0<span style="color: #000000;">\0</span>00"</span><br />&nbsp; &nbsp;VALUE <span style="color: #ff0000;">"LegalCopyright"</span>, <span style="color: #ff0000;">"2005,2014 - Contato Sistemas<span style="color: #000000;">\0</span>00"</span><br />&nbsp; &nbsp;VALUE <span style="color: #ff0000;">"OriginalFilename"</span>, <span style="color: #ff0000;">"PLENOWIN.EXE<span style="color: #000000;">\0</span>00"</span><br />&nbsp; &nbsp;VALUE <span style="color: #ff0000;">"ProductName"</span>, <span style="color: #ff0000;">"PlenoWin<span style="color: #000000;">\0</span>00"</span><br />&nbsp; &nbsp;VALUE <span style="color: #ff0000;">"ProductVersion"</span>, <span style="color: #ff0000;">"2.0<span style="color: #000000;">\0</span>00"</span><br />&nbsp; <span style="color: #000000;">&#125;</span><br /><br />&nbsp;<span style="color: #000000;">&#125;</span><br /><br />&nbsp;BLOCK <span style="color: #ff0000;">"VarFileInfo"</span><br />&nbsp;<span style="color: #000000;">&#123;</span><br />&nbsp; VALUE <span style="color: #ff0000;">"Translation"</span>, <span style="color: #000000;">1046</span>, <span style="color: #000000;">1200</span><br />&nbsp;<span style="color: #000000;">&#125;</span><br /><br /><span style="color: #000000;">&#125;</span><br />&nbsp;</div>[/code:2l64tctj] [code=fw:2l64tctj]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #000000;">1</span> VERSIONINFO LOADONCALL FIXED IMPURE<br />FILEVERSION <span style="color: #000000;">1</span>, <span style="color: #000000;">0</span>, <span style="color: #000000;">0</span>, <span style="color: #000000;">0</span><br />PRODUCTVERSION <span style="color: #000000;">1</span>, <span style="color: #000000;">0</span>, <span style="color: #000000;">0</span>, <span style="color: #000000;">0</span><br />FILEFLAGSMASK VS_FFI_FILEFLAGSMASK<br />FILEOS VOS__WINDOWS32<br />FILETYPE VFT_APP<br /><span style="color: #000000;">&#123;</span><br />&nbsp;BLOCK <span style="color: #ff0000;">"StringFileInfo"</span><br />&nbsp;<span style="color: #000000;">&#123;</span><br />&nbsp; BLOCK <span style="color: #ff0000;">"080A04B0"</span><br />&nbsp; <span style="color: #000000;">&#123;</span><br />&nbsp; &nbsp;VALUE <span style="color: #ff0000;">"Comments"</span>, <span style="color: #ff0000;">"Catalogador de Discos<span style="color: #000000;">\0</span>00"</span><br />&nbsp; &nbsp;VALUE <span style="color: #ff0000;">"CompanyName"</span>, <span style="color: #ff0000;">"Soluciones y Diseño de Software Empresarial<span style="color: #000000;">\0</span>00"</span><br />&nbsp; &nbsp;VALUE <span style="color: #ff0000;">"FileDescription"</span>, <span style="color: #ff0000;">"Catalogador Virtual Disk<span style="color: #000000;">\0</span>00"</span><br />&nbsp; &nbsp;VALUE <span style="color: #ff0000;">"FileVersion"</span>, <span style="color: #ff0000;">"1.000.0<span style="color: #000000;">\0</span>00"</span><br />&nbsp; &nbsp;VALUE <span style="color: #ff0000;">"InternalName"</span>, <span style="color: #ff0000;">"VIRTUALDSK.EXE<span style="color: #000000;">\0</span>00"</span><br />&nbsp; &nbsp;VALUE <span style="color: #ff0000;">"LegalCopyright"</span>, <span style="color: #ff0000;">"Copyright <span style="color: #000000;">\2</span>51 SOLDISOFT 1998-2013<span style="color: #000000;">\0</span>00"</span><br />&nbsp; &nbsp;VALUE <span style="color: #ff0000;">"LegalTrademarks"</span>, <span style="color: #ff0000;">"Víctor Daniel Cuatécatl León <!-- w --><a class="postlink" href="http://www.soldisoft.unlugar.com">www.soldisoft.unlugar.com</a><!-- w --><span style="color: #000000;">\0</span>00"</span><br />&nbsp; &nbsp;VALUE <span style="color: #ff0000;">"OriginalFilename"</span>, <span style="color: #ff0000;">"Virtual Disk Catalogador de Discos<span style="color: #000000;">\0</span>00"</span><br />&nbsp; &nbsp;VALUE <span style="color: #ff0000;">"ProductName"</span>, <span style="color: #ff0000;">"Virtual Disk 2013<span style="color: #000000;">\0</span>00"</span><br />&nbsp; &nbsp;VALUE <span style="color: #ff0000;">"ProductVersion"</span>, <span style="color: #ff0000;">"1.0<span style="color: #000000;">\0</span>00"</span><br />&nbsp; <span style="color: #000000;">&#125;</span><br /><br />&nbsp;<span style="color: #000000;">&#125;</span><br /><br />&nbsp;BLOCK <span style="color: #ff0000;">"VarFileInfo"</span><br />&nbsp;<span style="color: #000000;">&#123;</span><br />&nbsp; VALUE <span style="color: #ff0000;">"Translation"</span>, <span style="color: #000000;">2058</span>, <span style="color: #000000;">1200</span><br />&nbsp;<span style="color: #000000;">&#125;</span><br /><br /><span style="color: #000000;">&#125;</span><br />&nbsp;</div>[/code:2l64tctj] 
firmar digitalmente el archivo ejecutable?
Como saber cual és el más correcto? [code=fw:1qjqrp4q]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">// Version Information</span><br /><br /><span style="color: #000000;">1</span> VERSIONINFO LOADONCALL MOVEABLE DISCARDABLE IMPURE<br />FILEVERSION <span style="color: #000000;">1</span>, <span style="color: #000000;">0</span>, <span style="color: #000000;">2</span>, <span style="color: #000000;">0</span><br />PRODUCTVERSION <span style="color: #000000;">1</span>, <span style="color: #000000;">0</span>, <span style="color: #000000;">2</span>, <span style="color: #000000;">0</span><br />FILEFLAGSMASK VS_FFI_FILEFLAGSMASK<br />FILEOS VOS__WINDOWS32<br />FILETYPE VFT_APP<br /><span style="color: #000000;">&#123;</span><br />&nbsp;BLOCK <span style="color: #ff0000;">"StringFileInfo"</span><br />&nbsp;<span style="color: #000000;">&#123;</span><br />&nbsp; BLOCK <span style="color: #ff0000;">"080904E4"</span><br />&nbsp; <span style="color: #000000;">&#123;</span><br />&nbsp; &nbsp;VALUE <span style="color: #ff0000;">"CompanyName"</span>, <span style="color: #ff0000;">"SoftSpot Software Limited<span style="color: #000000;">\0</span>00"</span><br />&nbsp; &nbsp;VALUE <span style="color: #ff0000;">"FileDescription"</span>, <span style="color: #ff0000;">"CJ Inmuebles<span style="color: #000000;">\0</span>00"</span><br />&nbsp; &nbsp;VALUE <span style="color: #ff0000;">"FileVersion"</span>, <span style="color: #ff0000;">"1.0.2.0<span style="color: #000000;">\0</span>00"</span><br />&nbsp; &nbsp;VALUE <span style="color: #ff0000;">"InternalName"</span>, <span style="color: #ff0000;">"CJInmuebles.exe<span style="color: #000000;">\0</span>00"</span><br />&nbsp; &nbsp;VALUE <span style="color: #ff0000;">"LegalCopyright"</span>, <span style="color: #ff0000;">"<span style="color: #000000;">\2</span>51SoftSpot Software Limited<span style="color: #000000;">\0</span>00"</span><br />&nbsp; &nbsp;VALUE <span style="color: #ff0000;">"LegalTrademarks"</span>, <span style="color: #ff0000;">"<span style="color: #000000;">\2</span>56SoftSpot Software Limited<span style="color: #000000;">\0</span>00"</span><br />&nbsp; &nbsp;VALUE <span style="color: #ff0000;">"OriginalFilename"</span>, <span style="color: #ff0000;">"CJInmuebles.exe<span style="color: #000000;">\0</span>00"</span><br />&nbsp; &nbsp;VALUE <span style="color: #ff0000;">"ProductName"</span>, <span style="color: #ff0000;">"CJ Inmuebles<span style="color: #000000;">\0</span>00"</span><br />&nbsp; &nbsp;VALUE <span style="color: #ff0000;">"ProductVersion"</span>, <span style="color: #ff0000;">"1.0.2.0<span style="color: #000000;">\0</span>00"</span><br />&nbsp; &nbsp;VALUE <span style="color: #ff0000;">"Comments"</span>, <span style="color: #ff0000;">"by Andrew Jameson - 2003<span style="color: #000000;">\0</span>00"</span><br />&nbsp; <span style="color: #000000;">&#125;</span><br /><br />&nbsp;<span style="color: #000000;">&#125;</span><br /><br />&nbsp;BLOCK <span style="color: #ff0000;">"VarFileInfo"</span><br />&nbsp;<span style="color: #000000;">&#123;</span><br />&nbsp; VALUE <span style="color: #ff0000;">"Translation"</span>, <span style="color: #000000;">2057</span>, <span style="color: #000000;">1252</span><br />&nbsp;<span style="color: #000000;">&#125;</span><br /><br /><span style="color: #000000;">&#125;</span><br />&nbsp;</div>[/code:1qjqrp4q] Gracias
firmar digitalmente el archivo ejecutable?
Optei por esta, achei que é a mais completa, vamos ver se alguma versão do Windows vai dizer que o editor é desconhecido. Elegí este, pensé que es el más completo, vamos a ver si alguna versión de Windows dirá que el editor es desconocido. [code=fw:3a39y0j6]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #000000;">1</span> VERSIONINFO LOADONCALL MOVEABLE DISCARDABLE IMPURE<br />FILEVERSION <span style="color: #000000;">1</span>, <span style="color: #000000;">0</span>, <span style="color: #000000;">2</span>, <span style="color: #000000;">0</span><br />PRODUCTVERSION <span style="color: #000000;">1</span>, <span style="color: #000000;">0</span>, <span style="color: #000000;">2</span>, <span style="color: #000000;">0</span><br />FILEFLAGSMASK VS_FFI_FILEFLAGSMASK<br />FILEOS VOS__WINDOWS32<br />FILETYPE VFT_APP<br /><span style="color: #000000;">&#123;</span><br />&nbsp;BLOCK <span style="color: #ff0000;">"StringFileInfo"</span><br />&nbsp;<span style="color: #000000;">&#123;</span><br />&nbsp; BLOCK <span style="color: #ff0000;">"080904E4"</span><br />&nbsp; <span style="color: #000000;">&#123;</span><br />&nbsp; &nbsp;VALUE <span style="color: #ff0000;">"CompanyName"</span>, <span style="color: #ff0000;">"Contato Sistemas<span style="color: #000000;">\0</span>00"</span><br />&nbsp; &nbsp;VALUE <span style="color: #ff0000;">"FileDescription"</span>, <span style="color: #ff0000;">"PlenoWin &nbsp;- &nbsp;Cesta Básica<span style="color: #000000;">\0</span>00"</span><br />&nbsp; &nbsp;VALUE <span style="color: #ff0000;">"FileVersion"</span>, <span style="color: #ff0000;">"1.0<span style="color: #000000;">\0</span>00"</span><br />&nbsp; &nbsp;VALUE <span style="color: #ff0000;">"InternalName"</span>, <span style="color: #ff0000;">"PlenoWin.exe<span style="color: #000000;">\0</span>00"</span><br />&nbsp; &nbsp;VALUE <span style="color: #ff0000;">"LegalCopyright"</span>, <span style="color: #ff0000;">"<span style="color: #000000;">\2</span>51Contato Sistemas e Proc. Ltda<span style="color: #000000;">\0</span>00"</span><br />&nbsp; &nbsp;VALUE <span style="color: #ff0000;">"LegalTrademarks"</span>, <span style="color: #ff0000;">"<span style="color: #000000;">\2</span>56Contato Sistemas e Proc. Ltda<span style="color: #000000;">\0</span>00"</span><br />&nbsp; &nbsp;VALUE <span style="color: #ff0000;">"OriginalFilename"</span>, <span style="color: #ff0000;">"GERAPNFE.EXE<span style="color: #000000;">\0</span>00"</span><br />&nbsp; &nbsp;VALUE <span style="color: #ff0000;">"ProductName"</span>, <span style="color: #ff0000;">"PlenoWin<span style="color: #000000;">\0</span>00"</span><br />&nbsp; &nbsp;VALUE <span style="color: #ff0000;">"ProductVersion"</span>, <span style="color: #ff0000;">"3.66<span style="color: #000000;">\0</span>00"</span><br />&nbsp; &nbsp;VALUE <span style="color: #ff0000;">"Comments"</span>, <span style="color: #ff0000;">"by Joao Santos - 2014<span style="color: #000000;">\0</span>00"</span><br />&nbsp; <span style="color: #000000;">&#125;</span><br /><br />&nbsp;<span style="color: #000000;">&#125;</span><br /><br />&nbsp;BLOCK <span style="color: #ff0000;">"VarFileInfo"</span><br />&nbsp;<span style="color: #000000;">&#123;</span><br />&nbsp; VALUE <span style="color: #ff0000;">"Translation"</span>, <span style="color: #000000;">2057</span>, <span style="color: #000000;">1252</span><br />&nbsp;<span style="color: #000000;">&#125;</span><br /><br /><span style="color: #000000;">&#125;</span><br />&nbsp;</div>[/code:3a39y0j6] Gracias, saludos.
firmar pdf con firma electronica .p12 en disco duro
Estimados buenas tardes A ver si alguien me ayuda con esto necesito firmar un pdf electrónicamente teniendo los siguientes elementos - El pdf en si ( creado con harbour ) - el archivo certificado.p12 que esta en el disco duro gracias por su ayuda saludos Wilson
firmar pdf con firma electronica .p12 en disco duro
<!-- m --><a class="postlink" href="https://www.youtube.com/watch?v=MFWyodgpehE">https://www.youtube.com/watch?v=MFWyodgpehE</a><!-- m -->
firmar pdf con firma electronica .p12 en disco duro
Hola Wilson ! Podrías intentarlo con [url:47vkwulv]https&#58;//forums&#46;fivetechsupport&#46;com/viewtopic&#46;php?f=6&t=40838&hilit=hbssl&sid=40f5cce525d1a3eae69ea990a39b185f[/url:47vkwulv] Con las funciones de Diego Fazio. Saludos,
firmar pdf con firma electronica .p12 en disco duro
Felix, Jefe muchas gracias por las respuestas estoy enfermon y no estoy trabajando mucho por eso la demora con los acceso de Felix logre armar un programa pero me esta ando error que no puede abrir el archivo certificado y creo que el problema es que yo tengo un archivo certificado.p12 y creo que se necesita de otra extension obviamente debe ser otro formato ( soy novato en el tema ) .pfx creo es la extension que necesito como transformarlo ? muchas gracias Wilson Recursos usados - harbour para bcc7 provisto por don Antonio de Linares con ssl incluido - un ejemplo de Diego en el enlace de Felix OJO no tengo errores de compilacion solo no me abre el archivo de clave saludos Wilson
firmar pdf con firma electronica .p12 en disco duro
Basándome en este POST, me surge una idea? Es posible hacer esta firma, con archivo .p12, desde mod_harbour?
firmar pdf con firma electronica .p12 en disco duro
Actualizacion cambiando la funcion ahora me de otro error estoy probando con [code=fw:9wpa2bdy]<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 /><br />&nbsp; &nbsp; <span style="color: #00C800;">local</span> cDrive &nbsp; &nbsp; &nbsp; &nbsp;:= hb_curdrive<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; <span style="color: #00C800;">local</span> cBase &nbsp; &nbsp; &nbsp; &nbsp; := cDrive + <span style="color: #ff0000;">':<span style="color: #000000;">\'</span> + curdir() + '</span>\<span style="color: #ff0000;">'<br />&nbsp; &nbsp; local cPdf &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;:= cBase + '</span>laimprenta.pdf<span style="color: #ff0000;">'<br />&nbsp; &nbsp; local cP12 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;:= cBase + '</span>certificado.p12<span style="color: #ff0000;">'<br />&nbsp; &nbsp; local clave &nbsp; &nbsp; &nbsp; &nbsp; := '</span><span style="color: #000000;">1234</span><span style="color: #ff0000;">'<br />&nbsp; &nbsp; local cPdf_Firmado &nbsp;:= strtran( lower(cPdf), '</span>.pdf<span style="color: #ff0000;">', '</span>_firmado.pdf<span style="color: #ff0000;">')<br />&nbsp; &nbsp; local nRet<br />&nbsp; &nbsp; local aErrores := { '</span>Firma OK<span style="color: #ff0000;">','</span>al abrir el archivo .CRT<span style="color: #ff0000;">','</span>al abrir el archivo .KEY<span style="color: #ff0000;">','</span>al Crear el Objeto <span style="color: #00C800;">Private</span>.Key<span style="color: #ff0000;">',;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; '</span>...la Key no corresponde al Certificado<span style="color: #ff0000;">','</span>al abrir el archivo a Firmar<span style="color: #ff0000;">','</span>al crear el objeto CMS<span style="color: #ff0000;">',;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; '</span>al asignar <span style="color: #00C800;">Data</span> al objeto CMS<span style="color: #ff0000;">','</span>al cerrar la <span style="color: #00C800;">data</span> del objeto CMS<span style="color: #ff0000;">','</span>al crear el Archivo de Salida<span style="color: #ff0000;">',;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; '</span>en la generación <span style="color: #00C800;">final</span> del archivo CMS<span style="color: #ff0000;">' }<br /><br />&nbsp; &nbsp; nRet = &nbsp;HB_CMS_SIGNFILE_PFX( cPdf, cP12, clave, cPdf_Firmado)<br />&nbsp; &nbsp; if nRet <> 1<br />&nbsp; &nbsp; &nbsp; &nbsp; ? aErrores[ nRet ]<br />&nbsp; &nbsp; end<br /><br />return nil<br /></span></div>[/code:9wpa2bdy] me da el error OPENSSL_Uplink(5219B320,08): no OPENSSL_Applink estoy usando ese ejemplo alguien sabe que me falta ? saludos
firmar pdf con firma electronica .p12 en disco duro
Hola Wilson !!! Quizás necesitemos wrappers para Harbour de algunas funciones C. [url:3ky5f8ck]https&#58;//github&#46;com/openssl/openssl/tree/master/demos[/url:3ky5f8ck] Saludos,
firmare sul tablet
ciao io ho smanettato un po con basic for android (b4a) e credo che li potresti trovare quello che cerchi, è un rad che tu scrivi in quasi basic e lui lo trasforma in java molto comodo e veloce, provalo Daniele
firmare sul tablet
Ciao a tutti, sto cercando una app per Android da installare sul tablet che mi consenta di far firmare il cliente ed assegnare a priori il nome del file passandolo come parametro. Inoltre questa app dovrebbe essere semplicissima ovvero riquadro bianco su cui scrivere e due tasti CLEAR e SAVE. Ovviamente niente pubblicità. Se c'è da pagare ovviamente pago. Avete qualche consigli da darmi? Altra cosa importante questa app deve essere lanciata da una pagina web e deve comportarsi come ad esempio la fotocamera dello smartphone o tablet ovvero quando clicco in un bottone di una pagina web deve essere lanciata la app che consente di firmare e poi dopo il SAVE si ritorna nella pagina web da cui è stata lanciata, poi un altro bottone farà l'upload del file firma. Grazie
fiscal printer class
Where I can download this class ? I must link with olivetti fiscal printer or Hugin Maxima Regards
five win demo
Buenos dias monte el fivewin que esta en el demo y me saca el siguiente error: "error activex.prg was compiled by older version, pcode version 7 is no longer supported - please recompile" esto con xharbour 1.0 ¿que púedpo hacer?
five win demo
Usalo con este Harbour: [url:73ldff66]http&#58;//code&#46;google&#46;com/p/harbour-and-xharbour-builds/downloads/detail?name=harbour_2007_02_17_7000&#46;zip&can=2&q=[/url:73ldff66]
five win for pocket PC en PALM
Antonio, Es posible trabajar con FiveWin for pocket PC en una PALM o correr una aplicación en la misma? saludos cordiales
five win for pocket PC en PALM
<!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?p=87661#p87661">viewtopic.php?p=87661#p87661</a><!-- l -->
fivePhone (iPhone)
Hi, how can I to make app for iPhone? is it possible?
fivePhone (iPhone)
Damiano, You may use FiveTouch: [url:fwrrhjjr]https&#58;//github&#46;com/FiveTechSoft/fivetouch/wiki[/url:fwrrhjjr]
fivedbu structure standard DBase Versione 7
Field type: [b:ml2rpjnj]C - Character[/b:ml2rpjnj] Y - Currency [b:ml2rpjnj]N - Numeric[/b:ml2rpjnj] F - Float [b:ml2rpjnj]D - Date[/b:ml2rpjnj] [b:ml2rpjnj]T - DateTime[/b:ml2rpjnj] B - Double I - Integer [b:ml2rpjnj]L - Logical[/b:ml2rpjnj] [b:ml2rpjnj]M - Memo[/b:ml2rpjnj] G - General C - Character (binary) M - Memo (binary) P - Picture [b:ml2rpjnj]+ - Autoincrement (dBase Level 7)[/b:ml2rpjnj] O - Double (dBase Level 7) [b:ml2rpjnj]@ - Timestamp (dBase Level 7)[/b:ml2rpjnj] V - Varchar type (Visual Foxpro) I ask to insert on fwdbu also the type of field I draw on Bold- thanks
fivedbu con append exportar
Maestro Antonio, un Saludo. Para cuando podemos tener estas funciones implementadas en el nuevo fivedbu. Mil Gracias
fivedit + github
Cristobal buenas tardes: En estos días nos ha surgido la necesidad de trabajar en equipo sobre el mismo código, en un post anteriiiiior, tu mencionaste que esto se puede hacer, y si se puede hacer como funciona? Me explico el código esta en la plataforma, pero nosotros ¿podemos compilar de manera local? De antemano gracias.
fivedit + github
Estimado Leandro [img:1x0iqumf]https&#58;//i&#46;postimg&#46;cc/k5cKJmv3/Fivedit24&#46;gif[/img:1x0iqumf] Las pausas que hay en el gif son para que puedas ver con detenimiento todas las opciones que incluye El tema como puedes ver está bastante avanzado, y, efectivamente, te permite descargar al editor el fichero que desees desde "la nube". Pero no he tenido ocasión de comprobar la grabación y actualización, aunque lo tengo desarrollado, porque antes de eso, quisiera poder ver las diferencias entre el fichero "remoto" y el que hay en el editor con la finalidad de poder determinar si necesita ser actualizado ( porque se ha modificado por otro usuario, por ejemplo ) y terminar algunas opciones que he querido añadir y que no poseen ningún otro editor. El tema lo tengo un poco "de lado" porque no he podido contar con alguien que participe de forma dinámica y me ayude a depurarlo con la continuidad que requiere este tema. Tal y como está hay procesos que tendrías que hacer de forma "más o menos manual", pero tampoco me queda mucho para que sea operativo en todas las acciones que debe realizar. A ver si en esta semana que viene le doy otro empujón. A tu disposición quedo.
fivedit + github
Hola Crisbotal. Perdon por la intromision Leandro. Tu ya sabes que puedes contar conmigo para labores que no requieran gran sabiduria . <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> Tambien tenemos pendiente el tema de las macros y algun fleco que te comente del Intelligense. En fin cuando quieras. Como sabes tambien te sugeri un subforo para FivEdit yo creo que la gente postearia mas los pequeños errores o problemas que se encuentre y los podrias corregir en corto tiempo que para eso eres un artista. Un abrazo. Jose.
fivedit + github
Gracias Jose Vicente, sé que puedo contar contigo. He creado un slack para FivEdit fivedit.slack.com <!-- m --><a class="postlink" href="https://app.slack.com/client/TNLTY7W48/CN8552VGS/details/members">https://app.slack.com/client/TNLTY7W48/ ... ls/members</a><!-- m --> y te he enviado una invitacion Disponible para todo el que tenga interés
fivedit + github
[quote="cnavarro":2ptufb41]Gracias Jose Vicente, sé que puedo contar contigo. He creado un slack para FivEdit fivedit.slack.com <!-- m --><a class="postlink" href="https://app.slack.com/client/TNLTY7W48/CN8552VGS/details/members">https://app.slack.com/client/TNLTY7W48/ ... ls/members</a><!-- m --> y te he enviado una invitacion Disponible para todo el que tenga interés[/quote:2ptufb41] Hola Cristóbal, ya estoy , No se como funciona slack, había oído/leído de su existencia en este foro, siempre es bueno aprender herramientas nuevas. bueno pues eso, estamos en contacto. Saludos Jose.
fivedit + github
Enlace del slack <!-- m --><a class="postlink" href="https://join.slack.com/t/fivedit/shared_invite/enQtNzU3NDc1NzMyODAzLTBiMmNiMzZhZjY4NWY3NzI5Y2ZhYjAzZDM3NmVmNWZiOGM2YjM0ZTM1MTBjYTY0ZmQ0YjIzOGJiZTY1YTQ5OWY">https://join.slack.com/t/fivedit/shared ... TY1YTQ5OWY</a><!-- m -->
fivedit + github
Cristobal buenos días Bueno te cuento que si logre hacer la conexión con github, pero lo que no entiendo es como vincular mi proyecto local, con el código en la nube, y cual es la versión que esta activa en el momento? De antemano gracias. [img:3qejlxns]http&#58;//hymplus&#46;com/forofw/github1&#46;png[/img:3qejlxns]
fivedit + github
Leandro, conéctate al slack, ya que todas estas preguntas son y serán muy interesantes para todos. Gracias <!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=6&t=24025&start=930#p225949">viewtopic.php?f=6&t=24025&start=930#p225949</a><!-- l -->
fivedit en equipo nuevo - SOLUCIONADO
Hola buenas tardes para todos Requiero habilitar fivedit en un nuevo ordenador, copie la carpeta que tenia en el computador antiguo, pero salió el siguiente error: [img:2kmb4j38]https&#58;//hymplus&#46;com/forofw/fiveditnuevo&#46;png[/img:2kmb4j38] No recuerdo que es lo que hace falta agregar De antemano gracias
fivedit en equipo nuevo - SOLUCIONADO
Hola Leandro Actualiza a la última versión de FivEdit <!-- m --><a class="postlink" href="https://bitbucket.org/fivetech/fivewin-contributions/downloads/fivedit.exe">https://bitbucket.org/fivetech/fivewin- ... ivedit.exe</a><!-- m --> ( 31/01/2023 ) Prueba a descomprimir este fichero en la carpeta de instalación de FivEdit y me dices si se solucionó el problema <!-- m --><a class="postlink" href="https://bitbucket.org/fivetech/fivewin-contributions/downloads/FE_DLLS.zip">https://bitbucket.org/fivetech/fivewin- ... E_DLLS.zip</a><!-- m -->
fivedit en equipo nuevo - SOLUCIONADO
Leandro , estoy viendo que tienes en la misma carpeta las 2 versiones 32 y 64 bits , es así ?, Ten en cuenta que las *.dlls son diferentes, quizás sea ese el problema. Espero lo soluciones. Jose Enviado desde mi Lenovo TB-J606F mediante Tapatalk
fivedit en equipo nuevo - SOLUCIONADO
Cristobal como vas? Descargue las dlls y el ejecutable mas actualizado, ahora nos sale el siguiente error: [img:pw4c2kau]https&#58;//hymplus&#46;com/forofw/fiveditnuevo2&#46;png[/img:pw4c2kau] Estamos trabajando sobre un Windows Server 2022 Standard
fivedit en equipo nuevo - SOLUCIONADO
Listo solucionado, descargue el archivo MSVCR100.DLL, desde la url [url:13tzifmi]https&#58;//www&#46;tuexperto&#46;com/2019/08/21/solucion-error-falta-msvcr100-dll-windows-10-7-8/[/url:13tzifmi] Lo copie en la carpeta de fivedit y problema resuelto.
fivedit en equipo nuevo - SOLUCIONADO
Saludos al forum, Lo descargue el me genera un error que no esta el archivo .fvl . este archivo lo crea el sistema o falta, xq no lo crea
fivedit en equipo nuevo - SOLUCIONADO
A mi el mensaje que me da al instalar es "Error del sistema. La ejecución de código no puede continuar porque no se encontró LIBMYSQL.dll. Este problema se puede solucionar reinstalando el programa" Y luego el mismo mensaje con ssleay32.dll, libcurl.dll y libeay32.dll
fivedit en equipo nuevo - SOLUCIONADO
[quote="Manuel Aranda":15l44wy6]A mi el mensaje que me da al instalar es "Error del sistema. La ejecución de código no puede continuar porque no se encontró LIBMYSQL.dll. Este problema se puede solucionar reinstalando el programa" Y luego el mismo mensaje con ssleay32.dll, libcurl.dll y libeay32.dll[/quote:15l44wy6] Instala en la carpeta lo que indico en un post anterior <!-- m --><a class="postlink" href="https://bitbucket.org/fivetech/fivewin-contributions/downloads/FE_DLLS.zip">https://bitbucket.org/fivetech/fivewin- ... E_DLLS.zip</a><!-- m -->
fivedit en equipo nuevo - SOLUCIONADO
[quote="ruben Dario":2dnl3o78]Saludos al forum, Lo descargue el me genera un error que no esta el archivo .fvl . este archivo lo crea el sistema o falta, xq no lo crea[/quote:2dnl3o78] La instalación es sencilla: 1.- <!-- m --><a class="postlink" href="https://bitbucket.org/fivetech/fivewin-contributions/downloads/fivedit.zip">https://bitbucket.org/fivetech/fivewin- ... ivedit.zip</a><!-- m --> 2.- Descomprime en esa carpeta ( por si se han actualizado las DLLs ) <!-- m --><a class="postlink" href="https://bitbucket.org/fivetech/fivewin-contributions/downloads/FE_DLLS.zip">https://bitbucket.org/fivetech/fivewin- ... E_DLLS.zip</a><!-- m --> 3.- Descargar la ultima actualización del ejecutable <!-- m --><a class="postlink" href="https://bitbucket.org/fivetech/fivewin-contributions/downloads/fivedit.exe">https://bitbucket.org/fivetech/fivewin- ... ivedit.exe</a><!-- m --> y copiarlo en la carpeta donde tuvieras ya instalado fivedit
fivedit en equipo nuevo - SOLUCIONADO
Sigue Igual. Nunca lo he trabajado es primera vez sigue el error .fiv no esta definido parace que faltan mas archivos el .exe no es un instalador.
fivedit en equipo nuevo - SOLUCIONADO
[quote="ruben Dario":9fys3z4p]Sigue Igual. Nunca lo he trabajado es primera vez sigue el error .fiv no esta definido parace que faltan mas archivos el .exe no es un instalador.[/quote:9fys3z4p] Rubén, te envié un correo al mail que aparece en tu "firma"
fivedit en equipo nuevo - SOLUCIONADO
Cristobal, muchas gracias. Funcionando.
fivedit en equipo nuevo - SOLUCIONADO
[quote="Manuel Aranda":3ephwltc]Cristobal, muchas gracias. Funcionando.[/quote:3ephwltc] Muy bien Manuel, cualquier cosilla o sugerencia, por aquí ando
fivedit error ( Today was Sunday ) ...by Enfant terrible
Today was Sunday .. and I had nothing to do ... so to waste time I downloaded fivedit ... and I went wrong !!!! [img:picpswio]https&#58;//s1&#46;postimg&#46;org/71txx3cywv/mmm&#46;png[/img:picpswio] maybe it's just the fate that I should not use fivedit but just xmate.... Enfant terrible
fivedit error ( Today was Sunday ) ...by Enfant terrible
You followed the installation instructions? <!-- m --><a class="postlink" href="http://wiki.fivetechsoft.com/doku.php?id=fivedit_instalation">http://wiki.fivetechsoft.com/doku.php?i ... nstalation</a><!-- m -->
fivedit error ( Today was Sunday ) ...by Enfant terrible
I use UE Studio, but have downloaded and tested Five Edit. I've enjoyed the work that has been put in it, and I've had no problems. My concern is how could you possibly have a Sunday with nothing to do?
fivedit error ( Today was Sunday ) ...by Enfant terrible
Cristobal, What I need libmysql.dll if I not use it ? it's must be a secondary option it must be not necessary for the first installation
fivedit error ( Today was Sunday ) ...by Enfant terrible
ok I download fivedit53 I open it I see all black icons also on menu I not found where i can use italian language ....
fivedit error ( Today was Sunday ) ...by Enfant terrible
I set all Harbour 3.2.0dev (r1703231115) Copyright (c) 1999-2016, <!-- m --><a class="postlink" href="http://harbour-project.org/">http://harbour-project.org/</a><!-- m --> No code generated. Cannot open Noname.prg, assumed external Cristobal I sent you the preference snaps
fivedit error ( Today was Sunday ) ...by Enfant terrible
Harbour 3.2.0dev (r1703231115) Copyright (c) 1999-2016, <!-- m --><a class="postlink" href="http://harbour-project.org/">http://harbour-project.org/</a><!-- m --> Compiling 'C:\WORK\FIVEDIT\PLANTILLAS\test.prg'... 100 200 100 100 100 200 300 400 500 600 100 200 100 200 300 100 200 100 200 300 400 500 600 700 800 900 1000 1100 1200 1300 1400 1500 1600 1700 1800 1900 2000 Lines 4735, Functions/Procedures 1 C:\WORK\FIVEDIT\PLANTILLAS\test.prg(9) Error E0032 Can't create output file 'D:\FWH\FWHTEAM\SAMPLES\FIVEDIT\FIVEDIT31\test.c'
fivedit error ( Today was Sunday ) ...by Enfant terrible
Configure type of project and paths of output files C and OBJ and of Fw, harbour and compiler C
fivedit error ( Today was Sunday ) ...by Enfant terrible
[quote="Silvio.Falconi":3mwozydt]Cristobal, What I need libmysql.dll if I not use it ? it's must be a secondary option it must be not necessary for the first installation[/quote:3mwozydt] Silvio, use databases is priority for my goals to achieve with fivedit
fivedit error ( Today was Sunday ) ...by Enfant terrible
I sent you mt test fvi not run non compile hello.prg
fivegen.rsp missing ?
Hi Jimmy, look this: [url:2om2dsm8]https&#58;//forums&#46;fivetechsupport&#46;com/viewtopic&#46;php?f=3&t=23818[/url:2om2dsm8] Regards, saludos.
fivegen.rsp missing ?
hi, i try to run Sample in c:\fwh\samples\fivegen\ but fivegen.rsp is missing ... <!-- s:( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":(" title="Sad" /><!-- s:( --> did somebody have working fivegen.rsp <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: -->
fivegen.rsp missing ?
Hi save as fivegen.rsp and change the path for your borland and harbour [code=fw:35lj9g16]<div class="fw" id="{CB}" style="font-family: monospace;">c:\borland\bcc720\lib\c0w32.obj +<br />objh\fivegen.obj +<br />objh\brwareas.obj +<br />objh\brwdata.obj +<br />objh\brwdict.obj +<br />objh\brwfrms.obj +<br />objh\brwmenu.obj +<br />objh\brwrep.obj +<br />objh\brwscrpt.obj +<br />objh\brwsets.obj +<br />objh\brwtbl.obj +<br />objh\frmdict.obj +<br />objh\web.obj +<br />objh\wizards.obj, +<br />fivegen.exe, +<br />fivegen.map, +<br />.\..\..\lib\FiveH.lib .\..\..\lib\FiveHC.lib +<br />C:\Hbbcc7_32\lib\hbrtl.lib +<br />C:\Hbbcc7_32\lib\hbvm.lib +<br />C:\Hbbcc7_32\lib\gtgui.lib +<br />C:\Hbbcc7_32\lib\hblang.lib +<br />C:\Hbbcc7_32\lib\hbmacro.lib +<br />C:\Hbbcc7_32\lib\hbrdd.lib +<br />C:\Hbbcc7_32\lib\rddntx.lib +<br />C:\Hbbcc7_32\lib\rddcdx.lib +<br />C:\Hbbcc7_32\lib\rddfpt.lib +<br />C:\Hbbcc7_32\lib\hbsix.lib +<br />C:\Hbbcc7_32\lib\hbdebug.lib +<br />C:\Hbbcc7_32\lib\hbcommon.lib +<br />C:\Hbbcc7_32\lib\hbpp.lib +<br />C:\Hbbcc7_32\lib\hbcpage.lib +<br />C:\Hbbcc7_32\lib\hbwin.lib +<br />C:\Hbbcc7_32\lib\hbcplr.lib +<br />C:\Hbbcc7_32\lib\hbct.lib +<br />C:\Hbbcc7_32\lib\xhb.lib +<br />C:\Hbbcc7_32\lib\hbziparc.lib +<br />C:\Hbbcc7_32\lib\hbmzip.lib +<br />C:\Hbbcc7_32\lib\hbzlib.lib +<br />C:\Hbbcc7_32\lib\hbpcre.lib +<br />C:\Hbbcc7_32\lib\minizip.lib +<br />C:\Hbbcc7_32\lib\png.lib +<br />c:\borland\bcc720\lib\cw32.lib +<br />c:\borland\bcc720\lib\uuid.lib +<br />c:\borland\bcc720\lib\import32.lib +<br />c:\borland\bcc720\lib\psdk\odbc32.lib +<br />c:\borland\bcc720\lib\psdk\nddeapi.lib +<br />c:\borland\bcc720\lib\psdk\iphlpapi.lib +<br />c:\borland\bcc720\lib\psdk\msimg32.lib +<br />c:\borland\bcc720\lib\psdk\psapi.lib +<br />c:\borland\bcc720\lib\psdk\rasapi32.lib +<br />c:\borland\bcc720\lib\psdk\gdiplus.lib +<br />c:\borland\bcc720\lib\psdk\shell32.lib,<br />fivegen.res<br /> </div>[/code:35lj9g16]
fivegen.rsp missing ?
hi, [quote="alerchster":3j4ggpng]save as fivegen.rsp and change the path for your borland and harbour[/quote:3j4ggpng] thx for help, it work now
fivegenh.mak where is it
l try to complie fivegen it told me ficegenh.mak dos not exit how can l find it by the way visualfw work very well many tanks Antonio tank you l am new with harbour but l want to learn many tanks
fivegenh.mak where is it
Richard, Here it is: fivegenh.mak [code=fw:3enelctw]<div class="fw" id="{CB}" style="font-family: monospace;">.path.obj=.\objh<br /><br />PRG &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; = \<br />FIVEGEN.PRG &nbsp; &nbsp; \<br />BRWAREAS.PRG &nbsp; &nbsp;\<br />BRWDATA.PRG &nbsp; &nbsp; \<br />BRWDICT.PRG &nbsp; &nbsp; \<br />BRWFRMS.PRG &nbsp; &nbsp; \<br />BRWMENU.PRG &nbsp; &nbsp; \<br />BRWREP.PRG &nbsp; &nbsp; &nbsp;\<br />BRWSCRPT.PRG &nbsp; &nbsp;\<br />BRWSETS.PRG &nbsp; &nbsp; \<br />BRWTBL.PRG &nbsp; &nbsp; &nbsp;\<br />FRMDICT.PRG &nbsp; &nbsp; \<br />WEB.PRG &nbsp; &nbsp; &nbsp; &nbsp; \<br />WIZARDS.PRG<br /><br />PROJECT &nbsp; &nbsp; : <span style="color: #000000;">FiveGen</span>.exe<br /><br />FiveGen.exe : $<span style="color: #000000;">&#40;</span>PRG:.PRG=.OBJ<span style="color: #000000;">&#41;</span> fivegen.res<br />&nbsp; &nbsp;c:\bcc582\bin\ilink32 -aa -Tpe @fivegen.rsp<br /><br />.PRG.OBJ:<br />&nbsp; <span style="color: #000000;">c</span>:\harbour\bin\harbour $< /N /Oobjh\ /I.\..\..\include /Ic:\harbour\include<br />&nbsp; c:\bcc582\bin\bcc32 -c -Ic:\harbour\include -oobjh\$& objh\$&.c<br /><br />FiveGen.res : <span style="color: #000000;">FiveGen</span>.rc<br />&nbsp; &nbsp;c:\bcc582\bin\brc32 -r fivegen.rc<br />&nbsp;</div>[/code:3enelctw]
fivegenh.mak where is it
Antonio I try to gen Fivegen, it got 41 errors for compile C:\fwh\samples\fivegen>c:\bcc582\bin\make -ffivegenh.mak MAKE Version 5.2 Copyright (c) 1987, 2000 Borland Error fivegenh.mak 40: Command syntax error Error fivegenh.mak 41: Command syntax error Error fivegenh.mak 42: Command syntax error Error fivegenh.mak 44: Command syntax error Error fivegenh.mak 45: Command syntax error Error fivegenh.mak 47: Command syntax error Error fivegenh.mak 49: Command syntax error Error fivegenh.mak 50: Command syntax error Error fivegenh.mak 51: Command syntax error Error fivegenh.mak 52: Command syntax error Error fivegenh.mak 53: Command syntax error Error fivegenh.mak 54: Command syntax error Error fivegenh.mak 55: Command syntax error Error fivegenh.mak 56: Command syntax error Error fivegenh.mak 57: Command syntax error Error fivegenh.mak 58: Command syntax error Error fivegenh.mak 59: Command syntax error Error fivegenh.mak 60: Command syntax error Error fivegenh.mak 61: Command syntax error Error fivegenh.mak 62: Command syntax error Error fivegenh.mak 63: Command syntax error Error fivegenh.mak 64: Command syntax error Error fivegenh.mak 65: Command syntax error Error fivegenh.mak 66: Command syntax error Error fivegenh.mak 69: Command syntax error Error fivegenh.mak 70: Command syntax error Error fivegenh.mak 71: Command syntax error Error fivegenh.mak 72: Command syntax error Error fivegenh.mak 73: Command syntax error Error fivegenh.mak 74: Command syntax error Error fivegenh.mak 75: Command syntax error Error fivegenh.mak 76: Command syntax error Error fivegenh.mak 78: Command syntax error Error fivegenh.mak 80: Command syntax error Error fivegenh.mak 83: Command syntax error Error fivegenh.mak 84: Command syntax error Error fivegenh.mak 87: Command syntax error Error fivegenh.mak 88: Command syntax error Error fivegenh.mak 89: Command syntax error Error fivegenh.mak 90: Command syntax error Error fivegenh.mak 93: Command syntax error *** 41 errors during make *** I check the last post about fivegen, so i add the fivegen.rsp <!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=3&t=22961&p=122876&hilit=fivegen.rsp#p122876">viewtopic.php?f=3&t=22961&p=122876&hilit=fivegen.rsp#p122876</a><!-- l --> If that i've anything missing or not? [code=fw:3izgk15k]<div class="fw" id="{CB}" style="font-family: monospace;"><br />My Fivegen.rsp file<br /><br />c:\bcc582\lib\c0w32.obj + <br />objh\fivegen.obj + <br />objh\brwareas.obj + <br />objh\brwdata.obj + <br />objh\brwdict.obj + <br />objh\brwfrms.obj + <br />objh\brwmenu.obj + <br />objh\brwrep.obj + <br />objh\brwscrpt.obj + <br />objh\brwsets.obj + <br />objh\brwtbl.obj + <br />objh\frmdict.obj + <br />objh\web.obj + <br />objh\wizards.obj, + <br />fivegen.exe, + <br />fivegen.map, + <br />.\..\..\lib\FiveH.lib .\..\..\lib\FiveHC.lib + <br />c:\harbour\lib\hbrtl.lib + <br />c:\harbour\lib\hbvm.lib + <br />c:\harbour\lib\gtgui.lib + <br />c:\harbour\lib\hblang.lib + <br />c:\harbour\lib\hbmacro.lib + <br />c:\harbour\lib\hbrdd.lib + <br />c:\harbour\lib\rddntx.lib + <br />c:\harbour\lib\rddcdx.lib + <br />c:\harbour\lib\rddfpt.lib + <br />c:\harbour\lib\hbsix.lib + <br />c:\harbour\lib\hbdebug.lib + <br />c:\harbour\lib\hbcommon.lib + <br />c:\harbour\lib\hbpp.lib + <br />c:\harbour\lib\hbcpage.lib + <br />c:\harbour\lib\hbwin.lib + <br />c:\harbour\lib\hbcplr.lib + <br />c:\harbour\lib\hbct.lib + <br />c:\harbour\lib\xhb.lib + <br />c:\harbour\lib\hbziparc.lib + <br />c:\harbour\lib\hbmzip.lib + <br />c:\harbour\lib\hbzlib.lib + <br />c:\harbour\lib\minizip.lib + <br />c:\harbour\lib\png.lib + <br />c:\bcc582\lib\cw32.lib + <br />c:\bcc582\lib\uuid.lib + <br />c:\bcc582\lib\import32.lib + <br />c:\bcc582\lib\psdk\odbc32.lib + <br />c:\bcc582\lib\psdk\nddeapi.lib + <br />c:\bcc582\lib\psdk\iphlpapi.lib + <br />c:\bcc582\lib\psdk\msimg32.lib + <br />c:\bcc582\lib\psdk\psapi.lib + <br />c:\bcc582\lib\psdk\rasapi32.lib + <br />c:\bcc582\lib\psdk\gdiplus.lib + <br />c:\bcc582\lib\psdk\shell32.lib, <br />fivegen.res <br />&nbsp;</div>[/code:3izgk15k] [code=fw:3izgk15k]<div class="fw" id="{CB}" style="font-family: monospace;"><br />My fivegenh.mak file<br /><br />#MakeFile <span style="color: #00C800;">for</span> Fivegen sample<br /><br />HBDIR=c:\harbour<br />BCDIR=c:\bcc582<br />FWDIR=c:\fwh<br />OBJHD=objh<br /><br /><br />#change these paths as needed<br /><br />.path.OBJ = .\objh<br />.path.PRG = .\<br />.path.CH = $<span style="color: #000000;">&#40;</span>BCDIR<span style="color: #000000;">&#41;</span>\include;$<span style="color: #000000;">&#40;</span>FWDIR<span style="color: #000000;">&#41;</span>\include;$<span style="color: #000000;">&#40;</span>HBDIR<span style="color: #000000;">&#41;</span>\include<br />.path.C = .\<br />.path.rc = .\<br /><br />#important: <span style="color: #000000;">Use</span> Uppercase <span style="color: #00C800;">for</span> filenames extensions, in the <span style="color: #00C800;">next</span> two rules!<br /><br />PRG = \<br />FIVEGEN.PRG \<br />BRWAREAS.PRG \<br />BRWDATA.PRG \<br />BRWDICT.PRG \<br />BRWFRMS.PRG \<br />BRWMENU.PRG \<br />BRWREP.PRG \<br />BRWSCRPT.PRG \<br />BRWSETS.PRG \<br />BRWTBL.PRG \<br />FRMDICT.PRG \<br />WEB.PRG \<br />WIZARDS.PRG<br /><br />PROJECT : <span style="color: #000000;">FiveGen</span>.exe<br /><br />FiveGen.exe : $<span style="color: #000000;">&#40;</span>PRG:.PRG=.OBJ<span style="color: #000000;">&#41;</span> Fivegen.res<br />&nbsp; &nbsp; c:\bcc582\bin\ilink32 -aa -Tpe @fivegen.rsp<br /><br /><span style="color: #00C800;">IF</span> NOT EXIST FIVEGEN.RES c:\bcc582\bin\brc32 -r FIVEGEN.RC<br />echo c:\bcc582\lib\c0w32.obj + > make.log<br />echo $<span style="color: #000000;">&#40;</span>OBJHD<span style="color: #000000;">&#41;</span>\FIVEGEN.OBJ $<span style="color: #000000;">&#40;</span>OBJHD<span style="color: #000000;">&#41;</span>\BRWAREAS.OBJ $<span style="color: #000000;">&#40;</span>OBJHD<span style="color: #000000;">&#41;</span>\BRWDATA.OBJ $<span style="color: #000000;">&#40;</span>OBJHD<span style="color: #000000;">&#41;</span>\BRWDICT.OBJ $<span style="color: #000000;">&#40;</span>OBJHD<span style="color: #000000;">&#41;</span>\BRWFRMS.OBJ $<span style="color: #000000;">&#40;</span>OBJHD<span style="color: #000000;">&#41;</span>\BRWMENU.OBJ $<span style="color: #000000;">&#40;</span>OBJHD<span style="color: #000000;">&#41;</span>\BRWREP.OBJ $<span style="color: #000000;">&#40;</span>OBJHD<span style="color: #000000;">&#41;</span>\BRWSCRPT.OBJ $<span style="color: #000000;">&#40;</span>OBJHD<span style="color: #000000;">&#41;</span>\BRWSETS.OBJ $<span style="color: #000000;">&#40;</span>OBJHD<span style="color: #000000;">&#41;</span>\BRWTBL.OBJ $<span style="color: #000000;">&#40;</span>OBJHD<span style="color: #000000;">&#41;</span>\FRMDICT.OBJ $<span style="color: #000000;">&#40;</span>OBJHD<span style="color: #000000;">&#41;</span>\WEB.OBJ $<span style="color: #000000;">&#40;</span>OBJHD<span style="color: #000000;">&#41;</span>\WIZARDS.OBJ, + >> make.log<br /><br />echo FIVEGEN.EXE, + >> make.log<br />echo FIVEGEN.MAP, + >> make.log<br /><br />echo $<span style="color: #000000;">&#40;</span>FWDIR<span style="color: #000000;">&#41;</span>\lib\FiveH.lib $<span style="color: #000000;">&#40;</span>FWDIR<span style="color: #000000;">&#41;</span>\lib\FiveHC.lib + >> make.log<br /><br />echo $<span style="color: #000000;">&#40;</span>HBDIR<span style="color: #000000;">&#41;</span>\lib\win\bcc\hbrtl.lib + >> make.log<br />echo $<span style="color: #000000;">&#40;</span>HBDIR<span style="color: #000000;">&#41;</span>\lib\win\bcc\hbvm.lib + >> make.log<br />echo $<span style="color: #000000;">&#40;</span>HBDIR<span style="color: #000000;">&#41;</span>\lib\win\bcc\gtgui.lib + >> make.log<br />echo $<span style="color: #000000;">&#40;</span>HBDIR<span style="color: #000000;">&#41;</span>\lib\win\bcc\hblang.lib + >> make.log<br />echo $<span style="color: #000000;">&#40;</span>HBDIR<span style="color: #000000;">&#41;</span>\lib\win\bcc\hbmacro.lib + >> make.log<br />echo $<span style="color: #000000;">&#40;</span>HBDIR<span style="color: #000000;">&#41;</span>\lib\win\bcc\hbrdd.lib + >> make.log<br />echo $<span style="color: #000000;">&#40;</span>HBDIR<span style="color: #000000;">&#41;</span>\lib\win\bcc\rddntx.lib + >> make.log<br />echo $<span style="color: #000000;">&#40;</span>HBDIR<span style="color: #000000;">&#41;</span>\lib\win\bcc\rddcdx.lib + >> make.log<br />echo $<span style="color: #000000;">&#40;</span>HBDIR<span style="color: #000000;">&#41;</span>\lib\win\bcc\rddfpt.lib + >> make.log<br />echo $<span style="color: #000000;">&#40;</span>HBDIR<span style="color: #000000;">&#41;</span>\lib\win\bcc\hbsix.lib + >> make.log<br />echo $<span style="color: #000000;">&#40;</span>HBDIR<span style="color: #000000;">&#41;</span>\lib\win\bcc\hbdebug.lib + >> make.log<br />echo $<span style="color: #000000;">&#40;</span>HBDIR<span style="color: #000000;">&#41;</span>\lib\win\bcc\hbcommon.lib + >> make.log<br />echo $<span style="color: #000000;">&#40;</span>HBDIR<span style="color: #000000;">&#41;</span>\lib\win\bcc\hbpp.lib + >> make.log<br />echo $<span style="color: #000000;">&#40;</span>HBDIR<span style="color: #000000;">&#41;</span>\lib\win\bcc\hbcpage.lib + >> make.log<br />echo $<span style="color: #000000;">&#40;</span>HBDIR<span style="color: #000000;">&#41;</span>\lib\win\bcc\hbwin.lib + >> make.log<br />echo $<span style="color: #000000;">&#40;</span>HBDIR<span style="color: #000000;">&#41;</span>\lib\win\bcc\hbcplr.lib + >> make.log<br />echo $<span style="color: #000000;">&#40;</span>HBDIR<span style="color: #000000;">&#41;</span>\lib\win\bcc\hbct.lib + >> make.log<br />echo $<span style="color: #000000;">&#40;</span>HBDIR<span style="color: #000000;">&#41;</span>\lib\win\bcc\xhb.lib + >> make.log<br /><br /><br />echo $<span style="color: #000000;">&#40;</span>BCDIR<span style="color: #000000;">&#41;</span>\lib\cw32.lib + >> make.log<br />echo $<span style="color: #000000;">&#40;</span>BCDIR<span style="color: #000000;">&#41;</span>\lib\uuid.lib + >> make.log<br />echo $<span style="color: #000000;">&#40;</span>BCDIR<span style="color: #000000;">&#41;</span>\lib\import32.lib + >> make.log<br />echo $<span style="color: #000000;">&#40;</span>BCDIR<span style="color: #000000;">&#41;</span>\lib\psdk\odbc32.lib + >> make.log<br />echo $<span style="color: #000000;">&#40;</span>BCDIR<span style="color: #000000;">&#41;</span>\lib\psdk\nddeapi.lib + >> make.log<br />echo $<span style="color: #000000;">&#40;</span>BCDIR<span style="color: #000000;">&#41;</span>\lib\psdk\iphlpapi.lib + >> make.log<br />echo $<span style="color: #000000;">&#40;</span>BCDIR<span style="color: #000000;">&#41;</span>\lib\psdk\msimg32.lib + >> make.log<br />echo $<span style="color: #000000;">&#40;</span>BCDIR<span style="color: #000000;">&#41;</span>\lib\psdk\rasapi32.lib, >> make.log<br /><br /><span style="color: #00C800;">IF</span> EXIST FIVEGEN.RES echo FIVEGEN.RES >> make.log<br /><br />$<span style="color: #000000;">&#40;</span>BCDIR<span style="color: #000000;">&#41;</span>\bin\ilink32 -Gn -aa -Tpe -s @make.log > ERROR.LOG<br /><br />.PRG.OBJ:<br /><span style="color: #000000;">c</span>:\harbour\bin\harbour $< /N /Oobjh\ /I.\..\..\include /Ic:\harbour\include<br />c:\bcc582\bin\bcc32 -c -Ic:\harbour\include -oobjh\$& objh\$&.c<br /><br />.C.OBJ:<br /><span style="color: #000000;">echo</span> -c -tWM -D__HARBOUR__ -DHB_API_MACROS > tmp<br />echo -I$<span style="color: #000000;">&#40;</span>HBDIR<span style="color: #000000;">&#41;</span>\include;$<span style="color: #000000;">&#40;</span>FWDIR<span style="color: #000000;">&#41;</span>\include.$<span style="color: #000000;">&#40;</span>BcDIR<span style="color: #000000;">&#41;</span>\include >> tmp<br />$<span style="color: #000000;">&#40;</span>BCDIR<span style="color: #000000;">&#41;</span>\bin\bcc32 -oobj\$& @tmp $&.c<br />del tmp<br /><br />Fivegen.res : <span style="color: #000000;">Fivegen</span>.rc<br />c:\bcc582\bin\brc32 -r fivegen.rc<br /><br />&nbsp;</div>[/code:3izgk15k]
fivegenh.mak where is it
Eddie, Use this makefile and rsp file. To build it, do go.bat go.bat [code=fw:1scccxc3]<div class="fw" id="{CB}" style="font-family: monospace;">c:\bcc582\bin\make -ffivegenh.mak<br /><span style="color: #00C800;">if</span> errorlevel <span style="color: #000000;">0</span> fivegen.exe</div>[/code:1scccxc3] fivegenh.mak [code=fw:1scccxc3]<div class="fw" id="{CB}" style="font-family: monospace;">.path.obj=.\objh<br /><br />PRG &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; = \<br />FIVEGEN.PRG &nbsp; &nbsp; \<br />BRWAREAS.PRG &nbsp; &nbsp;\<br />BRWDATA.PRG &nbsp; &nbsp; \<br />BRWDICT.PRG &nbsp; &nbsp; \<br />BRWFRMS.PRG &nbsp; &nbsp; \<br />BRWMENU.PRG &nbsp; &nbsp; \<br />BRWREP.PRG &nbsp; &nbsp; &nbsp;\<br />BRWSCRPT.PRG &nbsp; &nbsp;\<br />BRWSETS.PRG &nbsp; &nbsp; \<br />BRWTBL.PRG &nbsp; &nbsp; &nbsp;\<br />FRMDICT.PRG &nbsp; &nbsp; \<br />WEB.PRG &nbsp; &nbsp; &nbsp; &nbsp; \<br />WIZARDS.PRG<br /><br />PROJECT &nbsp; &nbsp; : <span style="color: #000000;">FiveGen</span>.exe<br /><br />FiveGen.exe : $<span style="color: #000000;">&#40;</span>PRG:.PRG=.OBJ<span style="color: #000000;">&#41;</span> fivegen.res<br />&nbsp; &nbsp;c:\bcc582\bin\ilink32 -aa -Tpe @fivegen.rsp<br /><br />.PRG.OBJ:<br />&nbsp; <span style="color: #000000;">c</span>:\harbour\bin\harbour $< /N /Oobjh\ /I.\..\..\include /Ic:\harbour\include<br />&nbsp; c:\bcc582\bin\bcc32 -c -Ic:\harbour\include -oobjh\$& objh\$&.c<br /><br />FiveGen.res : <span style="color: #000000;">FiveGen</span>.rc<br />&nbsp; &nbsp;c:\bcc582\bin\brc32 -r fivegen.rc<br />&nbsp;</div>[/code:1scccxc3] fivegen.rsp [code=fw:1scccxc3]<div class="fw" id="{CB}" style="font-family: monospace;">c:\bcc582\lib\c0w32.obj + <br />objh\fivegen.obj + <br />objh\brwareas.obj + <br />objh\brwdata.obj + <br />objh\brwdict.obj + <br />objh\brwfrms.obj + <br />objh\brwmenu.obj + <br />objh\brwrep.obj + <br />objh\brwscrpt.obj + <br />objh\brwsets.obj + <br />objh\brwtbl.obj + <br />objh\frmdict.obj + <br />objh\web.obj + <br />objh\wizards.obj, + <br />fivegen.exe, + <br />fivegen.map, + <br />.\..\..\lib\FiveH.lib .\..\..\lib\FiveHC.lib + <br />c:\harbour\lib\hbrtl.lib + <br />c:\harbour\lib\hbvm.lib + <br />c:\harbour\lib\gtgui.lib + <br />c:\harbour\lib\hblang.lib + <br />c:\harbour\lib\hbmacro.lib + <br />c:\harbour\lib\hbrdd.lib + <br />c:\harbour\lib\rddntx.lib + <br />c:\harbour\lib\rddcdx.lib + <br />c:\harbour\lib\rddfpt.lib + <br />c:\harbour\lib\hbsix.lib + <br />c:\harbour\lib\hbdebug.lib + <br />c:\harbour\lib\hbcommon.lib + <br />c:\harbour\lib\hbpp.lib + <br />c:\harbour\lib\hbcpage.lib + <br />c:\harbour\lib\hbwin.lib + <br />c:\harbour\lib\hbcplr.lib + <br />c:\harbour\lib\hbct.lib + <br />c:\harbour\lib\xhb.lib + <br />c:\harbour\lib\hbziparc.lib + <br />c:\harbour\lib\hbmzip.lib + <br />c:\harbour\lib\hbzlib.lib + <br />c:\harbour\lib\hbpcre.lib + <br />c:\harbour\lib\minizip.lib + <br />c:\harbour\lib\png.lib + <br />c:\bcc582\lib\cw32.lib + <br />c:\bcc582\lib\uuid.lib + <br />c:\bcc582\lib\import32.lib + <br />c:\bcc582\lib\psdk\odbc32.lib + <br />c:\bcc582\lib\psdk\nddeapi.lib + <br />c:\bcc582\lib\psdk\iphlpapi.lib + <br />c:\bcc582\lib\psdk\msimg32.lib + <br />c:\bcc582\lib\psdk\psapi.lib + <br />c:\bcc582\lib\psdk\rasapi32.lib + <br />c:\bcc582\lib\psdk\gdiplus.lib + <br />c:\bcc582\lib\psdk\shell32.lib, <br />fivegen.res <br />&nbsp;</div>[/code:1scccxc3]
fivegenh.mak where is it
Antonio It can be compile. But I got an error of index file (it's normal DBFcdx (Browses.fpt) but it build to DBFntx (Browses.dbt)), So i can't run the program. Is that any wrong setting with the program? [code=fw:f86x6y34]<div class="fw" id="{CB}" style="font-family: monospace;">Error <span style="color: #0000ff;">Message</span><br /><br />Application<br />===========<br />   Path and <span style="color: #0000ff;">name</span>: <span style="color: #000000;">C</span>:\fwh\samples\fivegen\fivegen.exe <span style="color: #000000;">&#40;</span><span style="color: #000000;">32</span> bits<span style="color: #000000;">&#41;</span><br />   <span style="color: #0000ff;">Size</span>: <span style="color: #000000;">2</span>,<span style="color: #000000;">560</span>,<span style="color: #000000;">000</span> bytes<br />   Compiler version: <span style="color: #000000;">Harbour</span> <span style="color: #000000;">3.1</span>.0dev <span style="color: #000000;">&#40;</span>Rev. <span style="color: #000000;">17222</span><span style="color: #000000;">&#41;</span><br />   FiveWin  Version: <span style="color: #000000;">FWH</span> <span style="color: #000000;">12.01</span><br />   Windows version: <span style="color: #000000;">5.1</span>, Build <span style="color: #000000;">2600</span> Service Pack <span style="color: #000000;">3</span><br /><br />   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;">0</span> secs <br />   Error occurred <span style="color: #00C800;">at</span>: <span style="color: #000000;">04</span>/<span style="color: #000000;">17</span>/<span style="color: #000000;">12</span>, <span style="color: #000000;">14</span>:<span style="color: #000000;">25</span>:<span style="color: #000000;">29</span><br />   Error description: <span style="color: #000000;"><span style="color: #000000;">&#40;</span>DOS</span> Error <span style="color: #000000;">2</span><span style="color: #000000;">&#41;</span> DBFCDX/<span style="color: #000000;">1002</span>  Open error: <span style="color: #000000;">SYSTEM</span>\Browses.fpt<br /><br />Stack Calls<br />===========<br />   Called <span style="color: #0000ff;">from</span>:  => DBUSEAREA<span style="color: #000000;">&#40;</span> <span style="color: #000000;">0</span> <span style="color: #000000;">&#41;</span><br />   Called <span style="color: #0000ff;">from</span>: .\source\classes\TDICT.PRG => TDICT:<span style="color: #00C800;">NEW</span><span style="color: #000000;">&#40;</span> <span style="color: #000000;">263</span> <span style="color: #000000;">&#41;</span><br />   Called <span style="color: #0000ff;">from</span>: <span style="color: #000000;">FIVEGEN</span>.PRG => TAPPLICATION:<span style="color: #00C800;">NEW</span><span style="color: #000000;">&#40;</span> <span style="color: #000000;">88</span> <span style="color: #000000;">&#41;</span><br />   Called <span style="color: #0000ff;">from</span>: <span style="color: #000000;">FIVEGEN</span>.PRG => MAIN<span style="color: #000000;">&#40;</span> <span style="color: #000000;">24</span> <span style="color: #000000;">&#41;</span><br /> </div>[/code:f86x6y34] [code=fw:f86x6y34]<div class="fw" id="{CB}" style="font-family: monospace;">Fivegen.prg<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;">"FiveGen.ch"</span><br /><br /><span style="color: #00D7D7;">#define</span> DRIVER <span style="color: #ff0000;">"DBFCDX"</span><br /><br />extern MsgDate, GetHostByAddress, ExitWnd, GlobalSize, GlobalAlloc<br />extern IsDigit, MsgAbout, <span style="color: #0000ff;">MsgInfo</span>, DibFromBitmap, DibWrite, WndBitmap<br />extern GetDesktopWindow, cGetFile, WinExec, nRandom, I2Hex, nStrCrc16<br />extern Encrypt, Decrypt, cGetDir, WNetConnect, WNetGetUser, ShellExecute<br />extern MsgCalc, OSend<br /><br />extern DbfCdx<br /><br />memvar oApp, cActionName<br /><br /><br /> </div>[/code:f86x6y34] [code=fw:f86x6y34]<div class="fw" id="{CB}" style="font-family: monospace;"><br />the tdict.prg<br />   <span style="color: #00C800;">if</span> ! File<span style="color: #000000;">&#40;</span> cPath + <span style="color: #ff0000;">"<span style="color: #000000;">\B</span>rowses.dbf"</span> <span style="color: #000000;">&#41;</span><br />      DbCreate<span style="color: #000000;">&#40;</span> cPath + <span style="color: #ff0000;">"<span style="color: #000000;">\B</span>rowses.dbf"</span>,;<br />                <span style="color: #000000;">&#123;</span> <span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"NAME"</span>,      <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 />                  <span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"DATABASE"</span>,  <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 />                  <span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"TITLE"</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 />                  <span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"EDITFORM"</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 />                  <span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"EDITCAPT"</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 />                  <span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"CLRTEXT"</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 />                  <span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"CLRBACK"</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 />                  <span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"ADD"</span>,       <span style="color: #ff0000;">"L"</span>,   <span style="color: #000000;">1</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>,;<br />                  <span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"DUPLICATE"</span>, <span style="color: #ff0000;">"L"</span>,   <span style="color: #000000;">1</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>,;<br />                  <span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"EDIT"</span>,      <span style="color: #ff0000;">"L"</span>,   <span style="color: #000000;">1</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>,;<br />                  <span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"DEL"</span>,       <span style="color: #ff0000;">"L"</span>,   <span style="color: #000000;">1</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>,;<br />                  <span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"SEARCH"</span>,    <span style="color: #ff0000;">"L"</span>,   <span style="color: #000000;">1</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>,;<br />                  <span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"QUERIES"</span>,   <span style="color: #ff0000;">"L"</span>,   <span style="color: #000000;">1</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>,;<br />                  <span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"GRAPHICS"</span>,  <span style="color: #ff0000;">"L"</span>,   <span style="color: #000000;">1</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>,;<br />                  <span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"PRINT"</span>,     <span style="color: #ff0000;">"L"</span>,   <span style="color: #000000;">1</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>,;<br />                  <span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"TABS"</span>,      <span style="color: #ff0000;">"C"</span>,  <span style="color: #000000;">45</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>,;<br />                  <span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"BITMAPS"</span>,   <span style="color: #ff0000;">"M"</span>,   <span style="color: #000000;">8</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>,;<br />                  <span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"BUTTON1"</span>,   <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">128</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>,;<br />                  <span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"BUTTON2"</span>,   <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">128</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>,;<br />                  <span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"BUTTON3"</span>,   <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">128</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>,;<br />                  <span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"BUTTON4"</span>,   <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">128</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>,;<br />                  <span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"BUTTON5"</span>,   <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">128</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>,;<br />                  <span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"ONCLICK1"</span>,  <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">128</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>,;<br />                  <span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"ONCLICK2"</span>,  <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">128</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>,;<br />                  <span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"ONCLICK3"</span>,  <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">128</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>,;<br />                  <span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"ONCLICK4"</span>,  <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">128</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>,;<br />                  <span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"ONCLICK5"</span>,  <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">128</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>,;<br />                  <span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"COMMENTS"</span>,  <span style="color: #ff0000;">"C"</span>,  <span style="color: #000000;">45</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>,;<br />                  <span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"ONOPEN"</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 />                  <span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"ONCLOSE"</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 />                  <span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"ONSELECT"</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 />                  <span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"ONRETURN"</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> <span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#41;</span><br />   <span style="color: #00C800;">endif</span><br /><br />   <span style="color: #00C800;">if</span> ! File<span style="color: #000000;">&#40;</span> cPath + <span style="color: #ff0000;">"<span style="color: #000000;">\B</span>rowses"</span> + IndexExt<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span><br />      USE <span style="color: #000000;">&#40;</span> cPath + <span style="color: #ff0000;">"<span style="color: #000000;">\B</span>rowses.dbf"</span> <span style="color: #000000;">&#41;</span> <span style="color: #00C800;">NEW</span> <span style="color: #0000ff;">ALIAS</span> Browses<br />      BROWSE<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />      <span style="color: #00C800;">if</span> IndexExt<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> == <span style="color: #ff0000;">".NTX"</span><br />         <span style="color: #0000ff;">INDEX</span> <span style="color: #0000ff;">ON</span> <span style="color: #0000ff;">Name</span> <span style="color: #0000ff;">TO</span> <span style="color: #000000;">&#40;</span> cPath + <span style="color: #ff0000;">"<span style="color: #000000;">\B</span>rowses"</span> <span style="color: #000000;">&#41;</span><br />      <span style="color: #00C800;">else</span><br />         <span style="color: #0000ff;">INDEX</span> <span style="color: #0000ff;">ON</span> <span style="color: #0000ff;">Name</span> TAG <span style="color: #ff0000;">"Name"</span> ;<br />            <span style="color: #0000ff;">TO</span> <span style="color: #000000;">&#40;</span> cPath + <span style="color: #ff0000;">"<span style="color: #000000;">\B</span>rowses"</span> <span style="color: #000000;">&#41;</span> <span style="color: #00C800;">FOR</span> ! Browses-><span style="color: #000000;">&#40;</span> Deleted<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span><br /><br />         <span style="color: #0000ff;">INDEX</span> <span style="color: #0000ff;">ON</span> DataBase TAG <span style="color: #ff0000;">"DataBase"</span> ;<br />            <span style="color: #0000ff;">TO</span> <span style="color: #000000;">&#40;</span> cPath + <span style="color: #ff0000;">"<span style="color: #000000;">\B</span>rowses"</span> <span style="color: #000000;">&#41;</span> <span style="color: #00C800;">FOR</span> ! Browses-><span style="color: #000000;">&#40;</span> Deleted<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span><br />      <span style="color: #00C800;">endif</span><br />      USE<br />   <span style="color: #00C800;">endif</span><br /> </div>[/code:f86x6y34]
fivegenh.mak where is it
Eddie, Please run this FiveGen.exe that I just built and let me know if it works fine there: [url:20gbpraa]http&#58;//code&#46;google&#46;com/p/fivewin-contributions/downloads/detail?name=fivegen&#46;exe&can=2&q=[/url:20gbpraa]
fivegenh.mak where is it
Antonio It got errors [code=fw:2dtg7kpb]<div class="fw" id="{CB}" style="font-family: monospace;">Application<br />===========<br />&nbsp; &nbsp;Path and <span style="color: #0000ff;">name</span>: <span style="color: #000000;">C</span>:\fwh\samples\fivegen\fivegen.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;">2</span>,<span style="color: #000000;">673</span>,<span style="color: #000000;">152</span> bytes<br />&nbsp; &nbsp;Compiler version: <span style="color: #000000;">Harbour</span> <span style="color: #000000;">3.1</span>.0dev <span style="color: #000000;">&#40;</span>Rev. <span style="color: #000000;">17346</span><span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;FiveWin &nbsp;Version: <span style="color: #000000;">FWH</span> <span style="color: #000000;">12.02</span><br />&nbsp; &nbsp;Windows version: <span style="color: #000000;">5.1</span>, Build <span style="color: #000000;">2600</span> Service Pack <span style="color: #000000;">3</span><br /><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;">0</span> secs <br />&nbsp; &nbsp;Error occurred <span style="color: #00C800;">at</span>: <span style="color: #000000;">04</span>/<span style="color: #000000;">17</span>/<span style="color: #000000;">12</span>, <span style="color: #000000;">15</span>:<span style="color: #000000;">39</span>:<span style="color: #000000;">10</span><br />&nbsp; &nbsp;Error description: <span style="color: #000000;"><span style="color: #000000;">&#40;</span>DOS</span> Error <span style="color: #000000;">2</span><span style="color: #000000;">&#41;</span> DBFCDX/<span style="color: #000000;">1002</span> &nbsp;Open error: <span style="color: #000000;">SYSTEM</span>\Browses.fpt<br /><br />Stack Calls<br />===========<br />&nbsp; &nbsp;Called <span style="color: #0000ff;">from</span>: &nbsp;=> DBUSEAREA<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>: .\source\classes\TDICT.PRG => TDICT:<span style="color: #00C800;">NEW</span><span style="color: #000000;">&#40;</span> <span style="color: #000000;">263</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;Called <span style="color: #0000ff;">from</span>: <span style="color: #000000;">FIVEGEN</span>.PRG => TAPPLICATION:<span style="color: #00C800;">NEW</span><span style="color: #000000;">&#40;</span> <span style="color: #000000;">88</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;Called <span style="color: #0000ff;">from</span>: <span style="color: #000000;">FIVEGEN</span>.PRG => MAIN<span style="color: #000000;">&#40;</span> <span style="color: #000000;">24</span> <span style="color: #000000;">&#41;</span><br /><br />System<br />======<br />&nbsp; &nbsp;CPU type: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">Intel</span><span style="color: #000000;">&#40;</span>R<span style="color: #000000;">&#41;</span> Pentium<span style="color: #000000;">&#40;</span>R<span style="color: #000000;">&#41;</span> <span style="color: #000000;">4</span> CPU <span style="color: #000000;">3</span>.00GHz <span style="color: #000000;">3000</span> Mhz<br />&nbsp; &nbsp;Hardware memory: <span style="color: #000000;">504</span> megs<br /><br />&nbsp; &nbsp;Free System resources: <span style="color: #000000;">90</span> %<br />&nbsp; &nbsp; &nbsp; &nbsp; GDI &nbsp; &nbsp;resources: <span style="color: #000000;">90</span> %<br />&nbsp; &nbsp; &nbsp; &nbsp; User &nbsp; resources: <span style="color: #000000;">90</span> %</div>[/code:2dtg7kpb]
fivegenh.mak where is it
Eddie, Don't copy fivegen.exe to FWH\samples\fivegen folder Please run it from an empty folder, thanks
fivegenh.mak where is it
It can run now.....
fiveh.lib and xcc
I've got fiveh.lib compiled with bordland compiler and when used with xharbour professional (xcc) it gives an error xLINK: fatal error: Corrupt library: 'D:\fwh\lib\Fiveh.lib'. So is there fiveh.lib compatible with xharbour?
fiveh.lib and xcc
You have to use FiveHMX.lib and FiveHCM.lib for xHarbour and xcc.
fiveh.lib and xcc
Hi Antonio, I used those libs as you suggested but I still have problems. I tried compiling you testsql1.prg. Here is xbp file: CINI = C_OUTPUTFOLDER = DEFFILE = INCLUDEFOLDERS = LAUTORUN = LDEBUG = .F. LGUI = .T. LIBFOLDERS = LMT = .F. LPRG_CLASSICDEBUG = .F. LPRG_DEBUG = .F. LUSEDLL = .F. MAPFILE = MYC_FLAGS = MYDEFINES = MYLINK_FLAGS = MYPRG_FLAGS = MYRC_FLAGS = MYSLY_FLAGS = OUTPUTFOLDER = PRG_OUTPUTFOLDER = RC_OUTPUTFOLDER = RUNARGUMENTS = SLY_OUTPUTFOLDER = STARTIN = TARGETFOLDER = [TESTSQL1.PRG] MYC_FLAGS = MYDEFINES = MYPRG_FLAGS = [TEST.RC] MYDEFINES = MYRC_FLAGS = [fivehmx.lib] [fivehcm.lib] End log of the error it produces: Type: C >>>xlink.exe -NOEXPOBJ -MAP -FORCE:MULTIPLE -NOIMPLIB -subsystem:windows -UNMANGLE -LIBPATH:"d:\xhb\lib" -LIBPATH:"d:\xhb\c_lib" -LIBPATH:"d:\xhb\c_lib\win" -LIBPATH:"D:\fw\lib" "TESTSQL1.obj" "TEST.res" fivehmx.lib fivehcm.lib OptG.lib sql.lib ace32.lib xhb.lib dbf.lib ntx.lib cdx.lib rmdbfcdx.lib activex.lib crt.lib kernel32.lib user32.lib winspool.lib ole32.lib oleaut32.lib odbc32.lib odbccp32.lib uuid.lib wsock32.lib ws2_32.lib wininet.lib advapi32.lib shlwapi.lib comctl32.lib comdlg32.lib gdi32.lib shell32.lib winmm.lib lz32.lib Netapi32.lib -out:"testsql1.exe"<<< xLINK: error: Unresolved external symbol '_HB_FUN_INIODBC32'. xLINK: error: Unresolved external symbol '_HB_FUN_ENDODBC32'. xLINK: error: Unresolved external symbol '_HB_FUN__TRDD'. xLINK: error: Unresolved external symbol '_HB_FUN_RDDSETFIELDEXTENT'. xLINK: error: Unresolved external symbol '_HB_FUN_RDDADDFIELD'. xLINK: fatal error: 5 unresolved external(s). Type: C >>>Couldn't build: testsql1.exe<<<
fiveh.lib and xcc
Class TRdd is available for FiveWin 16 bits only. Please try other samples.
fivehcm.lib and compatible with xhb.com April-2009?
FWH 9:09 and xHb.com 1.2.1 April-2009 error when compiling c:\fwh\samples\ testget.prg fivehcm.lib and compatible with xhb.com April-2009? Type: C >>>xhb.exe -o"obj_c\testget.c" -m -n -pOobj_c\ -q -gc0 -I"C:\fwh\include" -I"C:\xHB\include" -I"C:\xHB\include\w32" "testget.prg"<<< xHarbour Compiler build 1.2.1 (SimpLex) (Rev. 6406) Copyright 1999-2009, <!-- m --><a class="postlink" href="http://www.xharbour.org">http://www.xharbour.org</a><!-- m --> <!-- m --><a class="postlink" href="http://www.harbour-project.org/">http://www.harbour-project.org/</a><!-- m --> Generating object output to 'obj_c\testget.obj'... Type: C >>>xlink.exe -NOEXPOBJ -MAP -FORCE:MULTIPLE -NOIMPLIB -subsystem:windows -UNMANGLE -LIBPATH:"C:\fwh\lib" -LIBPATH:"C:\xHB\lib" -LIBPATH:"C:\xHB\c_lib" -LIBPATH:"C:\xHB\c_lib\win" "obj_c\testget.obj" "FiveHCM.lib" "FiveHMX.lib" "OptG.lib" "xhb.lib" "dbf.lib" "nsx.lib" "ntx.lib" "cdx.lib" "rmdbfcdx.lib" "ct3comm.lib" crt.lib kernel32.lib user32.lib winspool.lib ole32.lib oleaut32.lib odbc32.lib odbccp32.lib uuid.lib wsock32.lib ws2_32.lib wininet.lib advapi32.lib shlwapi.lib msimg32.lib mpr.lib comctl32.lib comdlg32.lib gdi32.lib shell32.lib winmm.lib lz32.lib Netapi32.lib -out:"testget.exe"<<< Creating object: testget.EXP Creating library: testget.LIB xLINK: error: Unresolved external symbol '??2@YAPAXI@Z referenced from Fivehcm.lib(ACTX.obj)'. xLINK: error: Unresolved external symbol '??3@YAXPAX@Z referenced from Fivehcm.lib(ACTX.obj)'. xLINK: error: Unresolved external symbol '_OleUIPasteSpecialA referenced from Fivehcm.lib(RICHEDIT.obj)'. xLINK: error: Unresolved external symbol '_GetFileVersionInfoSizeA referenced from Fivehcm.lib(RICHEDIT.obj)'. xLINK: error: Unresolved external symbol '_GetFileVersionInfoA referenced from Fivehcm.lib(RICHEDIT.obj)'. xLINK: error: Unresolved external symbol '_VerQueryValueA referenced from Fivehcm.lib(RICHEDIT.obj)'. xLINK: fatal error: 6 unresolved external(s). Type: C >>>Couldn't build: testget.exe<<< Type: C >>>TMAKEPROJECT<<< Type: C >>>TMAKEPROJECT:REFRESH<<< Type: N >>> 1411<<<
fivehcm.lib and compatible with xhb.com April-2009?
Elcio, Please review and follow the instructions in these topics: <!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=3&t=15225&start=0">viewtopic.php?f=3&t=15225&start=0</a><!-- l --> <!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?p=83275#p83275">viewtopic.php?p=83275#p83275</a><!-- l -->
fivehcm.lib and compatible with xhb.com April-2009?
xhb.obj is available from here: <!-- w --><a class="postlink" href="http://www.fivetechsoft.com/files/xhb.obj">www.fivetechsoft.com/files/xhb.obj</a><!-- w -->