New FTDN Oct. 2018 (FWH 18.10)

New FTDN Oct. 2018 (FWH 18.10)

Postby Antonio Linares » Sun Nov 11, 2018 11:24 am

* TDATABASE:

- Data was being trimmed while saving to memo fields. Now data is saved along
with trailing spaces if any without trimming.
viewtopic.php?f=6&t=36178

* Enhanced Active command of Dialog:

ACTIVATE DIALOG oDlg AS MDICHILD.
In an MDI environment, converts the dialog as mdichild and activates.
On activation, the variable oDlg now refers to the new mdichild window
and all actions and codeblocks using oDlg variable now act on the
mdichild window.
fwh\samples\mdidlg.prg
viewtopic.php?f=3&t=36244

* FWMARIADB Connection

- New DATA lSilent INIT .f.
When set to .T. all messages to screen are suppressed. Useful for
scheduled tasks, etc.

- Resolved issues with older versions of MySql( eg. 5.1 and earlier)
which do not support system variable "lc_messages".

* New function FW_DbfRenameField( cDbf, cField, cNewName ) --> lSuccess
Renames a field of DBF. Works when the DBF file is available for
exclusive open. Caller should ensure that the cNewName is a valid
fieldname. Changing field name may invalidate some indexes and need
recreation.
viewtopic.php?f=6&t=36303

* Fix: TBitmap and TImage: Vertical and horizontal scrollbars are moving
the image horizontally and vertically. Fixed.

* TGet: Pasting is not working properly when picture clause @R is used.
Fixed.

* New: Gets with loop variable as array subscript:
It is not possible to create a Get using loop variable like this:
for i := 1 to len( aData )
for j := 1 to len( aData[ i ] )
@ r,c GET aData[ i, j ] .....
next
next
Now it is possible to create such gets using the new SUBSCRIPT clause;
eg: @ r,c GET aData SUBSCRIPT i,j ....
Please see
viewtopic.php?f=3&t=36139
for more details

* Enhancement: XBrowse and TDatarow:
When a field of DBF is changed and saved, the changes automatically made
by RDD to other fields of type "=" and "^" are now automatically refreshed.

* New: XImage cropping image:
New datas:
lCrop INIT .f. // When set to .t. enables user to crop image
hCrop // holds bitmap of cropped image
bOnCrop // Optional action to be taken when crop is finished. Evaluated
with oImage as parameter.

Default behavior without additional programming:
User may right click on the image and select "Crop" in the context menu.
Then user can draw a crop rectangle by dragging mouse with left button
pressed. When the left button is released, the crop is complete and the
cropped image is displayed in a new dialog. The user can then either
discard, save or copy the cropped image to clipboard with right-click.
Programatically, crop action can be triggered by setting lCrop to .T.
Programmer can override the default behavior by specifying bOnCrop code
block

For more information please see:
viewtopic.php?f=3&t=36222

* Control.prg: New method ChangeParent( oWnd/hWnd )

* Fixes: AEvalwhen issues with mdichild windows and dialogs in mdichild
windows pointed out are fixed.
viewtopic.php?f=3&t=36211&p=215877&hilit=but+oget3#p215877
viewtopic.php?f=6&t=36117

* Buttonbar Group Separators painting enhancements:

- Group label of last group is not being painted correctly and the group
is not closed with a right separator. Now the group is closed with a
right separtor if it has group label and the label is painted correctly.
- It is now possible to have groups and labels in the right aligned buttons
also.
viewtopic.php?f=3&t=36298

* TGet CueBanner enhancement:
CueBanner of Gets created on a dialog appear immediately when the dialog
is activated but not for Gets created on a Window. They are only displayed
when refreshed or got and lost focus.
Now, Cuebanner is visible immediately when window is activated also.

* TGET: New Clause INFIELD
Description of all new clauses and datas

viewtopic.php?f=3&t=36283&start=0#p216566

New Samples: infield1.prg, infield2.prg, subscript0.prg

* TMSGITEM: now allow use all type images
viewtopic.php?f=3&t=36215&start=0

* TRICHEDIT5: Bug fixed in class Triched5, METHOD SaveAsHtml( cFile )

* TTOAST: New Function by set time hide or show message
Other small modifications by aesthetic themes

* TWINDOW: New Method RButtonMenuUp, not finished yet

* PDMENU.PRG: Minor modification, fix adjust width menuitem for BOLD clause

* TBLOCKCHAIN CLASS: included in LIBS
Sample of use: BLOCKCHAIN.PRG
viewtopic.php?f=17&t=34973&start=15#p211321

* fix: Minor fix in source\function\strings.prg thanks to Euclides!

viewtopic.php?f=18&t=36305&start=0

