topic
stringlengths
1
63
text
stringlengths
1
577k
?hange the color of a window fragment
[code=fw:11zldhal]<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="color: #000000;">&#41;</span><br...
?hange the color of a window fragment
Thank you, this is what you need
?ompile with FWH1507
Hello, I tried to compile my program with FWH1507/BCC7/xHarbour but I get the error: Fivewin.ch (1918) Error E0004 STATIC declaration follows executable statement This line inFiweWin.ch described the static variable: static aFwStack := {} This error appears only if the program has SET PROCEDURE TO .. What is it ?
?ompile with FWH1507
You need to keep #include "fivewin.ch" at the very top of the program
?ompile with FWH1507
In all files of my program fiivewin.ch keep the first row and to version 1507 problems with the compilation was not
?ompile with FWH1507
Please comment out lines 1918 to 1923 in your copy of fivewin.ch
?ompile with FWH1507
Thank's
@ SAY GET without resources
Hello. I have no example about this and if I write @ 10,10 say "Nombre " GET mRaso @ 20,10 say "Calle " GET mCalle READ I get the fields one over the other. Note: I have never used resources and have no resources editor
@ SAY GET without resources
You should use separate @ row, col commands for SAY and GET. EMG
@ SAY GET without resources
Jose, Please review samples\tutor05.prg source code. READ is not used in FiveWin.
@ SAY GET without resources
[quote="josevalle":16q024qh]Note: I have never used resources and have no resources editor[/quote:16q024qh] Please review the PRGs provided in samples directory that also have a RC file with the same name. Resources use is easy and it will speed up very much your development. You may download the free Pelles C resour...
@ SAY GET without resources
With the Pelles resource editor I have changed the names and the sizes. But it also chages some things in the header of the file. I have a workaround, just copy from the new files what refers to the dialog and paste in you tutor04.rc. Thanks Antonio.
@ ...... listbox
Hello, I'm new to FiveWin and i got into trouble with listboxes: I have a program with this code: [code:1kd1u9xq] #include "FWCE&#46;ch" REQUEST DBFCDX STATIC oWnd, oBrw function Main&#40;&#41; USE &#40; CurDir&#40;&#41; + "\dbfs\pedido" &#41; alias pedido VIA "DBFCDX" desenhar_janela&#40;&#41; ACTIVATE ...
@ ...... listbox
Joaquim It is not the correct way to do it Try to code something like the ollowing Define window first, Open the file Define the listbox object Activate the window This is a workig sample DEFINE WINDOW OWND1 TITLE "A Faire" DEFINE FONT aFONT NAME "TAHOMA" SIZE 0,-12 // HideKeyboard() @ 0, 0 LISTBOX oBrw ; ...
@ ...... listbox
Thank you Richard, your reply was very helpful. But the real problem was in something that i didn't said in the first post: Before the grid was displayed, the program called a function that opened another table, and because i didn' put the clause 'new' in 'use' (i'm a VFP man - i'm used to 'use table in 0') the progra...
@ SAY
I have an issue with @ SAY that I don't quite understand. Using it is not too difficult, and I get it to update and show on the screen without issue, which is controlled by navigation through and xbrowse. The problem I have is that each time the text is changed and the screen gets refreshed, text previously displayed...
@ SAY
Robb, oSay:SetText( "new text" ) The Method SetText() is implemented in Class TWindow so it can be used on dialogs and most controls <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
@ SAY
Antonio, I sent you an email with a small screen shot of what I see. I am using SayText() to update the text, it is the clearing of previously written text that is eluding me. Robb
@ SAY
If I remember correctly, the new text has to be longer than the old text--if needed add spaces.James
@ SAY
I just remembered that I usually use something like:padr(cNewText,30)Substitute 30 with whatever your maximum length is.
@ SAY
Robb, This example seems to work fine here: (right click on the dialog to change the text) [code=fw:18m1pyic]<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...
@ SAY WITH GET COLOR clause for SAY Only
Dear Rao Sir , I am using below SAY Statement with GET Control , need COLOR clause to SAY only not GET. as something like given below ...! How we can achieve this ? [code=fw:2lc8mri3]<div class="fw" id="{CB}" style="font-family: monospace;"><br />   @ <span style="color: #000000;">10</span>,<span style="color...
@ SAY WITH GET COLOR clause for SAY Only
Please try after creating the SAY/GET [code=fw:35hgelrs]<div class="fw" id="{CB}" style="font-family: monospace;">oGet:<span style="color: #000000;">oSay</span>:<span style="color: #000000;">SetColor</span><span style="color: #000000;">&#40;</span> foreclr, backclr <span style="color: #000000;">&#41;</span></div>[/code...
@ SAY WITH GET COLOR clause for SAY Only
Dear Rao Sir , Thank you very much...! Thanks Shrihdar
@ SAY @ GET COORDINATES
I am trying to convert .RC dialogs to .PRG windows. I have always used resources in the past, and have very nicely designed, but complex, screens. I am converting because 1) I want to use a Ribbon Bar that only seems to work with the @ x,y coordinates and is not friendly to resource dialogs, and 2) All examples now...
@ SAY @ GET COORDINATES
+1
@ SAY @ GET COORDINATES
[quote="TimStone":wq78e7gt]I am trying to convert .RC dialogs to .PRG windows. I have always used resources in the past, and have very nicely designed, but complex, screens. I am converting because 1) I want to use a Ribbon Bar that only seems to work with the @ x,y coordinates and is not friendly to resource dialo...
@ SAY @ GET COORDINATES
How ? I tried and it failed ? I asked for a sample here and no one answered.
@ SAY @ GET COORDINATES
You only need to create the ribbon bar in the ON INIT clause of the ACTIVATE DIALOG command. EMG
@ SAY @ GET COORDINATES
Right now I have a CLASS, and a METHOD is used to provide a full edit capability. I use a button bar, and all of the code is in that method. Are you saying to extract the button bar code, and create a FUNCTION or METHOD to create a Ribbon Bar for the ON INIT ? I sure wish this had documentation, or Samples ... but...
@ SAY @ GET COORDINATES
Please search the FWH dir for *.prg files containing the word RIBBON and you will find many samples. Anyway, the technique is very simple: [code=fw:296p4su2]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #0000ff;">ACTIVATE</span> <span style="color: #0000ff;">DIALOG</span> oDlg;<br />&n...
@ SAY @ GET COORDINATES
Thank you. I first worked with some stand alone samples and they were ok. However, when I went in to do it within the program, I got very strange results. I will spend some more time, but I think the problem may be that I am addressing a Method within a class that displays a complex DIALOG, and then trying to overla...
@ Say transparent on Windows
I rarely use @ Say / @ Get, but I'm trying to do something on a Window. I use the following line to display a string: @ 40,285 SAY vDate OF oWndc PIXEL SIZE 315,20 CENTER COLOR CLR_BLACK UPDATE I have to use the CLR_BLACK to see the text. However, I want to use a Brush on the window, and when I do, it shows a wh...
@ Say transparent on Windows
[code:19g21o8z]#include "Fivewin&#46;ch" FUNCTION MAIN&#40;&#41; LOCAL oWnd LOCAL oSay, oBru DEFINE BRUSH oBru STYLE BORLAND DEFINE WINDOW oWnd BRUSH oBru ACTIVATE WINDOW oWnd; ON PAINT oWnd&#58;Say&#40; 100, 100, "This is a test", CLR_RED, , , &#46;T&#46;, &#46;T&#46; &#41; ...
@ Say transparent on Windows
This is a problem that I have long thought could be easily solved by making all SAYs trasparent by default. I can't think of any reason why anyone would want them not transparent. If they were transparent then we wouldn't have to resort to all these workarounds. James
@ Say transparent on Windows
That code might work in a small sample, but to display a screen full of @ Say's makes it very awkward and hard to trace problems that might arise. So at least I'm not totally out of the loop here ... and I agree with James.
@ Say transparent on Windows
Honestly, I can't see so many differences between a series of @ SAY and a series of oWnd:Say(). EMG
@ Say transparent on Windows
When I put together code, its preferably in order, so the say would be one line, and the get right below it. It makes it easier to remember what each get is for, and it makes it easier to make quick formatting changes ( moving a say and get around on the window ). Here I could have to put a group of say commands all ...
@ Say transparent on Windows
Tim, Have you tried just putting a non-modal dialog (without borders) on the window and putting the controls on it? You could use the same brush on the dialog as the window so it would be invisible. James
@ Say transparent on Windows
[quote="TimStone":kia13vz0]When I put together code, its preferably in order, so the say would be one line, and the get right below it. It makes it easier to remember what each get is for, and it makes it easier to make quick formatting changes ( moving a say and get around on the window ). Here I could have to put a...
@ Say transparent on Windows
[quote="TimStone":18skvdbu]I really don't see why we would want the say framed in a white background anyway ( or any color for that matter ).[/quote:18skvdbu] I agree. EMG
@ Say transparent on Windows
I guess most users of FWH would agree. Will Mr Antonio consider making Says transparent by default and with background color by choice? Would such a change break the existing code of many programs or is it against windows default behaviour ? Another simple doubt. When oSay:lTransparent works well on Dialog why does...
@ Say transparent on Windows
James, That is exactly what I tried originally ( early thread ) but I couldn't get the dialog to position correctly. There was a control at 10,10 on the window ( that only worked on windows ) and the dialog just wouldn't position around that ...
@ Say transparent on Windows
Tim, >There was a control at 10,10 on the window ( that only worked on windows ) and the dialog just wouldn't position around that ... What control? And what do you mean "around that?" Did you mean "next to?" Could we see a small sample showing the problem? James
@ Say transparent on Windows
Please check your email
@ Say transparent on Windows
Hey guys, I vote for standard a "TRANSPARANT" command in the SAY command. So you simply need to add "TRANSPARANT" to all your SAY's. Its the most "backward" compatible solution I think. Patrick
@ Say transparent on Windows
Well then we would like to have Says transparent both on dialogs and windows if TRANSPARENT clause is used in the command, without having to put oWnd;Says in the ON INIT clause. Is that what all would like ?
@ xy TSay con Transparencias
Cambios a la clase TSay para las transparencias... Mod TSay class for transparents este cambio viene del hecho que exista la clausula TRANSPARENT en el REDEFINE del SAY y no en @ x,y SAY This change comes from the fact that there is a clause TRANSPARENT in REDEFINE SAY and not in @ x, y SAY Comenzamos/Start Este Link...
@ xy TSay con Transparencias
Gracias Tocayo.... Estaba buscando algo parecido a esto desde hace tiempo, tenia pensado hacer unas modificaciones a la clase TSay, pero por falta de tiempo lo deje para otra ocasión... Bajo y hago las modificaciones mencionadas y comento como me fue... Muchas gracias, me ahorraste algo de tiempo...
@ xy TSay con Transparencias
Gracias por tu respuesta, Es bueno saber que alguien mas lo prueba y que estos cambios se puedan depurar, en caso de ser necesario y estar atentos a posibles mejoras planteadas de los mismo
@ xy TSay with Transparent
Cambios a la clase TSay para las transparencias... Mod TSay class for transparents este cambio viene del hecho que exista la clausula TRANSPARENT en el REDEFINE del SAY y no en @ x,y SAY This change comes from the fact that there is a clause TRANSPARENT in REDEFINE SAY and not in @ x, y SAY Comenzamos/Start Este Link...
@Adhemar - mod harbour installer
Hallo Adhemar, I would like to ask you if you are still updateing for the mod harbour installer and if so, what is the current link. Thank you in advance Otto
@Adhemar - mod harbour installer
Dear Otto Mod_Harbour con Apache24 Here the Link [url:1t7npljr]https&#58;//drive&#46;google&#46;com/file/d/1CJkhqKLLAxpoGY6TXhrcE1Jn8gj287oS/view?usp=sharing[/url:1t7npljr] Updated to 30/06/21 Regards
@Uwe Install program for mod harbour
Wow !!! Great work Uwe !!! Just one observation: We should not have together mod_harbour and FWH in the same install app. As mod_harbour is free and FWH is commercial. Users may think that both products are related and they are not. Besides that, hats off for your superb work <!-- s;-) --><img src="{SMILIES_PATH}/i...
@Uwe Install program for mod harbour
Antonio, separated. <!-- s:idea: --><img src="{SMILIES_PATH}/icon_idea.gif" alt=":idea:" title="Idea" /><!-- s:idea: --> I added 2 new group-buttons Fivewin-installs can be selected with a extra button now. Thanks to Otto he gave me the idea to start with the tool. <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin....
@Uwe Install program for mod harbour
really nice! thank you so much <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
@Uwe Install program for mod harbour
Lieber Uwe, ich möchte mich heute mit einer Bitte an dich wenden. Vielleicht kannst du uns "Fivewinnern" einen professionellen Installer für mod Harbour machen. Derzeit sieht das ein wenig simpel aus. Mit lieben Grüßen Otto [img:3paxc16y]https&#58;//mybergland&#46;com/fwforum/installmod&#46;jpg[/img:3paxc16y] Download...
@Uwe Install program for mod harbour
Otto, no problem, what is the optics do You like maybe a window like that with round corners and border stays on top and can have any color and bordersize ( with transparent level ) The border shown on any position, Buttons can have a 3D-look ( using special images ) [img:1b9ca8gb]http&#58;//www&#46;pflegeplus&#...
@Uwe Install program for mod harbour
Dear Uwe, thank you for helping. Can you please have a look at the modharbour.org web page. Maybe you can take these colors. Let us ask Antonio to send you the logo. Thank you and best regards Otto
@Uwe Install program for mod harbour
Dear Otto, [quote:colgd97v]Can you please have a look at the modharbour.org web page. Maybe you can take these colors. Let us ask Antonio to send you the logo.[/quote:colgd97v] it gaves me the idea to create a new installer-tool with a config-section. using a buttonstyle or checkboxes like the FWH-installer. Inside t...
@Uwe Install program for mod harbour
Dear Otto, is there a global Info-text I could show with the HELP-symbol ? [img:r7a65q2e]http&#58;//www&#46;pflegeplus&#46;com/IMAGES/Install4&#46;bmp[/img:r7a65q2e] All links are working <!-- s:!: --><img src="{SMILIES_PATH}/icon_exclaim.gif" alt=":!:" title="Exclamation" /><!-- s:!: --> The installer is on top a...
@Uwe Install program for mod harbour
Great Uwe, congratulations
@Uwe Install program for mod harbour
Dear Uwe, great work. Really professional and good looking. In the meantime Antonio made it possible that mod harbour is also running on WINDOWS IIS. Here is the link and the install documentation. We should make your installer dual - for IIS and for APACHE. <!-- l --><a class="postlink-local" href="http://forums....
@Uwe Install program for mod harbour
Dear Otto, as soon I'm starting something, I'm getting more and more ideas <!-- s:roll: --><img src="{SMILIES_PATH}/icon_rolleyes.gif" alt=":roll:" title="Rolling Eyes" /><!-- s:roll: --> [quote:1ddoa5r7]We should make your installer dual - for IIS and for APACHE.[/quote:1ddoa5r7] I added a [color=#0000FF:1ddoa5r7...
@Uwe Install program for mod harbour
Hello Uwe, thank you so much. I am setting up 2 VS with WINDOWS 2019 Server - I had to download an English version as my version only allowed German as language. Tomorrow I will attach the servers to the internet. Then we can test the new installation program. I write you when I am ready. Best regards Otto
@Uwe Install program for mod harbour
Otto, now we can select from a listbox any install / download we need ( not only 2 options ) with a double-click on the share-symbol. After a selection the title and inner section of the installer will be complete repainted. [img:2aatse6d]http&#58;//www&#46;pflegeplus&#46;com/IMAGES/Install8&#46;jpg[/img:2aatse6d] r...
@Uwe Install program for mod harbour
Hi Uwe, this looks really great. Congratulations! Is it possible to test the installer? Kind regards Iris
@Uwe Install program for mod harbour
Iris, no problem All defined downloads are tested and are working. DOWNLOAD <!-- m --><a class="postlink" href="http://www.pflegeplus.com/DOWNLOADS/Install1.zip">http://www.pflegeplus.com/DOWNLOADS/Install1.zip</a><!-- m --> with the new submenu < share > we can add more useful downloads or installs. Because the to...
@Uwe Install program for mod harbour
WOW, Uwe, this tool is so strong. I have just set up Mod_Harbour on my PC at home. Thanks to you it took me not more than 15 min! Just great! XAMPP was no problem at all... I have only clicked on the links and the installation was done... Can you tell me, what the firewall-settings are for? Kind regards Iris
@Uwe Install program for mod harbour
I added the setup-section and release-date, 2 graphic-apps downloads and the Fivetech-connection now it is possible to change the complete color-set on the left the possible changes and on the right the preview The fivetech and harbour image are alhablended now with round corners With the < Save-button > You can save...
@Uwe Install program for mod harbour
Hello Uwe, it seems to me that the window gets during installation minimized and then you have no option to bring it back on screen. Can you please test it. Also I do not see the msginfos with the text what next to do. Thank you and best regards Otto
@Uwe Install program for mod harbour
Hello Otto, the next release will include many improvements like a complete user defined visual-design <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> [quote:2cp56bor]Also I do not see the msginfos with the text what next to do.[/quote:2cp56bor] < what to do next > is...
@Uwe Install program for mod harbour
Many improvements I rebuild and finished the config-section and added predefined brushes Added 2 buttons for the comming translation and project planing that means adding Your own download-links and translate all text to Your language. A new message-area with possible 2 lines. Full preview at runtime of all selections ...
@Uwe Install program for mod harbour
Again many improvements I changed < app on top > to < normal > for better working inside the internet DOWNLOAD <!-- m --><a class="postlink" href="http://www.pflegeplus.com/DOWNLOADS/Install3.zip">http://www.pflegeplus.com/DOWNLOADS/Install3.zip</a><!-- m --> You can collect any links or exe now and run them using ...
@Z not working
Picture "@Z" seems not to be working. If I select enter on the get it should remove the existing value and let me enter a new value. Not working. It leaves the last value of mprod_num and if I enter a new value it adds to the old value instead of removing it.mprod_num is a character.[code:1bkph9fs] REDEFINE GET oGet&#...
@Z not working
Hag,Hmm, did you mean the "@K" picture is not working?James
@Z not working
Sorry @K....
@Z not working
Hag,If you remove the VALID clause do you still have the same problem?James
@Z not working
I guess the effect of @K picture clause is that if we enter any text, it clears the buffer and takes our key strokes, but if we press Enter, the orginal text remains
@Z not working
Hag,>If I select enter on the get it should remove the existing value and let me enter a new value. Not working. I assume that you are saying that if you arrive at the GET using the Enter key from a previous GET, then the existing value remains.As NageswaraRao says, this is not the way it is supposed to work. From the ...
@Z not working
This example is working fine here:[code:rrcxtjkn] #include "FiveWin&#46;ch" function Main&#40;&#41; local oDlg, cText &#58;= "Hello world!" DEFINE DIALOG oDlg TITLE "@K test" @ 2, 2 GET cText PICTURE "@K" ACTIVATE DIALOG oDlg CENTERED return nil [/code:rrcxtjkn]
@Z not working
All:Regarding "@K"I've done everything I can think of and it won't work. The get is a 20 character value. And it seems the only way to do it is swipe the charactersto highlight them then they can be changed. Is there a way when placing an ibeam or left clicking on the get it can automatically hilight all the character...
@Z not working
Harvey,Did you try Antiono's example? I just tried it and it is working fine here. Run the program, type any character and all the text vanishes. If you use the right arrow key, instead, then you can move anywhere in the text. This is exactly how it is supposed to work.Perhaps you were expecting it to work differently?...
@Z not working
JamesThe only difference between Antonios code and mine is he doesn't use the picture command. I'll check to see if that may be my problem. My FWH was downloaded about a month ago. S/b new. Using 807.Thanks again
@Z not working
Harvey,My example is using the PICTURE command: @ 2, 2 GET cText [color=red:36u4ekl2]PICTURE "@K" [/color:36u4ekl2]
@Z not working
Harvey,You must be referring to some other code. I was referring to this code where he is using the picture command.James[code:zj18apy0]#include "FiveWin&#46;ch" function Main&#40;&#41; local oDlg, cText &#58;= "Hello world!" DEFINE DIALOG oDlg TITLE "@K test" @ 2, 2 GET cText PICTURE "@K" ACTIVATE...
@Z not working
ooops
A ""special"" - question about folders. => solved
Hello,The new Browser-tool-version 2a includes many new functionsand is nearly finished.It is possible now, to create Gradient and Non-gradient Header and Footer.Different fonts for Header and Footer ( Gradient and NON-gradient ).Different colors for NON-gradient Header and Footer.[img:2c4hh47g]http&#58;//www&#46;pfleg...
A ""special"" - question about folders. => solved
Uwe,You have defined an ON CHANGE for the folders and that is not what you need. You are going to have to disable the browse inside the routine you are using to change the gradient flag.James
A ""special"" - question about folders. => solved
Hello James,I tested this solution as well and there was a < msgalert > after the define of < browser 1 > in page 2.With the flag from page 1 : Gradient ON / OFF i want to enable / disablethe 1. browser on page 2.It seems, if the folder is defined, the contents of the pages are in memory. When i change to page 2, nothi...
A ""special"" - question about folders. => solved
Uwe,I do not see the code where you are changing the gradient flag. You cannot disable the browse during the screen setup code, or using any ON CHANGE clause. You are changing the gradient flag when the brows is running so you have to disable the other browse inside whatever routine you have that you are using to chang...
A ""special"" - question about folders. => solved
Hello James,That is the SWITCH-browser on Page 1The position defines the Var < nHEADGRAD > = 1 or 2Inside Page 1, i can enable / disable Browser 2 and 4and it works fine.But i cannot reach the color-browser 1 on page 2The easy way would be, to move this browser to page 1,there it would be no problem, but there is no s...
A ""special"" - question about folders. => solved
Uwe,>But i cannot reach the color-browser 1 on page 2 I assume you mean the variable is not available. You can either make it a public (not recommended), a file-wide static, a static in a set/get function, or make your app into a class and make it DATA.James
A ""special"" - question about folders. => solved
Hello James,The var < nHEADGRAD > is public.If i click on folder-tab 2, the screen is allways the samelike shown at the 1. folder-opening.The function doesn't test the value of < nHEADGRAD >and modifys the browser. There have been some more alerts in the function.The alerts don't display again, only once at the 1. fold...
A ""special"" - question about folders. => solved
Uwe,I guess I have still not been clear. The variable for the browse on folder 2 has to be visible--as a public or whatever. >The problem is : inside a page you can modify the values, but from another page ? As long as the variables are accessible, you can change them from anywhere. This is why they have to be publics,...
A ""special"" - question about folders. => solved
Hello James,I found out, what is wrong.I had to do my own folder-structure, because the size of the application is very big.I tested my structure with a small sample.Result : the same problem.Page 1 is a button with a counterThe alerts of page 2 and 3 are only shown at prog-start.with a click on tab 2 or 3, no alert di...
A ""special"" - question about folders. => solved
Uwe,[code:ll74mh8d]PAGE_1&#40; oFld &#41; PAGE_2&#40; oFld &#41; PAGE_3&#40; oFld &#41; ACTIVATE DIALOG oDlg CENTERED[/code:ll74mh8d] The three functions, page_1, page_2, and page_3 are going to get called once each just before the maine dialog is activated. This is not what you want.You have to also define a dia...
A ""special"" - question about folders. => solved
Hello James,I found a solution for my problem and it works perfect.[img:110879ej]http&#58;//www&#46;pflegeplus&#46;com/pictures/grad12a&#46;jpg[/img:110879ej][code:110879ej] At first, the browse-object on page 2 &#40; oLbx6 &#41; has to be static The Switch-var < nHEADGRAD > is PRIVATE static oWnd, oDlg, oFld, oLbx6 ...
A ""special"" - question about folders. => solved
Uwe,Glad to hear you got it working.>The Switch-var < nHEADGRAD > is PRIVATE I would avoid PRIVATEs like the plague. Remember they are visible inside any and all functions called by code where they are visible. This includes FWH and (x)Harbour functions too.It would be better as a file-wide static. [It would be best as...
A ""special"" - question about folders. => solved
James,thank you very much for your help.I think it is possible now with this version, to cover all needed visual-designs for xBrowse.There are source-results on each page.I will put them all together as a small MDI - Test-applicationwith main-window, a dialog and the created browser. Greetings from GermanyUwe <!-- s:lo...