topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
Base de datos en red | [quote="fergonm":3sg61j4q]Buenas tardes a todos
Tengo una duda. Debo colocar la base de datos en un solo ordenador y tener acceso desde el resto, todos ellos en red.
Debo colocar la base de datos en uno de los equipos y un .exe en cada equipo. Como se debe modificar el programa para acceder a los datos desde cada ord... |
Base de datos en red | Muchas gracias por vuestras contestaciones.Nunca usé archivos tipo .INI, por lo que no se como utipizarlos. Pueden indicarme donde encontrar ejemplos.Un saludo. |
Base de datos en red | [quote="fergonm":3nmf9mwq]Muchas gracias por vuestras contestaciones.
Nunca usé archivos tipo .INI, por lo que no se como utipizarlos. Pueden indicarme donde encontrar ejemplos.
Un saludo.[/quote:3nmf9mwq]Fernando, aquí tienes un explicacion más detallada sobre los INI:Es un fichero de texto corriente. Puedes crearlo... |
Base de datos en red | Muchas gracias Francisco. Espero que con tan detallada información funcione todo correctamente.Un saludo. Fernando |
Base de datos no sql | Colegas, hay alguna utilidad en harbour para trabajar con base de datos no sql, por ejemplo MongoDb. Muchísimas gracias
Saludos |
Base de datos no sql | Creo que desde hace tiempo hay una persona que lo está desarrollando
<!-- m --><a class="postlink" href="https://github.com/tfonrouge/hbmongoc">https://github.com/tfonrouge/hbmongoc</a><!-- m --> |
Base de datos no sql | Muchas gracias Cristobal. Lo miro.
Saludos |
Base sample with scintilla | Hello,
I am trying to use scintilla in my program to syntax highlight, but it have no lucky...
[code=fw:2sluwjmz]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><span style="color: #00D7D7;">#include</span> <... |
Base sample with scintilla | Look Function SourceEdit() in MEMOEDIT.PRG
With this function, you already have an editor using Scintilla
Sample of use
<!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=3&t=35301&p=210187&hilit=sourceedit#p210177">viewtopic.php?f=3&t=35301&p=210187&hilit=sourceedit#p210177</... |
Base sample with scintilla | i use the function SourceEdit() and the class fivedit0.prg from fivewin\samples to edit sql texts.
is it possible to change the list of key words sensitive to colors?
i want to add some SQL statements.
thanks |
Base sample with scintilla | You should use
[code=fw:mp2d8t9e]<div class="fw" id="{CB}" style="font-family: monospace;">oScintilla:<span style="color: #000000;">SetKeyWords</span><span style="color: #000000;">(</span> <span style="color: #000000;">0</span>, <span style="color: #ff0000;">"keyword1 keyword2 keyword3"</span> <span style="color: #... |
Base sample with scintilla | function SourceEdit() documentation:
[url:180dxcoz]http://wiki.fivetechsoft.com/doku.php?id=fivewin_function_sourceedit[/url:180dxcoz]
This is a very powerful FWH function. Don't miss it <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
Base sample with scintilla | [quote="marzio":25xr0zpw]i use the function SourceEdit() and the class fivedit0.prg from fivewin\samples to edit sql texts.
is it possible to change the list of key words sensitive to colors?
i want to add some SQL statements.
thanks[/quote:25xr0zpw]
You must configure the lexer to use, before call to setup method
oE... |
Base sample with scintilla | [quote="marzio":1nm7yrc4]oScintilla:SetKeyWords( 0, "keyword1 keyword2 keyword3" )
works fine.
i have tried this:
::oEditor = TScintilla():New( 0, 0 , 943, 400,, ::nTextColor, ::nBackColor, 519 )
::oEditor:cLexer := 7
::oEditor:SetLexer( 7 ) // SCLEX_SQL
::oEditor:Setup()
but i receive an error: Error BASE/1004 Mess... |
Base sample with scintilla | oScintilla:SetKeyWords( 0, "keyword1 keyword2 keyword3" )
works fine.
i have tried this:
::oEditor = TScintilla():New( 0, 0 , 943, 400,, ::nTextColor, ::nBackColor, 519 )
::oEditor:cLexer := 7
::oEditor:SetLexer( 7 ) // SCLEX_SQL
::oEditor:Setup()
but i receive an error: Error BASE/1004 Message not found: TSCINTILLA... |
Base sample with scintilla | ::oEditor:cLexer := 7
::oEditor:Send( 4001, 7, 0 )
::oEditor:Setup()
i have no difference in colors of SQL sintax. |
Base sample with scintilla | have you tryied to setup some colors?
[code=fw:gnix7c4h]<div class="fw" id="{CB}" style="font-family: monospace;">::<span style="color: #000000;">oEditor</span>:<span style="color: #000000;">SetAStyle</span><span style="color: #000000;">(</span>SCE_SQL_COMMENTLINE ,RGB<span style="color: #000000;">(</span><span... |
Base sample with scintilla | Sample for SQL syntax
[img:2qx5ca5w]https://s18.postimg.org/k22loj0yx/fe_Sql1.png[/img:2qx5ca5w]
[code=fw:2qx5ca5w]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"fivewin.ch"</span><br /><br /><span styl... |
Base sample with scintilla | many thanks to AntoninoP and Cristobal,
i have tried both the examples and them work fine! |
Base sample with scintilla | Days trying to make .ini highlight works and now, after build the dll, it works <!-- s8) --><img src="{SMILIES_PATH}/icon_cool.gif" alt="8)" title="Cool" /><!-- s8) --> |
Base sample with scintilla | Antonino,
What DLL ? <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
A screenshot of your INI highlighting surely will be appreciated |
Base sample with scintilla | I recompiled SciLexer.dll
Here a screenshot of test program
[img:rsbe1tio]https://i.imgur.com/HuKdnmU.jpg[/img:rsbe1tio]
And here the code:
[code=fw:rsbe1tio]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.ch"... |
Base sample with scintilla | Antonino,
Could you provide a url to download the DLL ?
If you send it to me I will upload it to bitbucket and share it <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
Base sample with scintilla | I downloaded the source code from [url:vkgtvv0o]http://www.scintilla.org/ScintillaDownload.html[/url:vkgtvv0o] and compiled it.
When I have a little more time i will compile the 64bit version and upload it somewhere... |
Base sample with scintilla | DLLs with all Lexers
For 32 bits
<!-- m --><a class="postlink" href="https://bitbucket.org/fivetech/fivewin-contributions/downloads/SciLexer376Dll_X86.dll">https://bitbucket.org/fivetech/fivewin- ... ll_X86.dll</a><!-- m -->
For 64 bits
<!-- m --><a class="postlink" href="https://bitbucket.org/fivetech/fivewin-contrib... |
Base sample with scintilla | Where do you take these dlls?
[url=http://www.scintilla.org/ScintillaHistory.html:fahwkgzt]The 3.7.6 is from 8th August, 2017[/url:fahwkgzt].. .
I putted the 4.0.3 on:
[url:fahwkgzt]http://aperricone.altervista.org/extras/SciLexer.dll[/url:fahwkgzt]
[url:fahwkgzt]http://aperricone&#... |
Base sample with scintilla | I'm going to put the 4.0.3 also to use with Fivedit (samples) |
Base sample with scintilla | Mr Antonino, in your code ( not important )
[quote:2f53cfgh]
SCI_SETSTYLEBITS(int bits) Deprecated
SCI_GETSTYLEBITS ? int Deprecated
SCI_GETSTYLEBITSNEEDED ? int Deprecated
INDIC0_MASK, INDIC1_MASK, INDIC2_MASK, INDICS_MASK Deprecated
Scintilla no longer supports style byte indicators. The last version to support sty... |
Base64 | Hi, all !I cut out blok from certain file (all this bloks is picture codind base64) and save blok to file(bas.txt). Then fMimeDec("bas.txt","bas.bmp"). It's O'K. I got picture !But sometimes blok to finish string "==" and I got empty picture. What it ? |
Base64 | Could you provide an example that reproduces the error ? thanks |
Base64 | Thank, Antonio !I resolved this problem. |
Base64 natives functions in Clipper ! | Hello,
I put here in public domain, for Clipper and [x]Harbour developpers,
some functions i have created to translate strings in Base64 encodage
and reverse. This will help you in some cases, like to create your own
TSMTP class with Autentification support, necessary to communicate
with more in more SMTP providers...... |
Base64 natives functions in Clipper ! | Hello,
See my post on Clipper Forum today:
<!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=1&t=14482&start=0">viewtopic.php?f=1&t=14482&start=0</a><!-- l -->
Best regards. |
Base64 natives functions in Clipper ! | Thank you for your contribution! This helped me today in a project ...
Regards |
Base64 natives functions in Clipper ! | I am happy for you...
Regards. |
Base64 natives functions in Clipper ! | Hello,
I have upgraded StrToBase64() today. One bug fixed.
No changes in others functions.
Regards.
[code=fw:1anh6vg5]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br />* BASE64.PRG<br />* Creation le <span style="color: #000000;">30</span>/<span style="color: #000000;">12</span>/<span style="color... |
Base64 natives functions in Clipper ! | Dear Badara Thiam
Thank you for your Contribution. It works well and helped me a lot.
Greatings
Peter Wiegand |
Base64 natives functions in Clipper ! | The function Base64toStr, has a error, the change is, add this code on the end function:
cTexte:=str2hex(cTexte)
if right(cTexte,2)="00"
cTexte:=substr(cTexte,1,len(cTexte)-2)
end if
cTexte:=hex2str(cTexte)
return cTexte |
Base64 to Audio | Hey guys
How do I convert a Base64 to Audio file |
Base64 to Audio | Look
<!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=6&t=39838&p=237612&hilit=hb_Base64Encode&sid=083b50f71c56db8897985ab3a60d5a18#p237612">viewtopic.php?f=6&t=39838&p=237612&hilit=hb_Base64Encode&sid=083b50f71c56db8897985ab3a60d5a18#p237612</a><!-- l -->
[code=fw:1ltn931w]<d... |
Base64 to Audio | Obrigado
cnavarro |
Base64 to PDF | I use:
cPdf = HB_BASE64DECODE( cTxt )
MEMOWRIT( "Test.Pdf", cPdf, .F. )
wherein cTxt:
[code=fw:3pvrbbs0]<div class="fw" id="{CB}" style="font-family: monospace;">JVBERi0xLjUNCjIgMCBvYmoNCjw8IC9GaWx0ZXIgL0ZsYXRlRGVjb2RlIC9MZW5ndGggMTYyMzcgL0xlbmd0aDEgMjgxNDAgPj4NCnN0cmVhbQ0KeAHtvAk8Vd3bN34kKUOpiCadoig5nPmIaDKHKFOGyp... |
Base64 to PDF | This run Ok for me
[code=fw:3nxcdd3j]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"Fivewin.ch"</span><br /><br /><span style="color: #00C800;">Function</span> Main<span style="color: #000000;">(</span><span style="... |
Base64 to PDF | I am using xHarbour build 1.2.1, function HB_MEMOREAD() does not exist. I guess the problem might be in MEMOREAD()?
Best regards,
Miloš |
Base64 to PDF | Dear Miloš,
Yes, as memoWrit() adds an extra HB_CHAR_EOF character
Use SubStr() to remove it when reading the saved string |
Base64 to PDF | This is my code:
[code=fw:1nqt22fr]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">Function</span> test<span style="color: #000000;">(</span><span style="color: #000000;">)</span><br /><br /> <span style="color: #00C800;">LOCAL</span> cFileName := cGetFile<span style=... |
Base64 to PDF | This is working fine using Harbour and fails using xHarbour:
[code=fw:1koup4xm]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><br /><span style="color: #00C800;">function</span> Main<span style="color: #00000... |
Base64 to PDF | Antonio,
Works with xHarbour xHarbour 1.2.3 Intl. (SimpLex) (Build 20201212) but not with xHarbour build 1.2.1 Intl. (SimplLex) (Rev. 9382). I have to use xHarbour build 1.2.1 Intl. (SimplLex) (Rev. 9382)? |
Base64 to PDF | Dear Milos,
Then you have to compare the source code of both xHarbour builds and check the differences and implement your own modified functions |
Base64 to PDF | Thank you Antonio...
I found it on the forum, it works great:
<!-- l --><a class="postlink-local" href="https://www.fivetechsupport.com/forums/viewtopic.php?f=3&t=34757&start=0#p206651">viewtopic.php?f=3&t=34757&start=0#p206651</a><!-- l --> |
Base64 to PDF | very good! |
Base64 to PDF | [quote="Antonio Linares":oih4qdfl]Dear Miloš,
Yes, as memoWrit() adds an extra HB_CHAR_EOF character
Use SubStr() to remove it when reading the saved string[/quote:oih4qdfl]
It is not required. Just add the third parameter to MEMOWRIT():
[code=fw:oih4qdfl]<div class="fw" id="{CB}" style="font-family: monospace;">ME... |
Base64 to PDF | Many thanks Enrico! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
Base64 to PDF | [quote="mtajkov":245ismyo]I use:
cPdf = HB_BASE64DECODE( cTxt )
[b:245ismyo]MEMOWRIT( "Test.Pdf", cPdf, .F. ) [/b:245ismyo]
[/code]
I don't get the correct pdf?
if the same cTxt I decode in <!-- m --><a class="postlink" href="https://base64.guru/converter/decode/pdf">https://base64.guru/converter/decode/pdf</a><!-... |
Base64 to PDF | Ops! You are right. |
Base64 to PDF | Long time back, I was using my own functions
[code=fw:g1vudhd4]<div class="fw" id="{CB}" style="font-family: monospace;">GN_BASE64ENCODE<br />GN_BASE64DECODE<br />GN_BASE64URL</div>[/code:g1vudhd4]
I am posting one of my old programs here.
You may check if my old functions work correctly for you.
[code=fw:g1vudhd4]<di... |
Bases datos utiles en España | Hola amigos:
Supongo que lo tendreis todos pero he conseguido unos ficheros de texto con codigos postales de España, hay unos 11.000 Creo, no se si estan todas, la mia esta <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> Campos : Codigo postal, poblacion, provincia
y ... |
Bases datos utiles en España | Gracias Jose |
Bases de datos | La consulta es que opinion tienen de firebird, ya que estoy interesado en aprender a utilizarlo para cambiar las dbf a bases de datos y si se puede relacionar fwh con la base de datos creada con firebird. Y si es posible importar las tablas que tengo en dbf a la nueva. Me interesé por ésta ya que un amigo la utiliza y ... |
Bases de datos .DAT y indices .IDX | Alguien sabe con que abrir estas bases de datos .dat y indices .idx.....
Gracias. |
Bases de datos .DAT y indices .IDX | Andrés:
Prueba con Advantage Data Architect.(ADS).
Saludos
Ruben Fernandez. |
Bash en Windows | <!-- m --><a class="postlink" href="http://www.theverge.com/2016/3/30/11331014/microsoft-windows-linux-ubuntu-bash">http://www.theverge.com/2016/3/30/11331 ... buntu-bash</a><!-- m --> |
Batch files to build Harbour | checkout.bat (To download the Harbour files from its repository)
[code=fw:2aik2pew]<div class="fw" id="{CB}" style="font-family: monospace;">svn.exe co https:<span style="color: #B900B9;">//harbour-project.svn.sourceforge.net/svnroot/harbour-project/trunk harbour</span><br /> </div>[/code:2aik2pew]
svn.exe is available... |
Batch files to build Harbour | Batch file to build Harbour with QT support, in order to build HBIDE:
First download QT from here:
<!-- m --><a class="postlink" href="http://get.qt.nokia.com/qtsdk/qt-sdk-win-opensource-2010.04.exe">http://get.qt.nokia.com/qtsdk/qt-sdk-wi ... 010.04.exe</a><!-- m -->
gow.bat
[code=fw:3ld9y173]<div class="fw" id="{CB... |
Batch for compiling and linking with Harbour | Hi.
I'm using Xharbour commercial, but I want to make some tests with the Harbour that comes
with FWH. I don't know how to make the compiling process of several Prg and to link them
with some Libs. Can I have and example how to make it ?
Thanks in advance.
Massimo. |
Batch for compiling and linking with Harbour | Hello Massimo,
The Batchfile ( [color=#FF0000:r0so080w]GO.BAT [/color:r0so080w])
if not exist obj md obj
c:\bcc55\bin\make -f makefile.rmk
The Makefile ( [color=#FF0000:r0so080w]MAKEFILE.RMK [/color:r0so080w])
HBDIR=c:\xharbour
BCDIR=c:\bcc55
FWDIR=c:\fwh
.path.OBJ = .\obj
.path.PRG = .\
.path.CH = $(FWDIR)\inclu... |
Batch for compiling and linking with Harbour | Thanks a lot. I'll try it.
Have a nice evening.
Massimo. |
Battery Life retorna sempre 39 | Olá a Todos
Este é o código que peguei aqui no forum,
ao compilar da este erro:
warning C4700: local variable 'status' used without having been initialized
para as duas linhas onde o "SYSTEM_POWER_STATUS_EX status;" está declarado,
e retorna na "status.BackupBatteryLifePercent" sempre 39, seja no emulador como no poc... |
Battery Life retorna sempre 39 | Mauro,
Change this line:
iRet = GetSystemPowerStatusE x( &status, TRUE );
"Ex" together |
Battery Life retorna sempre 39 | [quote="Antonio Linares":2h2seblk]Mauro,
Change this line:
iRet = GetSystemPowerStatusE x( &status, TRUE );
"Ex" together[/quote:2h2seblk]
Antonio,
funcionou muito bem
Obrigado,
Saludos
Mauro |
BatterySignalDiskInfoMemory | How I can to show these informations ?
I wanted show it as bar progress into a window
I need your help
[code=fw:32wvo6vc]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FWCE.ch"</span><br /><br /><br /><span style="color: #00... |
Baxajaun - Feliz Cumpleaños | Félix, que cumplas muchos más y que pases un estupendo día |
Baxajaun - Feliz Cumpleaños | Happy Birthday, Baxajaun!!! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
EMG |
Baxajaun - Feliz Cumpleaños | +1
Y que vengan muchos más cumpleaños <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
Baxajaun - Feliz Cumpleaños | Va por ti Félix, <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
[img:4dtc8y6r]http://media1.confetifiestas.com/9550-thickbox_default/gafas-jarra-de-cerveza.jpg[/img:4dtc8y6r] |
Baxajaun - Feliz Cumpleaños | Muchísimas gracias a todos!!!
Un abrazo |
Bcc++ 64Bits | Buenos días...
Desde donde puedo descargar este compilador para x64
Gracias |
Bcc++ 64Bits | [url:1u3cuywg]http://xharbour.org/index.asp?page=download/windows/required_win[/url:1u3cuywg] |
Bcc7 and Fivewin Crash | I am attempting to move an existing application from and old version of FiveWin, and xHb.
Now using Bcc7, and the newest FiveWin, after I finally got the app to compile and link I get an exception error when the mouse is moved over the application. Anybody familiar with this problem, I am not sure how to debug. When ... |
Bcc7 and Fivewin Crash | btw, I am now using Harbour as well... |
Bcc7 and Fivewin Crash | Byron
You have a file error.log or hb_out.log? |
Bcc7 and Fivewin Crash | Byron,
In file hb_out.log we will know where the GPF is coming from |
Bcc7 and Fivewin Crash | Hi Antonio,
Sometimes, I got Crash and not any error message or file txt. |
Bcc7 and Fivewin Crash | Richard,
Harbour traps the Windows GPFs but this is not possible on all GPFs circunstances.
It is a Windows limitation |
Bcc72 Prsht.h resource compile error | To All
Just downloaded Bcc72 32 bits and like Bcc70 ( which I have a fix for ) I get a compile error with prsht.h about an out of balance #if and #endif. I was hoping someone has run accross this error and has a fix for the header file mismatch. I would be very grateful.
[1]:Brc32.Exe -r -foResource\VehW32.Res Veh... |
Bcc72 Prsht.h resource compile error | Can I see a sample showing the error to test here?
EMG |
Bcc72 Prsht.h resource compile error | Please search into he forum, this topic is resolved. sorry for my bad english.
[url:34kqq6j5]http://forums.fivetechsupport.com/viewtopic.php?p=147360#p147360[/url:34kqq6j5] |
Bcc72 Prsht.h resource compile error | Carlos
Thanks for reminding me of my own solution .. I did not research this fix since the files are so different. Let me see if removing the trailing \ from line 184 does the trick for Bcc72.
Thanks
Rick Lipkin |
Bcc72 Prsht.h resource compile error | Enrico
Just try to compile a .rc file with the line below ( or buildx.bat that includes an .rc ) and that will evoke the error. Bcc72 is a bit different than Bcc70 in that that the .H files are in two different folders complicating the compile a bit.
Windows.h is in \Bcc72\INCLUDE\windows\sdk and
String.h is in \... |
Bcc72 Prsht.h resource compile error | What is prsht.h for? I never used it.
EMG |
Bcc72 Prsht.h resource compile error | Enrico
I have no clue .. somehow Prsht.h is evoked by Brc32.exe when compiling a .rc file.
Rick Lipkin |
Bcc72 Prsht.h resource compile error | No, it doesn't. At least, I never saw that error myself.
EMG |
Bcc72 Prsht.h resource compile error | Enrico
I use the below modified Rc2Dll32.bat file that copies all my .rc to a single .rc and then compiles to .res. The line below fails twice :
[code=fw:crl4lxc0]<div class="fw" id="{CB}" style="font-family: monospace;"><br />@Echo Off<br />rem RC file <span style="color: #0000ff;">to</span> <span style="color: #00... |
Bcc72 Prsht.h resource compile error | Still I don't understand what is the use of prsht.h and combaseapi.h. Never used nor needed them.
EMG |
Bcc72 Prsht.h resource compile error | Rick,
What header files those RC files have ? |
Bcc72 Prsht.h resource compile error | Enrico
I do not know the answer to your question .. I do remember ( after Carlos jogged my memory ) having to rem out the trailing \ in Prsht.h in Bcc70 .. but following the "rabbit trail down the hole" with Bcc722 .. fixing Prsht.h lead to Combaseapi.h and rem'ing out line 283 makes the process work.
What is int... |
Bcc72 Prsht.h resource compile error | Antonio
Using Resedit the following Include lines are embedded .. probably those are evoking the additional C++ header errors:
[code=fw:axj2balf]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">// Generated by ResEdit 1.6.6</span><br /><span style="color: #B900B9;">// Copyr... |
Bcc72 Prsht.h resource compile error | Rick,
Try removing this line:
#include <commctrl.h>
if that solves the problem, then you can modify the resource script template from Resedit preferences |
Bcc72 Prsht.h resource compile error | Antonio
I removed the #include <commctrl.h> from all my resources and that fixed the call to Prsht.h but the .rc compile still apparently is looking at combaseapi.h and errors out on line 283 with the symbol PURE already defined.
Rick Lipkin |
Bcc72 Prsht.h resource compile error | Rick,
Please post here the error output |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.