* strings.prg enhancements.

- FWAddSting( <aString> ) enhanced to add a new translate or modify an
existing translation. <aString> can also be an array of <aString>s.

- New function FWSetString( nLang, {{ cEnglish, cTranslate},...} )
Modifies the translate for nLang, if the English word exists and
otherwise adds the new translate.

- FWMissingStrings() saves missing strings as a function FWAddString()
which can be edited and included in the application program.

- For detailed explanation, please see:
viewtopic.php?f=3&t=36331

* XBROWSE:

- New method SetSortBmp( aBmps )
Allows replacement of the deault sort bitmaps with programmer
specified bitmaps. The parameter aBmps should be 2 or 3 images.

If a 3rd image is specified it is displayed on headers of
unsorted columns that can be sorted.

If the size of the image is greater than 24x24 pixels, the image
is resized to 24x24 pixels.

The method can be called while creating the browse or at runtime.
If called at runtime, the headers are automatically refreshed.
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
 
Posts: 41314
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: New FTDN Oct. 2018 (FWH 18.10)

Postby Antonio Linares » Tue Nov 13, 2018 8:35 am

Octubre 2018
============
* TDATABASE:
- Los datos estaban siendo recortados mientras se graban en campos memo.
Ahora son grabados con espacios si estos existen, sin recortar.
viewtopic.php?f=6&t=36178
* Mejora en el comando ACTIVE de los Diálogos:
ACTIVATE DIALOG oDlg AS MDICHILD.
En un entorno MDI, convierte el diálogo como mdichild y se activa.
En la activación, la variable oDlg ahora se refiere a la nueva
ventana de mdichild y todas las acciones y bloques de código que usan
la variable oDlg ahora actúan en la ventana de mdichild.
fwh\samples\mdidlg.prg
viewtopic.php?f=3&t=36244

* FWMARIADB Connection
- Nuevo DATA lSilent INIT .F.
Cuando es puesto a .T. todos los mensajes a pantalla son eliminados.
Util para tareas programadas, etc ...
- Resueltos problemas con versiones anteriores de MySql (por ejemplo,
5.1 y anteriores) que no admiten la variable de sistema "lc_messages".
* Nueva función FW_DbfRenameField( cDbf, cField, cNewName ) --> lSuccess
Renombra un campo en un fichero DBF. Funciona cuando el fichero DBF está
disponible para su apertura en modo "exclusivo". Nos debemos de asegurar
que el nuevo nombre "cNewName" es un nombre de campo válido. El cambio
de nombre puede invalidar algún índice y necesitar su recreación.
viewtopic.php?f=6&t=36303
* Corrección: TBitmap y TImage
Las barras de desplazamiento vertical y horizontal mueven la imagen
horizontal y verticalmente. Corregido.

* TGet:
La opción de pegado no funciona correctamente cuando se usa la clausula @R.
Corregido.
* Nuevo: Gets con variable de bucle como subíndice de una matriz:
No es posible crear un Get usando una variable de bucle como esto:
for i := 1 to len( aData )
for j := 1 to len( aData[ i ] )
@ r,c GET aData[ i, j ] .....
next
next
Ahora es posible crear este tipos de Gets usando la clausula nueva SUBSCRIPT;
Por ejemplo:
@ r,c GET aData SUBSCRIPT i,j ....
Por favor, para más dellate revisa viewtopic.php?f=3&t=36139
* Mejora: XBrowsw y TDataRow:
Cuando se cambia y se guarda un campo de un fichero DBF, los cambios automáticos
hechos por el RDD a otros campos de tipo "=" y "^" son ahora automáticamente refrescados.
* Nuevo: Recorte de imagen en XImage:
Nuevos DATAs:
lCrop INIT .F. // Cuando se pone a .T., permite al usuario recortar la imagen.
hCrop // Mantiene el bitmap "mapa de bits" de la imagen recortada.
bOnCrop // Acción opcional a realizar cuando se termina el recorte.Evaluado con
oImage como parámetro.

Comportamiento por defecto sin programación adicional:
El usuario puede hacer clic derecho en la imagen y seleccionar "Recortar" en el menú contextual.
Entonces, el usuario puede dibujar un rectángulo de recorte arrastrando el mouse con el botón
izquierdo presionado. Cuando se suelta el botón izquierdo, el recorte se completa y la imagen
recortada se muestra en un nuevo diálogo. El usuario puede descartar, guardar o
copiar la imagen recortada al portapapeles con un clic derecho.
Programáticamente, la acción de recorte se puede activar al establecer lCrop en .T.
El programador puede sobrescribir el comportamiento predeterminado especificando el bloque de
código bOnCrop.

