topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
Antonio...Codigo que no funciona | Armando,La razón es que hasta la versión 2.4 de FWH existía un bug que no liberaba correctamente las DLLs usadas, asi al hacer LoadLibray() la DLL se quedaba cargada en memoria, aunque se llamase a FreeLibrary().Al corregirlo en siguientes versiones de FWH, entonces se hacía preciso volver a cargar la DLL, ya que dejab... |
Antonio...Codigo que no funciona | [quote="Antonio Linares":q8m462i7]Armando,
La razón es que hasta la versión 2.4 de FWH existía un bug que no liberaba correctamente las DLLs usadas, asi al hacer LoadLibray() la DLL se quedaba cargada en memoria, aunque se llamase a FreeLibrary().
Al corregirlo en siguientes versiones de FWH, entonces se hacía precis... |
Antonio...Codigo que no funciona | Armando,En el fichero whatsnew.txt de FWH, del cual publicamos aqui copia en cada build, se especificó claramente el error y la solución: August 2004 build =============... * IMPORTANT: Since version 2.5, FreeLibrary() 32 bits is properly working, so if you are using Borland controls, you will have to do a previous loc... |
Antonio...butonbmp de Rosine? | Maestro:
Sería posible me envio los archivos a mi tambien
Se los pedí en el otro post, pero como hubieron
muchos pedidos seguro se le paso el mio.
Muchas gracias y disculpe.
Saludos
Ruben Fernandez. |
Antonio...butonbmp de Rosine? | Rubén,
Vamos a publicarlos en el nuevo build de Abril dentro de pocos días. |
Antonio...butonbmp de Rosine? | Gracias Maestro
Saludos
Ruben Fernandez |
Antonio: Please explain | * New: FUll support to easily build your PRGs from Microsoft free vscode. Just open
a PRG from FWH\samples and build it using Ctrl + Shift + B"
I tried this ... but clearly I need to understand the setup.
I downloaded the code program ... but how does it need to be configured ? What are the steps ? I thought there ... |
Antonio: Please explain | Dear Tim,
Please review this thread:
<!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?p=231362#p231362">viewtopic.php?p=231362#p231362</a><!-- l --> |
Antonio: Please explain | OK ... I looked at that thread. I reinstalled FWH 20.04. I was able to get the settings to now use Harbour to generate the .c code.
I was working with fivedit.prg in sources. I get the .c code compiled ... but now what do I need to do to get it to link the program and run it ?
Thanks. |
Antonio: Please explain | Tim,
1. Open Microsoft vscode and select the folder c:\FWH\samples folder
2. Open a PRG from samples from vscode
3. Press Ctrl + Shift + B |
Antonio: Please explain | Antonio,
That is exactly what I am doing.
VSCode builds the .c but stops there and does not build the actual executable or run it.
What am I missing ? It must be a setup issue ... so what do I need to change and where ?
Tim |
Antonio: Please explain | I really would like to use this feature from 20.04, but I need to understand why it does not complete the build. It creates the .c file and stops.
Certainly it does more than this. |
Antonio: Please explain | Dear Tim,
Do you get an error msg ? Are you placed at c:\fwh\samples ?
Have you installed FWH 20.04 ?
You can edit the tasks.json file yourself and check it is looks like the one I pointed you to |
Antonio: Please explain | Antonio,
Yes, I am running by default in the samples directory.
I am using the simpler version you pointed to, which is using buildh32.bat ( since I'm using Microsoft )
The json is in the .vscode subfolder in the samples directory.
When I press t he keys, it tells me it cannot find buildh32.bat. It is there, in th... |
Antonio: Please explain | Tim,
Please open vscode and select "c:\fwh\samples" as the folder to work on from vscode
Being there, open a new terminal from vscode and select "cmd" instead of "powershell".
Then press Ctrl + Shift + B and it should work fine. I just tested it here with success. |
Antonio: Please explain | Thank you. Using the New Terminal with CMD was the missing step. It now works.
The other thing people need to know is to use the proper build script. In my case, Buildh32.bat is used to build with Harbour/Microsoft VC++ |
Antonio: ""BUG"" in TPrinter | Antonio, i am using a printerobject with the direct pdf-output. Now i see, that the emf-files in the temp-directory are still present and should be deleted! If i will manually or programatically delete this files, i become a "Access Violation".
...and the temp-directory grows and grows...
A second question: After END... |
Antonio: ""BUG"" in TPrinter | Gunther,
1. the emf-files in the temp-directory are still present
Where is located your temp-directory ? What files are there ? Please show a test and the names of the files that you get. If you cant delete them it means that they are open (in use)
2. END... does not mean that the object is turned into nil. When you... |
Antonio: ""BUG"" in TPrinter | 1. Antonio, when using normal Tprinter-object the EMFs are deleted! Only when i use the direct pdf-creation with clausula ..FILE "xyz.pdf" the files in Format z.b. "234571.emf" are not erased! The temp-directory are in normal windows location.
2. END.. Ok, i understand!! |
Antonio: ""BUG"" in TPrinter | Gunter,
Are you calling ENDPRINT after sending the print to the PDF file ?
Class TPrinter Method End() is responsible for deleting the metafiles. |
Antonio: ""BUG"" in TPrinter | [code=fw:3npp9h8k]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">function</span> PrintEnd<span style="color: #000000;">(</span><span style="color: #000000;">)</span><br /> <span style="color: #00C800;">if</span> oPrinter:<span style="color: #000000;">lMeta</s... |
Antonio: ""BUG"" in TPrinter | Antonio, I found a solution:
1. In Emf2Jpeg() instead of CloseEnhMetafile() using DeleteEnhMetafile()! In this function should also inserted a sysrefresh(). Then i can produce hundreds of pages without Problems!
2. In FWSavePreviwToPDF() before returning oDevice:end() BUT only, when[b:1qbgq6kq] not [/b:1qbgq6kq]called... |
Antonio: ""BUG"" in TPrinter | Gunther,
I guess you can also do:
ENDPRINT
oPrinter:End()
anyhow, please post here your exact code changes so we can review them and include them, many thanks |
Antonio: ""BUG"" in TPrinter | This is my code, I use. In poor Computers with only 1Gb memory it can bee, the program terminates without any message! Possibly from the FI functions with Memory?
[code=fw:pwgemtmj]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #B900B9;">//-----------------------------------------------... |
Antonio: ""BUG"" in TPrinter | Have you checked for memory leaks? |
Antonio: ""BUG"" in TPrinter | Yes James, no leaks. Maybe the memory-functions from "freeimage" are responsible for this fault!?
We should change to file-functions, but i am not so versed with freeimage. |
Antonio: ""BUG"" in TPrinter | Günther,
Perhaps you need to use a general purpose memory leak detector program instead of the Fivewin functions. This might find memory leaks in freeimage.
James |
Antonio: ""BUG"" in TPrinter | Maybe this old message will help.
James
[quote:3gocq68p]From: Patrick Mast <patrick@winfakt.com>
Subject: Re: FW Win 2000
Date: Friday, January 05, 2001 2:08 AM
Uwe,
> Big Prob my Fw App crashes with a Gpf under Win 2000
> Any Tip for me ??
My app works great in Win2000.
Have you tried this:
[code=fw:3gocq68p]<d... |
Antonio: ""BUG"" in TPrinter | Mr Gunther and Mr Antonio
I suggest modification of printend() function and no other changes anywhere else.
Proposed New function
[code=fw:x4w5cox9]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">function</span> PrintEnd<span style="color: #000000;">(</span><span style="col... |
Antonio: ""BUG"" in TPrinter | OK, but usíng CloseEnhMetaFile() frees not the emf-files to let them erasing!
We must use DeleteEnhMetafile( hEMF ) in the function Emf2Jpeg(...)!
Another negative issue from this function is the dependency from the resolution of the Printer-Driver. It should in all cases
the same!
I suggest further the option to use... |
Antonio: ""BUG"" in TPrinter | Implemented. |
Antonio: ALT accelerator with button - Urgent help needed | FUNCTION TESTALT// Indicates differences between results when clicking a button// compared to instead using ALT accelerator for the button.// Example 1. BUTTON'S ACTION DOESN'T FURTHER CHANGE THE FOCUS:// If ALT accelerator is pressed for a button when the current focus// is on a GET which has a valid, focus retu... |
Antonio: ALT accelerator with button - Urgent help needed | Colin,We are already reviewing your example to provide you an answer as soon as possible |
Antonio: ALT accelerator with button - Urgent help needed | Colin,If you modify your code this way, then there is no difference between using the mouse to click on the button or using the accelerator. Please review the generated .TXT files contents:[code:39aq2oxd]
@ 1, 1 GET oGet1 VAR cVar1 SIZE 30,12 PIXEL ;
VALID ( LogFile( "valid.txt", { "valid" } &... |
Antonio: ALT accelerator with button - Urgent help needed | This code seems to be fine also. Please check the contents of the generated TXT files. Even using MsgInfo():[code:2182hnwo]
@ 1, 1 GET oGet1 VAR cVar1 SIZE 30,12 PIXEL ;
Valid ( LogFile( "valid.txt", { "valid" } ), .T. )
...
@ 40,50 BUTTON oBtn PROMPT '&Test' ;
SIZ... |
Antonio: ALT accelerator with button - Urgent help needed | Same behaviors with xHarbour and FWH 8.07 |
Antonio: ALT accelerator with button - Urgent help needed | Thanks for prompt reply, Antonio, but it doesn't address either of the 2 problems. Please try the following with my original example #1: Step 1: Place cursor in oGet1. Step 2: Action the button by using ALT A. Notice that focus is still on oGet1. When done, click on another get. The VALID (which you can hear from the M... |
Antonio: ALT accelerator with button - Urgent help needed | Oops!. I referred to "ALT A". I meant "ALT T" of course. |
Antonio: ALT accelerator with button - Urgent help needed | Colin,When you press a button accelerator, the focus is not changed to the button. Just its action is fired. A workaround for this:[code:g4rzwigd]
@ 1, 1 GET oGet1 VAR cVar1 SIZE 30,12 PIXEL ;
Valid ( MsgBeep(), .T. )
...
@ 40,50 BUTTON oBtn PROMPT '&Test' ;
SIZE 30, 20 PIXEL ; ... |
Antonio: ALT accelerator with button - Urgent help needed | >When you press a button accelerator, the focus is not changed to the button. Just its action is fired. Correct. That's the problem I've been trying to explain.>A workaround for this< snip >Great. That should do it. That solution never crossed my mind (but probably should have, now I've seen how simple it is).Many than... |
Antonio: ALT accelerator with button - Urgent help needed | Antonio, your suggestion fix doesn't make any difference.The only difference it makes is that, if using ALT accelerator, focus now finishes up on the button. However, using ALT accelerator, the valid still gets executed as per all the original problems (wrong timing and/or executed twice) in my 2 examples.Any other tho... |
Antonio: ALT accelerator with button - Urgent help needed | Colin,What FWH version are you using ?Here its working fine using FWH 8.07. If you use LogFile() as I shown here then you will see that the VALID is executed just once. |
Antonio: ALT accelerator with button - Urgent help needed | Antonio, please try this sample. Note that a single Validxxxxx txt file gets created (as it should) if we click the button but two Validxxxxx txt files get created if we use ALT accelerator.//--------------------------------------FUNCTION TESTALT#include 'Fivewin.ch' LOCAL oDlg LOCAL oGet1, oGet2, oGet3, oBtnLOCAL cVar... |
Antonio: ALT accelerator with button - Urgent help needed | Colin,Many thanks for your example. Yes, you were right and there was a problem that was firing twice the focus, when Alt + acc was pressed.This change is required in Class TButton:[code:3kfg7bim]
METHOD Click() CLASS TButton
if ! ::lProcessing
::lProcessing = .t.
... |
Antonio: AddPicture & EXCEL 2010 | Amigos:
como hago para insertar una imagen en una hoja de excel ?
la idea es insertar una imagen en la primera celda de la oSheet
el siguiente codigo marca error de ejecucion: ,
Error description: Error 3302404:SHAPES/3 DISP_E_MEMBERNOTFOUND: ADDPICTURE
[code=fw:25cznwop]<div class="fw" id="{CB}" style="font-fam... |
Antonio: AddPicture & EXCEL 2010 | Please specify the full path of the image file
For eg.
[code=fw:1pf2icaa]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">local</span> cFile := <span style="color: #ff0000;">'C:<span style="color: #000000;">\F</span>WH<span style="color: #000000;">\g</span>ifs<span style="color: #... |
Antonio: AddPicture & EXCEL 2010 | Anserkk, Many tanks.
Funciona perfecto,
gracias
saludos. |
Antonio: AddPicture & EXCEL 2010 | amigos tambien funciona con:
oSheet:Pictures:Insert( cFile )
pero como dice el amigo Anserkk,
hay que indicar la ruta completa donde esta la imagen,
he probado con JPG y BMP funciona perfecto.
saludos...
[code=fw:epqvdex0]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#... |
Antonio: AddPicture & EXCEL 2010 | Buen dia.
Y si esa imagen la tengo dentro de un recurso?
gracias. |
Antonio: AddPicture & EXCEL 2010 | [quote="goosfancito":7hq481cb]Buen dia.
Y si esa imagen la tengo dentro de un recurso?
gracias.[/quote:7hq481cb]
Lo he intentado y buscado informacion y con el OLE no creo se pueda, ya que usa los mismo macros de VB y los que he visto alli, solo permite insertar imagenes desde disco, si consigues o logras algo y pue... |
Antonio: BUG in Treg32? | With the new FWH 10/6 and bcc582 the programm hangs with a call to treg32:getbinary() and uses 50% from resources. I change the code to the following:
[code=fw:rk30xzj5]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">METHOD</span> GetBinary<span style="color: #000000;">(</sp... |
Antonio: BUG in Treg32? | Antonio, have you seen this? |
Antonio: BUG in Treg32? | byte-one
Already changed to next version
Thanks |
Antonio: Bug in ARead() | In the function aRead() there must be "local nPos := 4,...." in the first line! |
Antonio: Bug in ARead() | Mr Günther
You are right. Actually it was 4 in the older versions. This value was changed to 1 in some later version wrongly.
Should be restored to 4. |
Antonio: Bug in ARead() | Günther,
Could you please provide an example that shows the need for that change ? thanks <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
Antonio: Bug in ARead() | For years i use this functions to store arrays. In the last time aread() gives wrong resultats. Antonio, please make
[code=fw:170l2n9y]<div class="fw" id="{CB}" style="font-family: monospace;">cVal := asave<span style="color: #000000;">(</span><span style="color: #000000;">{</span><span style="color: #000000;... |
Antonio: Bug in TRibbonBar | If i make a [b:1yv0d5mi]second[/b:1yv0d5mi] TRibbonBar in a second window and add a quickaccess, a error occured, when i add to the quickaccess a button. I found, that the static variables are on old status and the quickaccess is not properly initialized! This 3 vars should not be static.
[code=fw:1yv0d5mi]<div class="... |
Antonio: Bug in TRibbonBar | Antonio, have you seen this? |
Antonio: Bug in cFileSubDir( cPath ) | in cFileSubDir( cPath ) are also the drive name returned! This should not be so!
[quote:1rgp6bj8]Returns:
<cDirName> Just the path name specified inside the full filename, excluding the drive name.
[/quote:1rgp6bj8] |
Antonio: Bug in cFileSubDir( cPath ) | Günther,
Why do you think that the drive name should not be in the result ? |
Antonio: Bug in cFileSubDir( cPath ) | Antonio, read the description from this function:
[quote:s1hylwoa]Returns:
<cDirName> Just the path name specified inside the full filename, [b:s1hylwoa]excluding the drive name[/b:s1hylwoa]. [/quote:s1hylwoa]
Look also at cFilePath()! This now the same result as cFileSubDir(). |
Antonio: Bug in cFileSubDir( cPath ) | Please try this one:
[code=fw:3lpri2fl]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">function</span> cFileSubDir<span style="color: #000000;">(</span> cPath <span style="color: #000000;">)</span> <span style="color: #B900B9;">// returns the subdir of a path & fi... |
Antonio: Bug in cFileSubDir( cPath ) | Antonio, thanks!
But this method is not functioning with UNC-path ! |
Antonio: Bug in cFileSubDir( cPath ) | Günther,
Here you have it with UNC support. cFilePath() needs to be changed too:
[code=fw:3dbbklsb]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">function</span> cFilePath<span style="color: #000000;">(</span> cPathMask <span style="color: #000000;">)</span> <sp... |
Antonio: Bug in cFileSubDir( cPath ) | Antonio, thanks!!!
In the next FWH?? |
Antonio: Bug in cFileSubDir( cPath ) | yes, included in next FWH version <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
Antonio: Buttons with skin | Antonio, in 11/6 the skinbuttons are not right in reaction. If I leave the button with pressed left-mouse, the button is not released! So the button is fired also, when the mouse-arrow is outside the button. |
Antonio: Buttons with skin | Antonio, please look also to this problem for 11/07! |
Antonio: Buttons with skin | Antonio, in the 11/8 this problem is latent! For the moment the skinbuttons are not practicable. |
Antonio: Buttons with skin | Antonio, please show to this problem! I use for the moment a old version. |
Antonio: CHM Help | Antonio,I'm now trying to use .chm help files via FWH syntax.1. With .HLP files I just needed to do a SET HELPFILE TO myhlphelp.hlpand I could call up the help either by pressing F1 or by calling WINHELP(GetHelpFile()).2. With .CHM files it seems I need to do a SET HELPFILE TO mychmhelp.chmand I can call up the help ei... |
Antonio: CHM Help | Colin,Yes, chmHelpTopic( nHelpID / cTopic[.htm] ) --> nil is the way to review a topic.FWH also provides (source\winapi\helpchm.prg):function chmHelpIndex( cSearch )function chmHelpSearch (cSearch )function chmHelpPopup( cnHelp, nRow, nCol, oWnd ) // nrow, ncol are optionalPlease review the documentation info provided... |
Antonio: CHM Help | Colin,>HELPSETTOPIC('WINHELP') after the SET HELPFILE TO mychmhelp.chm, >Yes, thats the way we do it in samples\TestHlp2.prg |
Antonio: CHM Help | Thanks Antonio. Where I was confused was that SET HELPFILE TO mychmhelp.chmHELPSETTOPIC('WINHELP')allowed F1 to invoke help but, if I wanted to invoke help from a button or a menu, I had to callCHMHELPTOPIC()to get the same result.(Incidentally, the chm file in the app I am working on is created by the client so I neve... |
Antonio: CLASS TRBtn | Antonio, in this class the buttons are not declared with style WS_TABSTOP!?
I have changed the calls ::nStyle := ...... to
[code=fw:1bvpgoqx]<div class="fw" id="{CB}" style="font-family: monospace;"> ::<span style="color: #000000;">nStyle</span> = nOR<span style="color: #000000;">(</span> WS_CHILD, WS_VISIBLE... |
Antonio: CLASS TRBtn | Günther,
Yes, it is right and it makes pefect sense
Included for next FWH build, many thanks! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
Antonio: CLASS TRBtn | Günther,
I think a better implementation would be:
::nStyle = nOR( WS_CHILD, WS_VISIBLE, If( ! oWnd:IsKindOf( "TRBGROUP" ), WS_TABSTOP, 0 ) )
So the control may be placed any where and only on a RibbonBar would not need the focus. |
Antonio: Defecto en Gradient en Windows 7 | Hola Antonio:
He probado la funcion que publicastes aqui en el foro para generar un gradient en el xBrowse estilo Windows 7, el efecto es super bonito, pero tiene un fallo que no se solucionar. Cuando el campo a mostrar en el Browse no contiene informacion no generar el gradient en ese campo, y tambien tiene el mismo ... |
Antonio: Defecto en Gradient en Windows 7 | Aqui esta la Imagen:
[img:2oogmahl]http://www.proyectos-meliana.es/basura/1.jpg[/img:2oogmahl]
un saludo
JLL |
Antonio: Defecto en Gradient en Windows 7 | Hola,
Yo tengo el mismo problema y la verdad es que no se como resolverlo. Yo creo que el efecto de rejilla a la Windows 7 se obtiene más por los dos rebordes de la fila seleccionada, el interior blanco y el exterior azul que por el gradiente en sí. Y creo que nos estamos complicando la vida al intentar usar el método ... |
Antonio: Defecto en Gradient en Windows 7 | jll-fwh, Jose Luis
jll-fwh
El punto ya los has tratado y te di la solucion para tu version, pero no se si la aplicaste correctamente, verifica nuevamente este hilo
[url:2n8plu72]http://forums.fivetechsupport.com/viewtopic.php?p=95369#p95369[/url:2n8plu72]
Ponle atencion al punto para tu version
[url:2... |
Antonio: Defecto en Gradient en Windows 7 | Hola,
Gracias de nuevo por la solución. He estado probando en un par de aplicaciones, y los bitmaps se ven bien con el gradiente. Uso bitmaps normales, no alphablended, porque mi versión de FWH es un tanto antigua.
Saludos,
José Luis |
Antonio: Differences between BORLAND and VCC | 1. If i use cGetDir(..) and choose a USB-drive for camera-cards BUT WITHOUT any inserted camera-card, the programm crashes in some times!
2. When using shadow() in MS-VC the shadow are bigger then in Borland and on some dialogs the wide (height?) of the dialog are cutting a little on right(bottom?) side. |
Antonio: Differences between BORLAND and VCC | Günther,
1. Please check if a hb_out.log file is created
2. Check the manifest files embedded into the EXE |
Antonio: Differences between BORLAND and VCC | Antonio, from the first point the hb_out.log:
[quote:2r6f5vli]Application Internal Error - C:\WGUN\GUN1\gun32.exe
Terminated at: 2018-04-23 14:22:53
Unrecoverable error 9015: Symbol item expected from hb_vmDo()
Called from ASCAN(0)
Called from OWNDFROMHWND(3695) in .\source\classes\WINDOW.PRG
Called from FWSKINBTNPAINT... |
Antonio: Differences between BORLAND and VCC | In the meantime i made some tests. No referring with ::shadow!
Please see the picture. On left side compiled with MS-VC, on right side compiled with Borland. It seems, only on dialogs from code!?
[img:1uqa9lmu]http://byte-one.com/dialogs.png[/img:1uqa9lmu]
[code=fw:1uqa9lmu]<div class="fw" id="{CB}" styl... |
Antonio: Differences between BORLAND and VCC | Please inspect both EXEs using this tool:
[url:x0pmia2p]https://bitbucket.org/fivetech/fivewin-contributions/downloads/peinfo.exe[/url:x0pmia2p]
look for differences in the embedded manifest files and/or resources |
Antonio: Differences between BORLAND and VCC | 1. looks like memory corruption |
Antonio: Differences between BORLAND and VCC | Thanks Antonio.
1. The error is present on all machines.
2. I inspect the files with PE but no differences. I compile with the exact same RC-File. Have you tested the code? |
Antonio: Differences between BORLAND and VCC | Any news?
I found also that in dialogs from resource the height of the caption-area between MS-VC and Borland are different. Maybe different constants in the header-files from the compilers? For the moment i cannot use MS-VC. |
Antonio: Differences between BORLAND and VCC | We are checking it but can't see where the difference comes from yet |
Antonio: Differences between BORLAND and VCC | Hello to all. I not can found any reason for the differences on the both compilers. Can please several from us test the above code with VCC and report!? |
Antonio: Differences between BORLAND and VCC | Gunther, I tested your sample also and I continue to investigate why |
Antonio: Differences between BORLAND and VCC | To All
I have tried to create a script to compile MSVC 2017 using BuildxM ( xHarbour ) as my guide ( as you may remember ), unfortunately I gave up because I could not get any script or suggestions from the forum to cleanly compile tutor01.prg.
If anyone could post a working MSVC\xHarbour script .. I would be glad to... |
Antonio: Differences between BORLAND and VCC | Rick,
I do not use Borland, but I do create two builds of my primary application.
1). xHarbour ( .com / xBuilder with Pelles C ) using the version from 11/2015
2). Microsoft Visual Studio 2017 with Harbour libraries
Option 1 is only used by people who have ADS Version 7 or 8 and I have the proper libs for thos... |
Antonio: Differences between BORLAND and VCC | Tim or Anyone
I have downloaded the MSVC2017 32 bit Command line Compiler ( from Mel's site .. you do not need to install Visual Studio ) [img:1shnqzj5]http://i65.tinypic.com/2zxvzgm.jpg[/img:1shnqzj5]
[img:1shnqzj5]http://i67.tinypic.com/2rhqn2a.jpg[/img:1shnqzj5]
And the matching xH... |
Antonio: Differences between BORLAND and VCC | compiled with Harbour + Fivewin 18.03 and GCC 7.3 32 bit
[img:3lrdhf4n]http://www.veneziasoft.com/download/gcc_32.jpg[/img:3lrdhf4n]
compiled with Harbour + Fivewin 18.03 and GCC 7.3 64 bit
[img:3lrdhf4n]http://www.veneziasoft.com/download/gcc_64.jpg[/img:3lrdhf4n]
regards |
Antonio: Differences between BORLAND and VCC | [quote="Rick Lipkin":3e0mt2xa]I would appreciate if anyone has a batch file ( like buildxm.bat ) to be able to compile tutor01.prg[/quote:3e0mt2xa]
What problem did you get using buildxm.bat?
EMG |
Antonio: Differences between BORLAND and VCC | Enrico
I gave up on MSVC .... here was the last test before I gave up ... this how I modified my batch file:
[code=fw:1hru0lij]<div class="fw" id="{CB}" style="font-family: monospace;"><br />@ECHO OFF<br />CLS<br />ECHO ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿<br />ECHO ³ FiveWin... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.