topic
stringlengths
1
63
text
stringlengths
1
577k
Bug in Transparent Group
Antonio, You mean it works without any modification. I also use W7. When my example run it show like below. [img:2wvegxwf]http://www.objekt.com.tr/fwh_test/test.png[/img:2wvegxwf] When my sample lost focus, it is ok.
Bug in Transparent Group
On dialogs the previous code also works. As I said earlier, the modification was necessary only for groups on windows.
Bug in Transparent Group
Hi, I have no problem with fwh 9.11's TGroup class in dialogs or my modified 9.12 TGroup Class. Thanks,
Bug in Transparent Group
Antonio ?
Bug in Transparent Group
Hakan, With FWH 9.12 and the posted example, here it works fine on Windows 7. Please post an example if you have a wrong behavior, thanks
Bug in Transparent Group
Hi Antonio, Unfortunately, my previous example has the same error in my computer. I have the latest fwh 9.12 (I think). I don't want to change TGroup class everytime that I downloaded fwh. How Can I solve my problem.
Bug in Transparent Group
Hakan, There is a FWH 9.12 31 December build. Please download it and test it. If there is something wrong, please provide an example to reproduce it, thanks <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
Bug in Transparent Group
Antonio, Result is the same. my sample is below. [code=fw:21j6f7ni]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">'fivewin.ch'</span><br /><br /><br /><span style="color: #00C800;">function</span> Main<span style="color: #000000;">...
Bug in Transparent Group
Hakan, You can do it this way: [code=fw:u4rmqdvi]<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: #000000;">&#40;</span><span style="...
Bug in Transparent Group
May I propose the following change to the EraseBkgnd method of TGroup? [code=fw:3jf7wya1]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">METHOD</span> EraseBkGnd<span style="color: #000000;">&#40;</span> hDC <span style="color: #000000;">&#41;</span> <span style="color: #00C800;"...
Bug in Transparent Group
Rao, If we do: [code=fw:l0o18geq]<div class="fw" id="{CB}" style="font-family: monospace;"><br />&nbsp; <span style="color: #00C800;">if</span> ::<span style="color: #000000;">oWnd</span>:<span style="color: #000000;">IsKindOf</span><span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">'TDIALOG'</sp...
Bug in Transparent Group
Thanks Antonio, But I have lots of groups in my app. It will takes lots of time for me. [quote="Antonio Linares":2cdl70s1]Hakan, You can do it this way: [code=fw:2cdl70s1]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">'fivewin.ch...
Bug in Transparent Group
>> But I have lots of groups in my app. It will takes lots of time for me. >> Better to modify the TGroup class. Not your program code.
Bug in Transparent Group
Hi Rao, I have done it since it was changed. But I regularly update fwh every month. I don't want to check it that it was changed or not in every download. I prefer to use unchanged class files from original lib files. thank anyway.
Bug in WriteComm() [Fixed]
The following sample freezes if you change 32767 to 32768. Any ideas? [code=fw:2pm07gjp]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"Fivewin.ch"</span><br /><br /><br /><span style="color: #00C800;">FUNCTION</span> MAIN<span styl...
Bug in WriteComm() [Fixed]
Enrico Look <!-- m --><a class="postlink" href="https://books.google.es/books?id=kjyIOLYr7yMC&pg=PA299&lpg=PA299&dq=WRITECOMM&source=bl&ots=CNt5P_wPRV&sig=-blZ-EdPdD7OMMJG2nf8c9WsBAc&hl=es&sa=X&ei=yEYxVfPPO8Pj7QaoroDYDg&ved=0CE0Q6AEwCQ#v=onepage&q=WRITECOMM&f=false">https://books.google.es/books?id=kjyIOL ... MM&f=fals...
Bug in WriteComm() [Fixed]
Cristobal, thank you. EMG
Bug in bMMoved
In the following sample, nCol is correctly updated while moving the WINDOW but nRow is always zero:[code:1o5m8rxm]#include "Fivewin&#46;ch" FUNCTION MAIN&#40;&#41; LOCAL oWnd DEFINE WINDOW oWnd; FROM 10,10 TO 20,70 SET MESSAGE OF oWnd oWnd&#58;bMoved = &#123; | nRow, nCol | oWnd&#58;Set...
Bug in bMMoved
you write oWnd:bMoved =... my by oWnd:bMMoved
Bug in bMMoved
bMoved is evaluated when the window is moving while bMMoved is evaluated when the mouse is moving. They are two different events.EMG
Bug in bMMoved
Enrico,You are right, nRow shows as zero. But curiously FWH source code seems to be fine. From the Windows API docs:WM_MOVE xPos = (int) LOWORD(lParam); // horizontal position yPos = (int) HIWORD(lParam); // vertical position And this is the FWH code:[code:19h3pm5m] case nMsg == WM_MOVE return &...
Bug in bMMoved
And nLoWord() source code seems to be fine.We have a mistery <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
Bug in bMMoved
Enrico,Fixed. It was a little bug in the low level source code. I email you the fixed lib, thanks
Bug in bMMoved
It seems that the code you cited is for XPP only, if I'm not wrong:[code:1m68lt1g]#ifdef __XPP__ METHOD HandleEvent&#40; nMsg, nWParam, nLParam &#41; CLASS TWindow[/code:1m68lt1g]EMG
Bug in bMMoved
[quote="Antonio Linares":3683wphd]Enrico, Fixed. It was a little bug in the low level source code. I email you the fixed lib, thanks[/quote:3683wphd]Thank you!EMG
Bug in bMMoved
[quote="Antonio Linares":4ia2vlv1]Enrico, Fixed. It was a little bug in the low level source code. I email you the fixed lib, thanks[/quote:4ia2vlv1]It works fine! Many thanks.EMG
Bug in bMMoved
This was already reported 9 october 2005 , also a error in fivewin.chON MOVE from dialog or window Hello, Trying to use ON MOVE , you can try Code: # include "fivewin.ch" FUNC MAIN LOCAL oWnd DEFINE WINDOW oWnd FROM 10,10 TO 20,70 SET MESSAGE OF oWnd TO "TEST ON MOVE" CLOCK DATE KEYBOARD NOINSET oWnd:bMoved := {|nRow,n...
Bug in brush gradient?
Another erratic problem: sometimes the dialog with the gradient suddenly becomes transparent (never saw under XP, only under Vista and Win7). Any ideas? EMG
Bug in brush gradient?
Can you make it more clear please? Does the dialog suddenly behave like a transparent dialog? Or the entire dialog becomes transparent showing the background behind the dialog like when using null brush? Can you post a sample code?
Bug in brush gradient?
[quote="nageswaragunupudi":ob5iwxg5]Can you make it more clear please? Does the dialog suddenly behave like a transparent dialog? Or the entire dialog becomes transparent showing the background behind the dialog like when using null brush?[/quote:ob5iwxg5] Yes, like null brush. [quote="nageswaragunupudi":ob5iwxg5]Can...
Bug in brush gradient?
Enrico, I'm using VISTA. I changed my Background-function and it works on Windows and Dialogs without Problem. As well it works perfect together with TFolderex-tabs. Maybe have a look at it ( extra Gradient-function ). [code=fw:2kbhn1ag]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="col...
Bug in brush gradient?
[quote="ukoenig":3fo7vusn]Enrico, I'm using VISTA. I changed my Background-function and it works on Windows and Dialogs without Problem.[/quote:3fo7vusn] Yes, I know. I'm unable to reproduce the problem too. But my clients do and they sent me a screenshot of the problem. EMG
Bug in brush gradient?
Enrico, Please post the screenshot if possible, thanks <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
Bug in brush gradient?
Here it is: [img:3v8k13vu]http&#58;//www&#46;emagsoftware&#46;it/Transparent&#46;jpg[/img:3v8k13vu] EMG
Bug in brush gradient?
Mr. EMG Can we also know the FWH version used to build the application? I expect that the brush was created in the ON INIT clause using the logic that was popular till gradient brushes were introduced. I have a feeling that the way the gradient brushes were created in the init clause and the way the TBrush class comp...
Bug in brush gradient?
No, I'm using the present implementation as available in latest FWH release. EMG
Bug in brush gradient?
[quote="Enrico Maria Giordano":3itnxq10]No, I'm using the present implementation as available in latest FWH release. EMG[/quote:3itnxq10] Then we need to do more extensive tests with a number of gradient dialogs in one application. I suggest let us give ourselves some time for this.
Bug in brush gradient?
Ok, no problems. EMG
Bug in brush gradient?
I do not know if you need to help I use a gradient (first attempts), and sometimes I was going ... Then I removed the "IF" and now all ok STATIC FUNCTION GradBrush( oDlgK,difc,colfinA,colfinB,tgr ) local hDC, hBmp, hBmpOld,obrush * if Empty( oDlgK:oBrush:hBitmap ) hDC = CreateCompatibleDC( oDlgK:GetDC() ) ...
Bug in brush gradient?
Any news? EMG
Bug in buttonbar
In the following sample please try to move the mouse over the button and you will see that the text will move down (and also the bitmap, if present): [code=fw:2u29w1hk]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"Fivewin.ch"</spa...
Bug in buttonbar
Enrico, I tested Buttonbar, because of the new Font-changes. I couldn't notice this effect. The effect of Your specification is included in VTitle using > ANIMATE < on Mouse-Caption. Best Regards Uwe <!-- s:roll: --><img src="{SMILIES_PATH}/icon_rolleyes.gif" alt=":roll:" title="Rolling Eyes" /><!-- s:roll: -->
Bug in buttonbar
You have to use the latest FWH release (9.09) in order to see the problem. It wasn't there in the previous releases. EMG
Bug in buttonbar
Enrico, I found the Reason for it. With the new FWH 9.09, You can define [color=#FF0000:r19etpmu]Fonts for each Button [/color:r19etpmu]of a Buttonbar. It happens only with a not defined Button-Font once on Mouse-Caption. [img:r19etpmu]http&#58;//www&#46;pflegeplus&#46;com/pictures/Buttonb1&#46;jpg[/img:r19etpmu] T...
Bug in buttonbar
This seems a possible fix (in paint method of TBtnBmp): [code=fw:1qb8wl0z]<div class="fw" id="{CB}" style="font-family: monospace;">   <span style="color: #00C800;">if</span> ::<span style="color: #000000;">lBarBtn</span><br />      ::<span style="color: #000000;">l2007</span> = ::<span style="color: #000000;">oWnd</s...
Bug in buttonbar
I can confirm this exact same problem. I am using default fonts, and I notice that not all buttons change position. If you move the cursor across the full button bar, all icons will then line up properly. Pehaps this can be resolved in 9.10 ?
Bug in cGetFile()
This is a sample (try to select text.txt): [code:3mn2i1xt]#include "Fivewin&#46;ch" FUNCTION MAIN&#40;&#41; LOCAL cDir &#58;= REPLICATE&#40; "X", 128 &#41; LMKDIR&#40; cDir &#41; MEMOWRIT&#40; cDir + "\" + "test&#46;txt", "This is a test" &#41; ? CGETFILE32&#40; "All files &#40;*&#46;*&#41;|*&#46...
Bug in cGetFile()
I confirm: <!-- m --><a class="postlink" href="http://fivetechsoft.com/forums/viewtopic.php?t=1843&highlight=cgetfile">http://fivetechsoft.com/forums/viewtopi ... t=cgetfile</a><!-- m --> BTW, in your source you use cGetFile32. Roman
Bug in cGetFile()
Ops, sorry. Anyway, same behaviour. EMG
Bug in cGetFile()
Hello! [quote:3dyd4cu3]... while the maximum length allowed by the file system is 256.[/quote:3dyd4cu3] "How can I use path names longer than 255 characters?" <!-- m --><a class="postlink" href="http://www.windowsitpro.com/Article/ArticleID/14607/14607.html">http://www.windowsitpro.com/Article/Art ... 14607.html</a><...
Bug in cGetFile()
[quote="EnricoMaria":2mvwg39g]The problem seems to be that the memory allocated for the selected path+filename is limited to 128 bytes while the maximum length allowed by the file system is 256.[/quote:2mvwg39g] Replacing all 128 to 256 and all 127 to 255 in getfile.c solves the problem. EMG
Bug in cGetFile()
Enrico, Thanks! <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) -->
Bug in cGetFile()
The maximum number of characters in a full path, including the drive letter, colon, leading backslash, file name, and terminating null character, is 260.
Bug in cGetFile()
I confirm, you are right. EMG
Bug in cGetFile()
In the following sample, if you select a file in another directory, the next time you run the sample, the other directory is shown instead of the current directory. Any workaround? [code=fw:17ivujbn]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="co...
Bug in cGetFile()
Enrico, We are using the flag OFN_NOCHANGEDIR: [url:oxuobs33]https&#58;//msdn&#46;microsoft&#46;com/en-us/library/windows/desktop/ms646839(v=vs&#46;85)&#46;aspx[/url:oxuobs33] [quote:oxuobs33]Restores the current directory to its original value if the user changed the directory while searching for files. This flag i...
Bug in cGetFile()
Most likely. EMG
Bug in cGetFile()
Is there any fix for this? I want a certain default directory but I can't rely on it. I created an Outlook signature program and I expect it to default to the correct user profile area. If user changes drive/folder then the next time the user cannot updated or add signature correctly. Try telling user to change c:\User...
Bug in cGetFile()
I followed the link to openfilename in msdn and I read that OFN_NOCHANGEDIR does not work for GetOpenFIlename see quote below. Is there another way? [quote:1v6t7quk]Restores the current directory to its original value if the user changed the directory while searching for files. This flag is ineffective for GetOpenFil...
Bug in cGetFile()
A possible solution is to save the current directory using GetCurDir() before calling cGetFile() and restore it later using SetCurDir()
Bug in cGetFile()
This would not solve the problem. cGetFile() would continue to show the changed directory. Is not the current directory of the application that changes, is the directory shown by cGetFile(). Anyway, I just tried your suggestion and it doesn't work. EMG
Bug in cGetFile()
I saw the solution googling for info about it but I had not tried it, so many thanks Enrico for your feedback Stackoverflow seems the right way to look into for a possible solution
Bug in cGetFile32() (no bug)
I have try to use the cGetfile32() Function and it will not work. The Function cGetfile() Works but not the 32 bit Version. When I call the cGetfile32() Function it will display the Dialog Screen and the Screen works and Displays, but when you try to pick a file it will not return to the calling program leaveing the ...
Bug in cGetFile32() (no bug)
Jim, cGetfile32() is just for FiveWin 16 bits. For FWH 32 bits you have to use cGetFile().
Bug in checkbox in folder (dot border) with themes (fixed)
Hola Antonio, este codigo muestra un error que tiene hace tiempo fwh con los checkbox cuando estan contenidos en folder, si empiezas a presionar la tecla tab para moverte entre los controls del dialogo miraras que la primera vez quel el chekbox obtenga foco no mostrara el tipico borde punteado, la siguiente ves lo t...
Bug in checkbox in folder (dot border) with themes (fixed)
caba aclarar con fwh 2.6, xharbour y harbour, bcc55. una imagen del problema [url=http&#58;//img274&#46;imageshack&#46;us/my&#46;php?image=bug5ur&#46;jpg:3kkvow0i][img:3kkvow0i]http&#58;//img274&#46;imageshack&#46;us/img274/4716/bug5ur&#46;th&#46;jpg[/img:3kkvow0i][/url:3kkvow0i] salu2 carlos vargas[/url]
Bug in checkbox in folder (dot border) with themes (fixed)
Carlos, El build de Febrero de FWH soluciona este problema. Hemos tardado en cazarlo, pero al final lo hemos conseguido <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) -->
Bug in checkbox in folder (dot border) with themes (fixed)
Gracias Antonio, <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> ya empezaba a temer que lo hubieras olvidado, o que estuviera dificil la cosa <!-- s:-( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":-(" title="Sad" /><!-- s:-( -->, no es posible modificar los fuentes ? ...
Bug in checkbox in folder (dot border) with themes (fixed)
Carlos, En FWH 2.7 Febrero se han implementado muchos cambios, sin embargo esto puede solucionarlo, En el método Colors( hDC ) de checkbox y radio, hay que implementar este cambio: [code:3ni5wgpo] METHOD Colors&#40; hDC &#41; CLASS &#46;&#46;&#46; &#46;&#46;&#46; if IsAppThemed&#40;&#41; DrawPBack&#40;...
Bug in checkbox in folder (dot border) with themes (fixed)
gracias antonio, funciono de esta forma (solo en xharbour) [code:pscbmbt1] &#46;&#46;&#46; /*al inicio de la aplicación*/ EXTEND CLASS TRADIO WITH METHOD Colors EXTEND CLASS TCHECKBOX WITH METHOD Colors &#46;&#46;&#46; [/code:pscbmbt1] [code:pscbmbt1] /*en cualquier parte &#58;-&#41;*/ STATIC FUNCTION Colors&#40; h...
Bug in checkbox in folder (dot border) with themes (fixed)
Antonio, si bien se corrigio el problema de borde puntedo en el checkbox cuando tienes temas aplicados en winxp, cuando no tiene tema aparece dentro de la region del borde un color blanco de fondo. <!-- s:-( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":-(" title="Sad" /><!-- s:-( --> salu2 carlos vargas
Bug in checkbox in folder (dot border) with themes (fixed)
Carlos, Hemos probado el ejemplo samples\TestFold.prg con y sin temas y está bien. De todas formas hemos implementado una serie de cambios que publicaremos en el build de Marzo.
Bug in clausula WHEN
Miren te comportamiento: DEFINE DIALOG oWnd SIZE 300,300 @1,1 BUTTON oBtn ACTION "HOLA" OF oDlg oBtn:Disable() ACTIVATE DIALOG oDlg Se puede observar que el boton es desactivado. Ahora, si le añadimos la clausula WHEN al boton, ya NO ESTA DISABLE() No me digas que lo meta en el ACTIVATE , porque es ya ilegible de...
Bug in clausula WHEN
Rafa, Antes del ACTIVATE el botón no tiene un handle válido de control, por lo que no se puede disable
Bug in clausula WHEN
[quote="Antonio Linares":20t4xyw4]Rafa, Antes del ACTIVATE el botón no tiene un handle válido de control, por lo que no se puede disable[/quote:20t4xyw4] Antonio, no te has percatado que si no tienes la clausula WHEN SI QUE FUNCIONA!!! Si le pones la clausula NO FUNCIONA... ¿ capichi.... ? jejeje
Bug in clausula WHEN
Rafa, Al enviarle el mensaje Disable() desde PRG se le está enviando un mensaje a bajo nivel con SendMessage() de Windows, que entrá en la cola de mensajes de Windows. Depende de los mensajes pendientes que llegue ó no a procesarse, pues antes tiene que tener un handle valido No es fácil de explicar <!-- s:-) --><img...
Bug in clausula WHEN
[quote="Antonio Linares":2wbfomtu]Rafa, Al enviarle el mensaje Disable() desde PRG se le está enviando un mensaje a bajo nivel con SendMessage() de Windows, que entrá en la cola de mensajes de Windows. Depende de los mensajes pendientes que llegue ó no a procesarse, pues antes tiene que tener un handle valido No es f...
Bug in clausula WHEN
Si haces el <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->isable() desde el ON INIT te aseguras de que tiene un handle válido y que el mensaje le va a llegar al control
Bug in clausule COLORLEFT
At moment for new implementation of your code and only if you use clausule COLORLEFT <color> If you use COLORLEFT <color1>, <color2>, not change Please, change in MENU.CH [quote:2rr7lotn] [ <oObjMenu> := ] MenuBegin( <.popup.>,, <oCtrl>, <.l2007.>, <.l2010.>,,; //<.lUnicode.> <nClrMenu>, <n...
Bug in combobox
In the following sample it's impossible to move the focus from the combobox using TAB o ENTER: [code:16a0553n]#include "Fivewin&#46;ch" FUNCTION MAIN&#40;&#41; LOCAL oDlg LOCAL cVar &#58;= SPACE&#40; 20 &#41; DEFINE DIALOG oDlg @ 1, 1 COMBOBOX cVar; ITEMS &#123; "First", "Second", "Thi...
Bug in combobox
Enrico, Indeed, and it is not the only one. In the FWH version prior to 7.09, one could choose an item in a combobox, using the first character. In your example, choosing used to be possible by typing a "F", "S" or "T". Since FWH version 7.09, that isn't possible anymore. Therefor I still use the combobox class of F...
Bug in combobox
Enrico, Fixed, several changes are required: Class TGet Method KeyChar: [code:28689k8j] if &#58;&#58;bKeyChar != nil if Eval&#40; &#58;&#58;bKeyChar, nKey, nFlags, Self &#41; == 0 return 0 endif endif [/code:28689k8j] Class TComboBox: [code:28689k8j] &#58;&#58;oGet&#58;bKeyChar ...
Bug in combobox
Michel, The problem is that following the advise of a FW user, incremental search was implemented on comboboxes and that browse backwards compatibility. Should we avoid the incremental search feature and restore Windows default behavior there ? Or allow the incremental search as an optional clause ? <!-- m --><a clas...
Bug in combobox
My personal opinion is that by default we should provide Windows default behavior. That is how generally users expect any windows software to behave. Incremental search has its own benefits and can be offered as an option. For consideration
Bug in combobox
Antonio, I agree with nageswaragunupudi, windows standard behavior should be the standard of fivewin. Enhanced incremental search should be optional, it can be a very useful feature. In TCombobox, where must the patch be inserted ?
Bug in combobox
Stefan, Lines 247 and 320
Bug in combobox
Ok, thanks
Bug in comm.c
The following sample freezes with the latest FWH (it worked ok with a previous FWH release): [code:nsmajxg0]#include "Fivewin&#46;ch" FUNCTION MAIN&#40;&#41; LOCAL oDlg LOCAL oGet, cTxt &#58;= "" LOCAL nCom DEFINE DIALOG oDlg; SIZE 500, 500; TITLE "Terminal" @ 0, 0 GET ...
Bug in comm.c
Enrico, FWH COMM functions are still buggy. They should not be used <!-- s:( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":(" title="Sad" /><!-- s:( -->
Bug in comm.c
It maybe but it seems to be worst in the latest release. I can send you the latest working comm.c if you want. EMG
Bug in comm.c
Enrico, Yes, please email me the comm.c that was working for you. Thanks.
Bug in comm.c
Enrico, Yes, please replace the actual comm.c with the previous one. We thought it was going to provide a better functionality, but no, things get worse. I don't want to blame MS but I can't understand how they don't provide this functionality built-in as it was on 16 bits, same as there is no a DrawBitmap() for a GU...
Bug in comm.c
[quote="Antonio Linares":10dgvm95]Enrico, Yes, please replace the actual comm.c with the previous one. We thought it was going to provide a better functionality, but no, things get worse.[/quote:10dgvm95] I already done so. <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> ...
Bug in comm.c
Enrico, > I would prefer the current APIs that don't need any additional component. Me too. Anyhow, lets work to properly implement COMM support for 32 bits.
Bug in filename.prg
The functions cFileNoPath() and cFileSubDir() have been changed so now they don't return uppercase string anymore. Can I revert that changes? EMG
Bug in folder
When I delete a page from the folder the groupbox in one of the reamaining pages bug's Before delete = Right <!-- m --><a class="postlink" href="http://www.imagebam.com/image/37952535768261">http://www.imagebam.com/image/37952535768261</a><!-- m --> After delete = Wrong <!-- m --><a class="postlink" href="http://www....
Bug in folder
Sambomb, Your posted pictures are not visible. Please repost them, thanks > Other "bug" is that the folder class don't have a visual effect to show if a page is enabled or not. > It is not a bug. The Windows API does not provide it.
Bug in font management? [Solved]
In the sample below, uncommenting the first PROMPT clause the font is reverted to the default one: [code=fw:1gqduvoh]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"Fivewin.ch"</span><br /><br /><br /><span style="color: #00C800;">F...
Bug in font management? [Solved]
Enrico, I think it is not a font bug but a TbtnBmp bug. As there is a prompt in the first button, a default font is created, and then on the next button the new used font is not taken into account. I need to finish the new Class TBtnBmp Method Paint (I am reorganizing it) and it will be much easier to solve it.
Bug in font management? [Solved]
Enrico, Please look for hOldFont in Class TBtnBmp where it is assigned and change it this way: hOldFont = SelectObject( ::hDC, ::oFont:hFont ) That solves it <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->