Para más información, por favor, revise:
viewtopic.php?f=3&t=36222
* Control.prg: Nuevo método ChangeParent( oWnd/hWnd )
* Correcciones:
Se han resuelto los problemas de AEvalwhen con las ventanas y los diálogos mdichild en las
ventanas mdichild señaladas.
viewtopic.php?f=3&t=36211&p=215877&hilit=but+oget3#p215877
viewtopic.php?f=6&t=36117
* Mejora en el pintado de los separadores de los grupos de la barra de botones:
- La etiqueta de grupo del último grupo no se pinta correctamente y el grupo
no se cierra con un separador derecho. Ahora el grupo se cierra con un
separador derecho si tiene una etiqueta de grupo y la etiqueta está pintada
correctamente.
- Ahora es posible tener grupos y etiquetas en los botones alineados a la derecha
también.
viewtopic.php?f=3&t=36298
* Mejora en TGet CueBanner:
El CueBanner de Gets creado en un diálogo aparece inmediatamente cuando el diálogo
está activado pero no para Gets creados en una ventana. Solo se muestran cuando se
actualizan o toman y pierden el foco. Ahora, el Cuebanner es visible inmediatamente
cuando la ventana también está activada.
* TGET: Nueva clausula INFIELD
Descripción de todas las nuevas cláusulas y datas
viewtopic.php?f=3&t=36283&start=0#p216566

Nuevos ejemplos: infield1.prg, infield2.prg, subscript0.prg
* TMSGITEM: Ahora permite usar todo tipo de imágenes
viewtopic.php?f=3&t=36215&start=0
* TRICHEDIT5: Error corregido en la clase Triched5, METHOD SaveAsHtml( cFile )
* TTOAST: Nueva función para poner el tiempo de mostrar y ocultar el mensaje.
Otras pequeñas modificaciones por temas estéticos.
* TWINDOW: Nuevo método RButtonMenuUp, aún sin finalizar.
* PDMENU.PRG: Pequeña modificación, corregido el ancho de "menuitem" para la
cláusula BOLD
* TBLOCKCHAIN CLASS:
Incluida en las librerías. Ejemplo de uso: BLOCKCHAIN.PRG
viewtopic.php?f=17&t=34973&start=15#p211321
* Corrección: Pequeña corrección en source\function\strings.prg. Gracias a Euclides!
viewtopic.php?f=18&t=36305&start=0
* Mejoras en strings.prg
- FWAddSting( <aString> ). Mejora para añadir una nueva traducción o modificar
una existente. <aString> también puede ser una matriz de <aString>.
- Nueva función FWSetString( nLang, {{ cEnglish, cTranslate},...} )
Modifica la traducción para nLang, si existe la palabra inglesa, en
caso contrario añade la nueva traducción.
- FWMissingStrings() guarda las cadenas faltantes como una función FWAddString()
que puede editarse e incluirse en la aplicación.
- Para una detallada explicación, por favor revise:
viewtopic.php?f=3&t=36331

* XBROWSE:
- Nuevo método SetSortBmp( aBmps )
Permite la sustitución de los "bitmaps" mapas de bits de ordenación por defecto con
"bitmaps" mapas de bits especificados por el programador. El parámetro aBmps debe
ser 2 o 3 imágenes.
Si se especifica una tercera imagen, se muestra en los encabezados de las columnas sin
clasificar que se pueden ordenar.
Si el tamaño de la imagen es mayor que 24x24 píxeles, la imagen se redimensiona a 24x24 píxeles.

Se puede llamar al método mientras se crea el browser o en tiempo de ejecución.
Si se llama en tiempo de ejecución, los encabezados se actualizan automáticamente.
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
 
Posts: 41314
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: New FTDN Oct. 2018 (FWH 18.10)

Postby Blessed » Tue Nov 27, 2018 11:57 am

Saludos Antonio:

Maestro, con XHarbour, al compilar con xBuildW me muestra los siguientes errores:

