topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
rich3d20.dll | avete un esempio di rtfmerge per caso ? |
richedit | When i try the richedit samples FWH25 and hit a key from the keyboard
The letter appears 2 times on the screen .
What is wrong ? |
richedit | From an old message of mine:
------------------------------------------
It seems that commenting out
// Super:KeyChar( nKey, nFlags )
from KeyChar() method solves the double character bug:
[code:16vr0frd]METHOD KeyChar( nKey, nFlags ) CLASS TRichEdit
// Super:KeyChar( nKey, nFlags )
if &#... |
richedit | it is possible insert Image on richedit ?
it is possible insert zoom control on it ?
thanks |
richedit | hi, is possible use richedit with get, without an external file, saving in an memo file? someone has a little sample? thanks |
richedit | Nop,
Search fwh\samples for "richedit" examples.
Since richedit data is contained in a string var you should be able to just save it to a memo field like any other string.
@ 0, 0 RICHEDIT oRich VAR cVar
define button of oBar action ((cAlias)->notes:= cVar)
James |
richedit | Agregando estos métodos a la clase tRichEdit() podrás hacer zoom, pero si usas la versión 5 de riched20.dll.
Add these methods to tRichEdit() to zoom, but be sure you have riched20.dll version 5 installed.
Saludos/Regards
César Lozada
#define EM_GETZOOM (WM_USER + 224)
#define EM_SETZOOM (WM_USER + 225)
METHOD S... |
richedit | thanks cesar
How I must call these functions into testrtf.prg have you an sample for it ? |
richedit | Where I can found a sample test with a dbf with memo field and the possibility to use richedit as get and save it on dbf (memo field) ?
thanks |
richedit | Where I can found a sample test with a dbf with memo field and the possibility to use richedit as get and save it on dbf (memo field) ?
thanks |
richedit | Silvio,
did you try SaveAsRTF() method?
EMG |
richedit | yes but not run or I wrong the command |
richedit | Silvio,
what is SaveAsRTF() returning? Try
? VALTYPE( oRich:SaveAsRTF() )
and let me know.
EMG |
richedit | See the test sample i sent you yesterday |
richedit | here the test
[code=fw:3nuwc1y5]<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> <span style="color: #ff0000;">"constant.ch"</span><br /><span style="color: #00D7D... |
richedit | Silvio
Recomiendo amacenar el texto en un memo para casos de busquedas y el contenido RTF en otra tabla.
<!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=6&t=30337&p=173596&hilit=jnavas#p173596">viewtopic.php?f=6&t=30337&p=173596&hilit=jnavas#p173596</a><!-- l --> |
richedit class | Hi all,i'd like to use the richedit class and have some questions about it.Tables:Does the FiveWin class support creation and/or reading of tables?Color of Text:Does the FiveWin class support background colors for text?Thanks for your answers.Regards, Detlef |
richedit class | Though I haven't used TRichedit yet, by looking at \fwh\source\classes\TRichedi.prg it seems that the following info appears to be relevant...The class has seven methods dealing with loading and saving data, GetSel(), LoadRTF(), LoadAs RTF(), LoadFromRTFFile(), SetText(), and SaveAsRTF(), SaveToFile() that should be lo... |
richedit class | Roger,thanks for jumpin' in.My understanding of RichText was similar to a mark up language as html.So i tried to color a text with tags like \fc1\bc2 where '1' and '2' are indizes for the color table.I succeeded to change the foreground color of a dstreing with \fc+'x'.But when i try to set a background color with \bc+... |
richedit class | Detlef,I think you have the codes backwards, it is cf and cb.[code:148go26q]{\f1\cb1\cf2 This is colored text. The background is color 1 and the foreground is color 2.}[/code:148go26q][url:148go26q]http://www.biblioscape.com/rtf15_spec.htm#Heading16[/url:148go26q]Regards,James |
richedit class | Thank you, James,but exchanging \fc and \bc doesn't make any difference.You will see that your sample does not change the background color.I think it's a MS related bug because MS Word and MS WordPad can't display an other background color as white neither.Regards,Detlef |
richedit class | Detlef,[quote="Detlef Hoefner":2l4ujflr]
Color of Text:
Does the FiveWin class support background colors for text?
[/quote:2l4ujflr]assuming that oRTF is your Richedit object, you can use [code:2l4ujflr]oRTF:SetTextColor( ChooseColor() )[/code:2l4ujflr] to change the textcolor of the selected text a... |
richedit class | Stefan,thanks a lot for your help.The background color is setting up fine now.It seems that tag \cb is never used because the bg-color is done with the tag \highlight + n.Thanks again,Detlef |
richedit con tabulador (desde recursos) ¿como? | Buenas noches,
Utilizo la clase richedit y no logro hacer que funcione el tabulador dentro de la edición del texto. Cada vez que se pulsa el tabulador se sale de la edición del richedit (se sale del "custom control") y lo que quiero es que haga una tabulación en el texto.
El "Window styles" del recurso en el que uso ... |
richedit con tabulador (desde recursos) ¿como? | Rolando,
Una vez hagas REDEFINE RICHEDIT ... a continuación haz:
#define DLGC_WANTTAB 0x0002
oRichEdit:nDlgCode = DLGC_WANTTAB |
richedit con tabulador (desde recursos) ¿como? | Antonio,
Gracias por responder.
Lamentablemente no funciona lo que propones. Además estuve "mirando" la trichedit.prg y no encontré la data [b:lhhzqcbj]nDlgCode[/b:lhhzqcbj].
Saludos.
Rolando |
richedit con tabulador (desde recursos) ¿como? | Rolando,
La Clase TRichEdit, como todos los demás controles, deriva de la Clase TControl y es TControl quien implementa la DATA nDlgCode.
Windows le pregunta a nuestros controles que teclas quieren procesar, y el control solicita las que desea. El método que responde a esta petición es Method GetDlgCode( nLastKey ). ... |
richedit con tabulador (desde recursos) ¿como? | Rolando,
La solución es modificar el Método KeyDown() de la Clase TRichEdit, para que no haga nada con VK_TAB:
[code=fw:30otrqjz]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">METHOD</span> KeyDown<span style="color: #000000;">(</span> nKey, nFlags <span style="color: #000... |
richedit con tabulador (desde recursos) ¿como? | Aunque lo más práctico sería añadir una nueva DATA a la Clase TRichEdit lWantTab para que sea tan sencillo como:
oRichEdit:lWantTab = .T.
sin necesidad de tocar los fuentes de FWH <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
richedit con tabulador (desde recursos) ¿como? | Antonio,
Después de una semana de ausencia "forzada" por problemas de salud, retomo el tema en cuestión y comento que probé con lo que indicas agregando al METHOD KeyDown:
[code=fw:z0a02oyr]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">if</span> nKey == VK_TAB<br /> <span... |
richedit con tabulador (desde recursos) ¿como? | Antonio,
Justamente probé "detectar" la tecla TAB de la manera que indicas, colocando también un msginfo() para confirmarlo, pero no logro salir de ahí pasando ese evento a la TRichedit. Estuve buscando dentro de la clase y probando con todos los "send" que tiene pero no doy pié con bola.
Gracias por tu interés. Segu... |
richedit con tabulador (desde recursos) ¿como? | arriba |
richedit con tabulador (desde recursos) ¿como? | +1 |
richedit con tabulador (desde recursos) ¿como? | Rolando,
Te pido disculpas por mi retraso en atenderte pero he estado ocupado con FWH 64 bits y atendiendo a Lucas en ese tema.
Voy a construir un ejemplo y probamos con él |
richedit con tabulador (desde recursos) ¿como? | De momento con el ejemplo de FWH testrich.prg de la carpeta samples, añadiendo estas dos líneas:
oRich:bKeyDown = { | nKey | MsgInfo( nKey ) }
oRich:nDlgCode = DLGC_WANTALLKEYS
sigue sin detectar la tecla de tabulación... |
richedit con tabulador (desde recursos) ¿como? | Si añadimos estas tres líneas en la Clase TRichEdit ya conseguimos interceptar la tecla VK_TAB:
[code=fw:yww58kgh]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">METHOD</span> KeyDown<span style="color: #000000;">(</span> nKey, nFlags <span style="color: #000000;">)</spa... |
richedit con tabulador (desde recursos) ¿como? | Rolando,
Buscando en google he encontrado que se trata de un error de los controles RichEdit, ya que si se devuelve el valor DLGC_WANTALLKEYS desde el Método GetDlgCode() de TRichEdit, Windows no debería darle el foco a otro control.
La solución usada para saltarse esta limitación es interceptar el mensaje WM_NEXTDLG... |
richedit con tabulador (desde recursos) ¿como? | Falta añadir este método en la Clase TRichEdit:
[code=fw:3agrx6po]<div class="fw" id="{CB}" style="font-family: monospace;"> <span style="color: #00C800;">METHOD</span> GetDlgCode<span style="color: #000000;">(</span> nLastKey <span style="color: #000000;">)</span> <span style="color: #00C800;">INLINE</span>... |
richedit con tabulador (desde recursos) ¿como? | Y si añadimos estas líneas en el método KeyDown() de TRichEdit(), vemos que la tecla VK_TAB llega, faltaría solo intercalar Tab en el texto (usando el método SetText()), pero el foco sigue saltando al siguiente control. Eso es lo que nos falta solucionar:
[code=fw:1zchlmve]<div class="fw" id="{CB}" style="font-family:... |
richedit en dialogos | Hola a todos,
¿ Es cierto que el control richedit no se puede insertar en dialogos? ¿Alguien a hecho algo con esto?
Gracias, |
richedit en dialogos | Julio,
El ejemplo samples\TestRich.prg usa un control RichEdit en una caja de diálogo. |
richedit.h and pelles c resource editor | Antonio
When you have a dialog set with Pelles c it generates
#include <richedit.h>
This line prevents a dialog of showing.
Removing the line will allow a dialog to show normally.
Richard |
richiesta di collaborazione | c'è qualcuno disposto ad aiutarmi dietro compenso ?
per questo problema <!-- m --><a class="postlink" href="http://forums.fivetechsupport.com/viewtopic.php?f=3&t=41951&p=256079&sid=87d749e1a826bd01f4f88798844f6573#p256070">http://forums.fivetechsupport.com/viewt ... 73#p256070</a><!-- m -->
mi può scrivere privatament... |
richtext | I have a memofield with richtext value like this:
{\rtf1\ansi\ansicpg1200\deff0\deflang1043{\fonttbl{\f0\fnil\fcharset0 TIMES NEW ROMAN;}}
{\*\generator Msftedit 5.41.21.2510;}\viewkind4\uc1\pard\f0\fs24 Bij deze fraaie plant is het jonge blad roze gekleurt. Later verkleurt dit blad naar groen met een cr\'e8mewitte ran... |
richtext | René,
You have to use FiveMac modified libs that I am emailing you.
This is an example:
[code=fw:rmrt2j9m]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveMac.ch"</span><br /><br /><span style="color: #00C800;">function</span> ... |
richtext | Hello Antonio,
Thanks again for the quick reply and the new libs. It has been a long day for me (6.00- 22.00 work), so tomorrow i will test this. |
richtext | Hello Antonio,
It works great if I have one tab or the richedit on the first tab, but if I use more tabs and the richedit is on the third tab I get to see the ruler, but not the buttons with outline ...
Also, is it possible to translate the buttons above the rulers.
And can I set the richedit on readonly
Last, if I... |
richtext | [img:2emqp2j9]http://www.plantenkennis.com/downloads/RichEditScreen.png[/img:2emqp2j9] |
richtext | René,
> but if I use more tabs and the richedit is on the third tab I get to see the ruler, but not the buttons with outline ...
You have to do oGet:SetFocus() to each of them. Thats seems to paint it properly
I don't know if we can translate those buttons. We need to google about it
I am going to modify my example... |
richtext | René,
Here you have an example with two richedit controls. Notice that I had to increase a little the dimensions of the second one. Not sure why.
testrich.prg
[code=fw:8scojdrl]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveMa... |
richtext | René,
Googling for NSRulerView translation did not provided any results so I have posted a tech question in stackoverflow to figure out how to translate the controls texts above the richedit:
[url:2uc9nk27]http://stackoverflow.com/questions/36828027/how-to-change-the-language-of-the-nsrulerview-controls-of-a-... |
richtext | René,
I have implemented a new Class TMultiGet method SetEditable( lOnOff )
[url:vug5c2ev]https://developer.apple.com/library/mac/qa/qa1461/_index.html[/url:vug5c2ev]
I am emailing you the modified libs |
right mouseclick | Hello,
How can I make a contextmenu which opens on a rightclick of the mouse. I want to use it on a browse to run some functions on a selected row. |
right mouseclick | in the absence of tests, I think it works..
Saludos. |
right mouseclick | Dear René,
Please review this FiveMac commit:
[url:34x64so7]https://bitbucket.org/fivetech/fivemac/commits/fa33a142fbf0dfe06d2bf76b839226d4fa00807e[/url:34x64so7] |
right mouseclick | Hello Antonio,
Thanks, I will review this the next days. It looks like that is what I need. |
right mouseclick | Hello Antonio,
I have reviewed the modifications, but it does not work at this time. In browse there is no bRClicked method?
I made the command as follows:
[code=fw:3s1oo3kq]<div class="fw" id="{CB}" style="font-family: monospace;">oBrw:<span style="color: #000000;">bMouseDown</span> = <span style="color: #000000;">... |
right mouseclick | See last commit ( 03/06/2018 ) , browses.m change for handled rclick event .
I forgot to upload it in previous commit.
Sorry . |
right mouseclick | Hello Mastintin,
I see the modifications, but if I changes browses.m, must I build new libs?
And if so, how do i build these libs, I have never done this before, sorry. |
right mouseclick | try these libraries ( I recommend making a copy of yours in case they fail )
<!-- m --><a class="postlink" href="https://www.dropbox.com/s/7c5o9i1m0kn3vog/comprimido.zup.zip?dl=0">https://www.dropbox.com/s/7c5o9i1m0kn3v ... p.zip?dl=0</a><!-- m -->
please confirm if they work.
Regards |
right mouseclick | Hello Mastintin,
Thanks, these new libs gets the rihtclick popup menu just like I want.
Are there other addaptions included in these libs, requests from previous asked questions? |
right mouseclick | SCREENVISIBLEHEIGHT, SCREENVISIBLEWIDTH, STATUSBARHEIGHT, GETDOCKPOSITION ,GETDOCKSIZE ISDOCKHIDDENc is implemented in this libs.
Mailer is in libs , use mail app to send mails but not send files Attached ( sorry )
I have code to send mail With attached files but then do not send them automatically...
Automatizac... |
right mouseclick | Manuel,
many thanks for your help <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
right mouseclick | Hello Manuel,
Thanks a lot for all new functions implemented.
For the popup menu I would suggest the following addaption:
If the user rightclicks on a row in a browse, the pointer in that browse should go to the row where the user clicks. That way we can use the functions on that row. Now I first have to click norma... |
right mouseclick | the problem is that the position where the pop is show must be passed to the handle.
the code we have can pass up to 3 parameters:
function _FMH (hWnd, nMsg, hSender, uParam1, uParam2, uParam3)
We would have to add one more parameter ( I do not think it creates problems )
the parameters to pass would be xMousepo... |
right mouseclick | Hello Manuel,
I think your suggestion would serve well. That way we know on what nBrwrow the user clicks and we can perform an action on that row. I suppose we can send the nBrwrow and nBrwcol to the Showpop function? |
right mouseclick | New libs width changes...
see browse.prg in samples from repository.
new libs ...
<!-- m --><a class="postlink" href="https://www.dropbox.com/s/zr322rimlapkis5/librerias.zip?dl=0">https://www.dropbox.com/s/zr322rimlapki ... s.zip?dl=0</a><!-- m -->
Regards. |
right mouseclick | Hello Manuel,
Thank you very much for the new libs <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
The popup menu does exactly what I wants.
Also the WindowVisibleHeigth function is very good. Now the outline of all controls are perfect on all screens.
I also checke... |
right mouseclick | Hello Manuel,
Sorry, already found the solution:
[code=fw:1a9baaer]<div class="fw" id="{CB}" style="font-family: monospace;"><br />@ nScreenHeight<span style="color: #000000;">-60</span>, nRowPaint <span style="color: #0000ff;">BTNBMP</span> oBtnSelectie <span style="color: #0000ff;">OF</span> oWndMain FILENAME cResFi... |
right-click Menu for Control | hi,
when create a CLASS from TControl() i want to add a "right-click Menu"
i do found
[code=fw:2tut1icd]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">METHOD</span> LButtonDown<span style="color: #000000;">(</span><span style="color: #000000;">)</span><br /><span style... |
right-click Menu for Control | Use for this [b:33p6w9gv]DATA bRClicked[/b:33p6w9gv] |
right-click Menu for Control | [quote:11sc0vpj]but nothing for Right Button of Mouse[/quote:11sc0vpj]
TControl is derived from TWindow.
You need to search both TControl and TWindow classes.
You can see from TWindow class
[code=fw:11sc0vpj]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">METHOD</span> RButtonD... |
right-click Menu for Control | hi,
thx for Answer.
i´m not sure that i understand what you say
i do have use
[code=fw:3jprkd8s]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">METHOD</span> HandleEvent<span style="color: #000000;">(</span> nMsg, nWParam, nLParam <span style="color: #000000;">)</span... |
right-click Menu for Control | [quote:1wd7j7xm]
now you say i "just" need to "override"
Code:
METHOD RButtonDown ( nRow, nCol, nKeyFlags ) CLASS YourClass
so i need not to handle WM_RBUTTONDOWN <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: -->
[/quote:1wd7j7xm]
Yes.
Wherever the parents have... |
right-click Menu for Control | hi,
[quote="nageswaragunupudi":3nprckd4]Yes.[/quote:3nprckd4]
GREAT <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
[quote="nageswaragunupudi":3nprckd4]Use HandleEvent very sparingly when there is no otherway.[/quote:3nprckd4]
Ok, understood |
rilevazione computer in un aula | Caro Emg,
avendo un computer in cattedra che funge da server ( collegato ad un dominio denominato Lab2) come faccio a rilevare quanti client ci sono collegati e il loro nome da premettere che tutti i client sono collegati al dominio lab2, io vorrei far visualizzare i loro nomi in una tabella ( browse)
è difficile ?
... |
rilevazione computer in un aula | Non ne ho idea.
EMG |
rilevazione computer in un aula | in realta dovrei far visualizzare ciò che si vede se clicchiamo su risorse di rete in windows
mi sono scaricato alcuni programmi demo che in qualsiasi computer li metti automaticamente *vedono* i computer collegati e i loro indirizzi ip
Non voglio credre che in xharbour Noi non possiamo farlo
questi programmi usano ... |
rmake error | I am using FWH 7.01. I had that error when compiling report demo : Error :[code:1hpjsjyh]
h:\COMPILER\clipper\linkers\blinker\BIN\blinker.exe @h:\FWH\samples\report\RepDe
mo.lnk
__ __
(«») («») BLINKER DOS Extender and Windows Linker 7.00
⌂
___ B... |
rmake error | You are trying to use Blinker to build a FWH 32 bits exe! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->That make needs to be adapted to 32 bits and use Harbour and ilink32.exe |
rmake para win7 64 bits | Amigos venia usando el commando rmake de clip53 sin problema
hasta que quize compilar en win7 64 bits
y me arroja este error
Esta version de d:\cdata\clip53\bin\rmake artu no es compatible con la version
de windows que estas corriendo. Chequea tu sistema y mira que tu necesitas
una version de (32-bit) or x64 (64-bit) v... |
rmake para win7 64 bits | Arturo,
rmake.exe de Clipper es una aplicación de 16 bits y por eso no funciona en Windows 64. Desafortunadamente no esta disponible su código fuente por lo que no se puede recompilar en 32 bits.
la solución es que migres a un make de 32 bits como el make.exe de Borland, que es bastante parecido al rmake.exe
Tienes ... |
rmake para win7 64 bits | Gracias Antonio
No me habia percatado de esa carpeta que mencionas, modificare y probare |
rmake sample for xHarbour with Borland required | Freinds,Can I have a sample rmk file to be used with xHarbour & Borland. I am using FWH 8.08C:\FWH\Makes\Bormakes.zip is for usage with Harbour and most of the libraries does not exist in xHarbour folderFor Eg: echo $(HBDIR)\lib\hbrtl.lib + >> b32.bc echo $(HBDIR)\lib\hbvm.lib + >> b32.bcHBDIR=c:\xharbourBCDIR=C:\B... |
rmake sample for xHarbour with Borland required | Hello,Here is the sample :a => GO.BAT to start with => GO YOURPRG-------- GO.BAT --------------------------------------[code:ertaeade]
if not exist obj md obj
c:\bcc55\bin\make -f datfile.rmk
[/code:ertaeade]
---------------------------------------------
the DATFILE.rmk ( Make-File )
change the => PRG- and ... |
rmake with windows 7 | What do you do about such message :
C:\g_programs\programs\clipper\FWH\tdata\sitex>echo off
"hello IBM_machine "
This version of c:\g_programs\fwh\bin\RMAKE.EXE is not compatible with the versi
on of Windows you're running. Check your computer's system information to see wh
ether you need a x86 (32-bit) or x64 (64-bit)... |
rmake with windows 7 | You can not run 16 bits apps on Windows 64 bits... |
rmake with windows 7 | C:\programs\programs\clipper\FWH\tdata\sitex>c:\programs\fwh\bin\rmake
tmain.rmk
/xs700
This version of c:\programs\fwh\bin\RMAKE.EXE is not compatible with
the version
of Windows you're running. Check your computer's system information
to see whet
her you need a x86 (32-bit) or x64 (64-bit) version of the pro... |
rmake with windows 7 | Use DosBox, but that is not a real solution, just a workaround with many limitations... |
rmake with windows 7 | what about 32 bit make program |
rmake with windows 7 | No problem about 32 bits applications |
rmake with windows 7 | Could you please suggest a 32 bit make program and if possible specify its place to download it . |
rmake.exe 32 bit | Hi,
I'm looking for a 32 bit totally compatible to rmake.exe dated 1996.
I would like to avoid editing rmk files...
Any hints?
marco |
rmk file goes crazy. | I have several directories for separate products. All the rmk files are almost identical except for the prgs and obj's.
One directory compiles perfect.
Now another directory that I've been compiling over and over for weeks now comes up with a message
[b:3gj402q1]brcc32 /r cashteam.rc "brcc32" is not recognized as inte... |
rmk file goes crazy. | I discovered what makes the compiler call for brcc32. It occurs when I change the .rc file and then all recompile have the problem.
I certainly have no clue as to what the cause is or how to fix it. HELP |
rmk file goes crazy. | [quote="hag":pyygzkhb][b:pyygzkhb]brcc32 /r cashteam.rc "brcc32" is not recognized as internal or external program etc.[/b:pyygzkhb][/quote:pyygzkhb]
There is no "brcc32" in your make file.
EMG |
rmk file goes crazy. | Thats what is so crazy. If i compile my rc file it produces the message. It seems that the compiler is having a problem compiling the rc file.
If I use an old rc file no problem. |
rmk file goes crazy. | Enrico:
I don't have a copy of borland bcc55. If you know where i can get a copy i can try an re-install. It is baffleing. |
rmk file goes crazy. | [url:3e5j3d37]http://www.fivetechsoft.com/english/downloads.html[/url:3e5j3d37]
EMG |
rond box | how I can create A rondbox over a black box ? |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.