xLINK: error: Unresolved external symbol '_HB_FUN_HB_GETFILESINZIP referenced from FiveHMX.lib(OLEFUNCS.obj)'.
xLINK: error: Unresolved external symbol '_HB_FUN_HB_UNZIPFILE referenced from FiveHMX.lib(OLEFUNCS.obj)'.
xLINK: error: Unresolved external symbol '_GdiplusStartup referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdiplusShutdown referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipAlloc referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipCreateFromHDC referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipCreateFromHWNDICM referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipCreateFromHWND referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipGetImageGraphicsContext referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipFree referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipDeleteGraphics referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipSetSmoothingMode referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipGraphicsClear referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipCreatePen1 referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipSetPenWidth referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipSetPenColor referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipSetPenLineCap197819 referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipSetPenMode referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipDeletePen referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipSetPenLineJoin referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipCreateSolidFill referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipCloneBrush referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipDeleteBrush referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipCreatePathGradientFromPath referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipDrawLine referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipDrawRectangle referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipFillRectangle referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipDrawEllipse referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipFillEllipse referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipDrawString referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipCreateFontFamilyFromName referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipCreateFont referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipDeleteFont referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipDeleteFontFamily referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipCreateFontFromLogfontA referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipCreateFontFromDC referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipScaleWorldTransform referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipCreateRegionPath referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipCreatePath referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipStartPathFigure referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipDeletePath referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipAddPathLineI referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipAddPathRectangleI referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipAddPathArcI referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipAddPathEllipseI referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipClosePathFigure referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipDrawPath referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipFillPath referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipSetPathGradientCenterColor referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipSetPathGradientSurroundColorsWithCount referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipGetPathGradientPointCount referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipCreateMatrix referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipSetMatrixElements referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipTranslateMatrix referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipRotateMatrix referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipTransformPath referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipScaleMatrix referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipClonePath referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipIsVisibleRegionPointI referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipSetTextRenderingHint referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipDrawImageRectI referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipGetImageWidth referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipGetImageHeight referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipCreateBitmapFromScan0 referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipDisposeImage referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipCloneImage referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipCreateLineBrushFromRectI referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipSetLineBlend referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipSetLineWrapMode referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipAddPathEllipse referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipStringFormatGetGenericTypographic referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipMeasureString referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipAddPathStringI referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipDrawArc referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipIsClipEmpty referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipSetPageUnit referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipCreateBitmapFromFileICM referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipCreateBitmapFromFile referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipCreateBitmapFromHBITMAP referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipCreateBitmapFromResource referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipCloneBitmapAreaI referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipDrawImageI referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipSaveImageToFile referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipGetImageThumbnail referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipCreateHBITMAPFromBitmap referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipImageRotateFlip referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipBitmapSetPixel referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipGetImagePixelFormat referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipBitmapGetPixel referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipCreateHICONFromBitmap referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipCreateBitmapFromStreamICM referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipCreateBitmapFromStream referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipFillRectangleI referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipBitmapLockBits referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipBitmapUnlockBits referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipCreateImageAttributes referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipDisposeImageAttributes referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipSetImageAttributesColorMatrix referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipDrawImageRectRectI referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipSetImageAttributesRemapTable referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipSetInterpolationMode referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipTranslateWorldTransform referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipRotateWorldTransform referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipResetWorldTransform referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipCreateMetafileFromStream referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipBitmapSetResolution referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipSetTextureWrapMode referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipStringFormatGetGenericDefault referenced from FiveHCM.lib(GDIPLUS.obj)'.
xLINK: error: Unresolved external symbol '_GdipDrawLinesI referenced from FiveHCM.lib(GDIPFWH.obj)'.
xLINK: error: Unresolved external symbol '_GdipDrawArcI referenced from FiveHCM.lib(GDIPFWH.obj)'.
xLINK: error: Unresolved external symbol '_GdipDrawBeziersI referenced from FiveHCM.lib(GDIPFWH.obj)'.
xLINK: error: Unresolved external symbol '_GdipDrawRectangleI referenced from FiveHCM.lib(GDIPFWH.obj)'.
xLINK: error: Unresolved external symbol '_GdipDrawEllipseI referenced from FiveHCM.lib(GDIPFWH.obj)'.
xLINK: error: Unresolved external symbol '_GdipDrawPieI referenced from FiveHCM.lib(GDIPFWH.obj)'.
xLINK: error: Unresolved external symbol '_GdipDrawPolygonI referenced from FiveHCM.lib(GDIPFWH.obj)'.
xLINK: error: Unresolved external symbol '_GdipDrawCurve2I referenced from FiveHCM.lib(GDIPFWH.obj)'.
xLINK: error: Unresolved external symbol '_GdipDrawClosedCurve2I referenced from FiveHCM.lib(GDIPFWH.obj)'.
xLINK: error: Unresolved external symbol '_GdipFillPolygonI referenced from FiveHCM.lib(GDIPFWH.obj)'.
xLINK: error: Unresolved external symbol '_GdipFillEllipseI referenced from FiveHCM.lib(GDIPFWH.obj)'.
xLINK: error: Unresolved external symbol '_GdipFillPieI referenced from FiveHCM.lib(GDIPFWH.obj)'.
xLINK: error: Unresolved external symbol '_GdipFillClosedCurve2I referenced from FiveHCM.lib(GDIPFWH.obj)'.
xLINK: error: Unresolved external symbol '_GdipCreateStringFormat referenced from FiveHCM.lib(GDIPFWH.obj)'.
xLINK: error: Unresolved external symbol '_GdipDeleteStringFormat referenced from FiveHCM.lib(GDIPFWH.obj)'.
xLINK: error: Unresolved external symbol '_GdipSetStringFormatAlign referenced from FiveHCM.lib(GDIPFWH.obj)'.
xLINK: error: Unresolved external symbol '_GdipSetStringFormatLineAlign referenced from FiveHCM.lib(GDIPFWH.obj)'.
xLINK: error: Unresolved external symbol '_GdipSetClipRegion referenced from FiveHCM.lib(GDIPFWH.obj)'.
xLINK: error: Unresolved external symbol '_GdipResetClip referenced from FiveHCM.lib(GDIPFWH.obj)'.
xLINK: error: Unresolved external symbol '_GdipCreateRegionRectI referenced from FiveHCM.lib(GDIPFWH.obj)'.
xLINK: error: Unresolved external symbol '_GdipSetImageAttributesColorKeys referenced from FiveHCM.lib(GDIPFWH.obj)'.
xLINK: error: Unresolved external symbol '_GdipDeleteMatrix referenced from FiveHCM.lib(GDIPFWH.obj)'.
xLINK: error: Unresolved external symbol '_GdipSetWorldTransform referenced from FiveHCM.lib(GDIPFWH.obj)'.
xLINK: error: Unresolved external symbol '_GdipDrawImageRectRect referenced from FiveHCM.lib(GDIPFWH.obj)'.
xLINK: error: Unresolved external symbol '_GdipDeleteRegion referenced from FiveHCM.lib(GDIPFWH.obj)'.
xLINK: error: Unresolved external symbol '_GdipCreateTexture referenced from FiveHCM.lib(GDIPFWH.obj)'.
xLINK: error: Unresolved external symbol '_GdipCreateLineBrushI referenced from FiveHCM.lib(GDIPFWH.obj)'.
xLINK: error: Unresolved external symbol '_GdipSetLinePresetBlend referenced from FiveHCM.lib(GDIPFWH.obj)'.
xLINK: error: Unresolved external symbol '_GdipGetImageEncodersSize referenced from FiveHCM.lib(GDIPFWH.obj)'.
xLINK: error: Unresolved external symbol '_GdipGetImageEncoders referenced from FiveHCM.lib(GDIPFWH.obj)'.

Gracias de antemano.
Oscar A. Martinez
http://www.multisofthn.com
Honduras, Centro America
xHarbour Enterprise 1.2.2, Fivewin 13.06
User avatar
Blessed
 
Posts: 243
Joined: Wed Sep 19, 2007 4:32 pm
Location: Honduras, C.A.

Re: New FTDN Oct. 2018 (FWH 18.10)

Postby Enrico Maria Giordano » Tue Nov 27, 2018 1:46 pm

You are using xHarbour.com distribution, right? Then you have to ask to xHarbour.com for support. Or (recommended) you can use latest xHarbour.org distribution.

EMG
User avatar
Enrico Maria Giordano
 
Posts: 8315
Joined: Thu Oct 06, 2005 8:17 pm
Location: Roma - Italia

Re: New FTDN Oct. 2018 (FWH 18.10)

Postby Blessed » Tue Nov 27, 2018 4:04 pm

My partner, it's a dead end
Oscar A. Martinez
http://www.multisofthn.com
Honduras, Centro America
xHarbour Enterprise 1.2.2, Fivewin 13.06
User avatar
Blessed
 
Posts: 243
Joined: Wed Sep 19, 2007 4:32 pm
Location: Honduras, C.A.

Re: New FTDN Oct. 2018 (FWH 18.10)

Postby Antonio Linares » Tue Nov 27, 2018 6:12 pm

Oscar,

Tienes que enlazar c:\xhb\c_lib\win\gdiplus.lib

y también:

c:\xhb\lib\xhbzip.lib
c:\xhb\lib\xhbzipdll.lib
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
 
Posts: 41314
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain


Return to WhatsNew / Novedades

Who is online

Users browsing this forum: No registered users and 22 guests