topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
Behaviour of GET on TMDIChild differs from TDialog | ok,
thanks for your explanation.
Another question regarding units:
What units uses a resource editor (ex. pelles) ?
When design a resource, must we keep in mind if it will be placed on a Dialog or Window ?
Thanks
Josep |
Behaviour of GET on TMDIChild differs from TDialog | Josep,
Resources editors, as the one provided in PellesC or the Borland Resources Workshop, always use dialog units. Those editors only allow to design dialogboxes, not windows.
To place a control on a window we usually use:
@ nRow, nCol <CONTROL_NAME> ... OF <Container_Window> SIZE nWidth, nHeight [ PIXEL ]
nRow a... |
Behaviour of GET on TMDIChild differs from TDialog | ok,
then wich is the recomended procedure to work in a MDI environment ?
All seems that I must use dialogs to build my interface, but in a MDI I have TMDIChild windows.
If I build a form in a resorce editor and then (via REDEFINE) placed the objects in a window, they will look half size, GETs don't have 3D look, etc
I... |
Behaviour of GETs when editing text | It seems that if a GET has text in it and you want to edit it the text always gets added to the end or the beginning regardless of whether or not you have double clicked the mouse to a desired insertion point or blocked part or all of the test to overwrite / replace.
This can be seen with testdlg.prg if you initialise... |
Behaviour of GETs when editing text | Doug,
Here it works fine though sometimes you have to click twice in between the GET. In this sample I have inserted "xbase" in between "Hello world!":
[url=http://imageshack.us:3mkr880u][img:3mkr880u]http://img471.imageshack.us/img471/699/screenshot1ya3.png[/img:3mkr880u][/url:3mkr880u]
>
(<un... |
Behaviour of GETs when editing text | Antonio
I can get characters to insert into a GET but ONLY if I use the arrow keys to navigate through the GET text. Clicking the mouse moves the mouse pointer to the desired position in the GET text but that's not where the text gets put. It looks as if the the get object isn't getting or isn't handling the mouse ... |
Behaviour of GETs when editing text | Doug,
Have you tried clicking twice ? Here it works ok if clicked twice |
Behaviour of GETs when editing text | I have tried double clicking but that marks the word as a block - but you don't get the normal behaviour that you would expect from having marked a block - ie any characters written are additional characters, they don't replace the blocked text. The current cursor position remains the current keyboard position and not ... |
Behaviour of GETs when editing text | Doug,
It may be related to the GT library that it is used. We should use -lgtnul but we can't find that file. We have asked it at the harbour mailing list and we are waiting for an answer, thanks |
Behaviour of GETs when editing text | Doug,
Fixed. We send you new libs
thanks for your feedback, |
Behaviour of GETs when editing text | Thanks for this fix. Both the level and speed of your support are wonderful.
Thanks from a very happy xProgrammer |
Behaviour of GoNextCtrl | Hello!
While upgrading from FWH 06.02 to 09.01 I've noticed that behaviour of GoNextCtrl (TWindows) had changed. In previous version I could use it to go to the next GET or BUTTON control, but now it jumps to the next SAY control so I loose focus. Is there another method to use that jumps to the next "focusable" contr... |
Behaviour of GoNextCtrl | Roman,
Are you sure you have all the focusable controls numbered lower than the says? Perhaps all you need to do is renumber the sequence of the controls.
Regards,
James |
Behaviour of GoNextCtrl | [quote="James Bott":uya6x2dx]Roman,
Are you sure you have all the focusable controls numbered lower than the says? Perhaps all you need to do is renumber the sequence of the controls.
[/quote:uya6x2dx]
No, SAY-s and GET-s are mixed. This was not a problem in FWH 6.2. But thanks for an idea ...
Roman |
Behaviour of GoNextCtrl | Can you show a reduced and self-contained sample of the problem?
EMG |
Behaviour of GoNextCtrl | [quote="modicr":3vu2pwuv][quote="James Bott":3vu2pwuv]Roman,
Are you sure you have all the focusable controls numbered lower than the says? Perhaps all you need to do is renumber the sequence of the controls.
[/quote:3vu2pwuv]
No, SAY-s and GET-s are mixed. This was not a problem in FWH 6.2. But thanks for an idea ...... |
Behaviour of GoNextCtrl | Hello!
[quote:1tnj3kv0]In a MDICHILD or GROUPS? When?[/quote:1tnj3kv0]
Yes, I have a Window (not Dialog) in MdiChild.
[code=fw:1tnj3kv0]<div class="fw" id="{CB}" style="font-family: monospace;"> <span style="color: #00C800;">if</span> Upper<span style="color: #000000;">(</span> ::<span style="color: #000000;"... |
Behaviour of button class in FWH 11.12 | Hello,
Since I use FWH 11.12, I experienced another behaviour in the button class.
I often use "&" in a button to make it easier for a user to activate a button by using the ALT-key.
It always used to work fine. For instance, if I put "&Add" in a button, the user presses ALT-A on his keyboard to activate the button ... |
Behaviour of button class in FWH 11.12 | Good day!
The reported problem that also happened with me!
thank you |
Behaviour of button class in FWH 11.12 | this is the only change in tbutton class in version 11.12
can you try revert the change and test.
<!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?p=124275#p124275">viewtopic.php?p=124275#p124275</a><!-- l -->
salu2
carlos vargas |
Behaviour of button class in FWH 11.12 | Michel,
It is a FWH 11.12 bug, we are searching for it, thanks
We apologize for it |
Behaviour of button class in FWH 11.12 | Michel,
This example is also failing with FWH 11.11 so it seems as the bug was introduced before 11.11:
[code=fw:1caxmfvl]<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;">f... |
Behaviour of button class in FWH 11.12 | In FWH 11.10 is working fine... |
Behaviour of button class in FWH 11.12 | This is the required fix in Class TButton:
[code=fw:1avy2kkx]<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>... |
Behaviour of button class in FWH 11.12 | [quote="Antonio Linares":2tg5wsrm]This example is also failing with FWH 11.11[/quote:2tg5wsrm]
I'm using FWH 11.11 and your sample works fine here. Why?
EMG |
Behaviour of button class in FWH 11.12 | Antonio, este metodo en tget, todas las posibilidaes retornan WANTALLKEYS, no tiene sentido
que opinas?
o no le capto. <!-- s:oops: --><img src="{SMILIES_PATH}/icon_redface.gif" alt=":oops:" title="Embarassed" /><!-- s:oops: -->
[code=fw:3qbpxdmi]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span... |
Behaviour of button class in FWH 11.12 | [quote="Enrico Maria Giordano":1j5snpz8][quote="Antonio Linares":1j5snpz8]This example is also failing with FWH 11.11[/quote:1j5snpz8]
I'm using FWH 11.11 and your sample works fine here. Why?
EMG[/quote:1j5snpz8]
Enrico,
Surely you were using an early 11.11 that got modified little later |
Behaviour of button class in FWH 11.12 | Ok, now it's clear, thank you.
EMG |
Beispiele für TAutoOle2 u xBrowse ( Update 4 / 07.01.2008 ) | Die Beispiele für die Excel-Formulare wurden
erweitert.
Im xBrowser ist es nun möglich, mit einem
Click auf den Column-Header den Index zu wechseln.
Die Schrift im Header der entsprechenden Spalte
färbt sich rot und der aktive Index wird dadurch
gekennzeichnet.
Das Bild des Browsers ( Bitmaps und Farben )
ändert sich ... |
Belgian eID | Hello,
All Belgian citizens are obliged to have an eID (looks like a creditcard) to be able to identify themselves at any time.
I need to read the information which is available on that eID by using a cardreader.
Does anyone have a solution for reading an eID?
Thank you very much in advance for any help. |
Belgian eID | You ask it regularilly every 2-3 year <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
<!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=3&t=25205&p=191328">viewtopic.php?f=3&t=25205&p=191328</a><!-- l -->
My suggest is to ta... |
Belgian eID | Antonino,
I know that topic, but the links that were provided, are not valid anymore.
And until now, I haven't seen any solution.
Where can I find a C/C++ example?
Thanks. |
Belgian eID | I quickly searched with google the information for you.
The SDK looks <!-- m --><a class="postlink" href="https://github.com/Fedict/eid-mw/tree/master/doc/sdk">https://github.com/Fedict/eid-mw/tree/master/doc/sdk</a><!-- m -->
here some documentation <!-- m --><a class="postlink" href="http://www.uvcw.be/no_index/e-co... |
Belgian eID | Hi ,
Could somenone help us to translate in Harbour fivewin syntax ?
Thanks |
Belgian eID | can you write to me at antonino.perricone _at_ yahoo.it |
Belgian eID-card | Hello,
Here in Belgium we all have a electronic ID-card which is used in many applications.
Does anyone know how we can read this eID in a cardreader?
Thanks a lot in advance. |
Belgian eID-card | Hello Michel,
have you found a solution.
Thanks in advance
Otto |
Belgian eID-card | Unfortunately not, Otto. |
Belgian eID-card | Does this help at all?
<!-- m --><a class="postlink" href="http://eid.belgium.be/en/using_your_eid/what_do_you_need/kaartlezer/">http://eid.belgium.be/en/using_your_eid ... aartlezer/</a><!-- m -->
Robb |
Belgian eID-card | In my infinity curiosity, I saw the API for Belgian eID-card. <!-- s:oops: --><img src="{SMILIES_PATH}/icon_redface.gif" alt=":oops:" title="Embarassed" /><!-- s:oops: -->
I arrived at [url:1wjw4qp3]http://eid.belgium.be/en/developing_eid_applications/eid_software_development_kit/[/url:1wjw4qp3]
then at [... |
Belgian eID-card | Hello,
What is the right instruction in other to read the contents of EID Card : Name, Adress,Bitrth Date ?
Thanks |
Belgian eID-card | Hello,
Is there something new about this ?
How to extract FirstName,LastName,BirthDate etc
Thanks for your help . |
Belgian eID-card | Hi,
There is an SDK for reading the information on the eID.
[url:1qk7fnvd]http://eid.belgium.be/nl/eid-toepassingen_ontwikkelen/eid_software_development_kit[/url:1qk7fnvd]
[url:1qk7fnvd]https://github.com/Fedict/eid-mw/wiki/SDK40#Introduction[/url:1qk7fnvd]
Here is a VBA wrapper:
[url:1qk7fnvd]http... |
Belgian eID-card | How to translate this in Fivewin/Harbour language ?
Thanks for your help . |
Belgian eID-card | no one tried my code? |
Belgian eID-card | [quote="AntoninoP":1mj6z5z4]no one tried my code?[/quote:1mj6z5z4]
Antonino,
When I run it with a cardreader, I get this error:
[code=fw:1mj6z5z4]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #0000ff;">Init</span>: <span style="color: #000000;">0</span><br />Error BASE/<span s... |
Belgian eID-card | It does not found the file beidpkcs11.dll or beid35pkcs11D.dll (depends if is compiled in C debug or not), maybe is better to change the line 11 of be_api.c from
[code=fw:jnanvj7f]<div class="fw" id="{CB}" style="font-family: monospace;">CK_RV retVal = CKR_OK;</div>[/code:jnanvj7f]
to
[code=fw:jnanvj7f]<div class="fw" ... |
Belgian eID-card | Has anyone been able to read the ID card yet ?
Maybe even with a other software executed from FW ? |
Belgian eID-card | Hello,
Did someone found samples of FW code for this ?
Thanks |
Belgian eID-card | Not from my side. |
Belgian eID-card | Hi,
I found this information, with examples in different program-languages.
[url:uxt3afzv]https://downloads.services.belgium.be/eid/UPD_Developers_Guide.pdf[/url:uxt3afzv]
But I don't know how to call it from FWH |
Belgium VAT-Controle function | Hello Michel, Marc
Have any of you have a working Vat-controle for Belgium vat numbers ? I want to check if new customers are having a correct vat number and maybe the option of filling in the customer data from online data. |
Belgium VAT-Controle function | You could always use our Italian control if the customer VAT number is created in the same way also in Belgium
I fiund this
<!-- m --><a class="postlink" href="https://vatcalculator.eu/belgium-vat-calculator/">https://vatcalculator.eu/belgium-vat-calculator/</a><!-- m -->
but you perhaps mean another vat numbe... |
Belgium VAT-Controle function | Hi Marc,
This is the function I have made to check a Belgian VAT-number.
The picture of the VAT-number = "BE0999.999.999"
The code is : [code=fw:36ijsyfa]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">FUNCTION</span> Contr_BTW<span style="color: #000000;">(</span>nBTWNUM,n... |
Belgium VAT-Controle function | I have seen this code working I believe (don't know where I got it)
Now it's not ok anymore
[code=fw:1ma2j67f]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"fivewin.ch"</span><br />#if ! defined<span style="color: #000000;">&... |
Belgium VAT-Controle function | Marc,
Do you know the principle of checking a Belgian VAT-number?
A Belgian VAT-number looks like BE0574.774.488.
Take "BE0" at the start away. You keep 574.774.488.
Get rid of the points. You keep 574774488.
Take the first 7 digits. You keep 5747744.
Divide this result by 97. The result is 59255.0927835.
You keep t... |
Belgium VAT-Controle function | [quote="driessen":2sb534gn]Marc,
Do you know the principle of checking a Belgian VAT-number?
A Belgian VAT-number looks like BE0574.774.488.
Take "BE0" at the start away. You keep 574.774.488.
Get rid of the points. You keep 574774488.
Take the first 7 digits. You keep 5747744.
Divide this result by 97. The result i... |
Belgium VAT-list | Hi,
I have a question to all the Belgium FWH-users. Does anyone already create a function to generate the yearly VAT-list, or have an example-file.
From this year on the list must be created as an XML-file. Before it was an easy-file with on each line one customer with his data.
On the site of the Belgium-VAT-site the... |
Belgium VAT-list | Hello Marc,
I have the same problem. So I will follow this topic too.
----------------------------------------------------------------------
Beste Marc,
Ik heb hetzelfde probleem.
Ik moet in mijn applicatie fiscale fiches aanmaken (281.50 en 325.25) en hiervoor stelt zich hetzelfde probleem. Hetzelfde zal in de t... |
Belgium VAT-list | Michel,
Ik heb voor de IBAN-nummers nog geen functie geschreven voor de omvorming.
Blijkbaar heeft dat ook te maken met de bank baar je bij bent.
Ik zal eens aan mijn bank vragen of ze geen tabel of zo hebben met de codes per bank.
Van zodra ik iets meer weet zal ik het U laten weten.
Groeten,
Marc |
Belgium VAT-list | Michel,
Het is inderdaad net zoals ik dacht dat de IBAN-nummers afhankelijk zijn van de bank.
Ze hebben me al deze link doorgestuurd om zelf de IBAN te berekenen vanuit een bankrekeningnummer.
[url:jkqroz83]http://nl.iban-bic.com/calculate.html?&L=3[/url:jkqroz83]
Marc |
Bem vindos ao forum em português | Olá, pessoal!
Este é o recém inaugurado forum em português para os produtos FiveTech.
Vamos fazer deste nosso espaço para a comunidade FiveWin que fala português.
[ ]'s
Maurilio |
Bem vindos ao forum em português | Olá, Estou aqui também :þ)
Não esqueçam do III Encontro de programadores que será realizado em São Paulo dia 19 de Novembro de 2.005, incrição e mais informações
<!-- m --><a class="postlink" href="http://www.installsis.com.br/encontro">http://www.installsis.com.br/encontro</a><!-- m -->
Abraços
Vagner Wirts |
Bem vindos ao forum em português | Eu tambem estou por aqui...
qq coisa que eu puder ajudar não se acanhem... rsss
fala ai Vagnão... <!-- s:P --><img src="{SMILIES_PATH}/icon_razz.gif" alt=":P" title="Razz" /><!-- s:P --> |
Bem vindos ao forum em português | Cheguei..... |
Bem vindos ao forum em português | Tô na área também... <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" alt=":lol:" title="Laughing" /><!-- s:lol: -->
Ah, e não esqueçam de colocar a foto de vocês... hehehe
Kleyber Derick |
Bem vindos ao forum em português | teste <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> |
Bem vindos ao forum em português | to na area |
Bem vindos ao forum em português | <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> |
Benutzer kann Farben Brushes .... selber ändern | Hallo aus Essen,
habe gerade das Update in's Englische Forum
gestellt. Brushtools => Version 8.2 b
[img:3u3x5ac5]http://www.pflegeplus.com/pictures/brushtool.jpg[/img:3u3x5ac5]
Source und Rmake ist enthalten
Verbesserungs-Vorschläge werden gerne bearbeitet. !!!
Grüße <!-- s:lol: --><img src="{SM... |
Benutzerdefinierte Formulare in Outlook verwenden | Hallo
hat jemand noch Euch schonmal benutzerdefinierte Formulare bei email versand benutzt ?
wie kann ich so ein formular über ole vorgeben ?
Viele Grüße
Norbert |
Benvenuti nel nuovo forum in lingua italiana! | Questo forum è dedicato al supporto tecnico relativo a tutti i prodotti della Fivetech Software.
Si prega di iscriversi utilizzando l'apposita opzione e, possibilmente, anche di allegare una propria foto in modo tale da conoscerci anche di viso.
Buon lavoro a tutti.
EMG |
Benvenuti nel nuovo forum in lingua italiana! | Ciao Enrico,
[quote:2qji8uvz]
Buon lavoro a tutti.
[/quote:2qji8uvz]
Anche a te. Ciao |
Benvenuti nel nuovo forum in lingua italiana! | Grazie. A proposito: hai ricevuto la mia email nella quale ti chiedevo consiglio su dove mettere quelle istruzioni sul MinGW che mi avevi segnalato?
EMG |
Benvenuti nel nuovo forum in lingua italiana! | Si, anzi scusami se non ti ho risposto prima.
Non ti ho risposto perchè stavo facendo qualche prova con la configurazione e la compilazione con MinGW con i parametri postati da Lorenzo, ma ho avuto qualche problema.
La compilazione la fa, ma non mi installa i programmi compilati.
Devo fare qualche prova per vedere qua... |
Benvenuti nel nuovo forum in lingua italiana! | [quote="fsgiudice":1obyp3di]Si, anzi scusami se non ti ho risposto prima.[/quote:1obyp3di]
E di che?
[quote="fsgiudice":1obyp3di]Non ti ho risposto perchè stavo facendo qualche prova con la configurazione e la compilazione con MinGW con i parametri postati da Lorenzo, ma ho avuto qualche problema.
La compilazione la ... |
Benvenuti nel nuovo forum in lingua italiana! | [quote="EnricoMaria":3my9ubpt]Questo forum è dedicato al supporto tecnico relativo a tutti i prodotti della Fivetech Software.
Si prega di iscriversi utilizzando l'apposita opzione e, possibilmente, anche di allegare una propria foto in modo tale da conoscerci anche di viso.
Buon lavoro a tutti.
EMG[/quote:3my9ubpt]... |
Benvenuti nel nuovo forum in lingua italiana! | Saluti a tutti anche da parte mia, sinceramente il forum in lingua italiana mi mancava tanto <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> |
Benvenuti nel nuovo forum in lingua italiana! | E così finalmente rieccoci qua <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) -->
Sono contento che esista questo nuovo spazio anche se condivido la nostalgia di alcuni per il ng che consentiva una archiviazione e una gestione dei messaggi anche in locale. E' un patrimonio di inf... |
Benvenuti nel nuovo forum in lingua italiana! | Eccomi quà!!!........ Bentrovati a tutti. |
Benvenuti nel nuovo forum in lingua italiana! | Eccomi.
Da oggi anch'io sono iscritto, anche se + o - sono nelle condizioni di Jumbo: poco tempo da dedicare allo sviluppo software perché preso anche dalla vendita/assistenza hardware e in genere da tutto quel che ruota attorno all'IT (questo è quello che passa il convento, e di questi tempi è dura rinunciarci anche ... |
Benvenuti nel nuovo forum in lingua italiana! | Ciao a tutti,
il mio tempo per lo sviluppo è come la corrente alternata!
spero di riprendere con un po' più di disponibilità dopo le vacanze,
inoltre anche questo caldo non aiuta...
Comunque grazie a EMG e a tutti per il supporto. |
Best Editor to use? Any xBase aware ones? File Associations | Wondering what the best editor to use to create / edit .prg files. gedit looks OK but isn't xBase aware (not that I can see). Any plugin for it? Any other editor recommendations?
Also how do you associate .prg files with your text editor so that you don't have to go Open with other application| Text Editor
Thanks ... |
Best Editor to use? Any xBase aware ones? File Associations | Doug,
First recommendation is to install gnome-commander which it is very usefull files manager based on Norton Commander (Total commander on Windows).
From a console window do:
sudo apt-get install gnome-commander
Then invoke it:
gnome-commander
simply double click on a PRG file and gedit will be automatically in... |
Best Editor to use? Any xBase aware ones? File Associations | [url=http://imageshack.us:348xo9fg][img:348xo9fg]http://img520.imageshack.us/img520/1832/screenshotmh8.png[/img:348xo9fg][/url:348xo9fg] |
Best Editor to use? Any xBase aware ones? File Associations | gnome-commander looks good and it solved my problem - but somewhat indirectly. I double clicked on the .prg file and got a similar set of options. However I noticed that the .prg file had permissions of rwx. I removed the x permission and double clicking on the file brings up gedit in both gnome commander and the fi... |
Best Editor to use? Any xBase aware ones? File Associations | Yes, we see what you mean. We can't launch the application from gnome-commander too neither from "Nautilus" (the standard file browser). Lets see if we can find a solutiion.
Its seems its not name related as we use the default extension ".a", the result is the same
>
Also the terminal session that I launched gnome-co... |
Best FWH functions for API Hash Curl | I was able to connect and change my shopdata with a API instruction.
The data string looks like this :
cData := '{"images":["5101000.jpg"],"sku":"skuData","ean":"98745123456","name":"Noyca","description":"Memo<b>Data</b>"}'
the API docs gives this a example data :
{
"model": "string",
"sku": "string",
"ean": ... |
Best FWH functions for API Hash Curl | Creo que es lo que necesitas
[code=fw:1jmx58un]<div class="fw" id="{CB}" style="font-family: monospace;"><br />cData := hb_jsonEncode<span style="color: #000000;">(</span> hData <span style="color: #000000;">)</span><br />.....<br /><span style="color: #00C800;">Local</span> := hData := <span style="color: #00... |
Best FWH functions for API Hash Curl | [quote="leandro":36p7uc26]Creo que es lo que necesitas
[code=fw:36p7uc26]<div class="fw" id="{CB}" style="font-family: monospace;"><br />cData := hb_jsonEncode<span style="color: #000000;">(</span> hData <span style="color: #000000;">)</span><br />.....<br /><span style="color: #00C800;">Local</span> := hData ... |
Best blogs to read / Mejores blogs a leer | Lets collect a good list of blogs to review / Reunamos una buena lista de blogs para leer:
[b:2gccorgp]General news / Noticias en general:[/b:2gccorgp]
<!-- m --><a class="postlink" href="http://www.digg.com">http://www.digg.com</a><!-- m --> (english)
<!-- m --><a class="postlink" href="http://www.meneame.net">http... |
Best blogs to read / Mejores blogs a leer | [b:2nve1e2y]Technology - Linux[/b:2nve1e2y]
[url:2nve1e2y]http://www.espaciolinux.com[/url:2nve1e2y] (spanish)
[url:2nve1e2y]http://www.vivalinux.com.ar/[/url:2nve1e2y] (spanish)
Saludos.
Carlos Sincuir
(editado por Antonio) |
Best blogs to read / Mejores blogs a leer | [b:3v1kqx41]Tecnología [/b:3v1kqx41]
<!-- m --><a class="postlink" href="http://tlife.guru/">http://tlife.guru/</a><!-- m --> (español)
<!-- m --><a class="postlink" href="http://www.neoteo.com">http://www.neoteo.com</a><!-- m --> (español)
[b:3v1kqx41]Electrónica de consumo [/b:3v1kqx41]
<!-- m --><a class="postlink... |
Best choice: Say:redefine() or Say:new() | Antonio and friends!How is the best choice when I have to create my objects into a dialog window?Say:redefine() or Say:new()? The redefine method via resource or the new method via oDlg:bPainted? |
Best choice: Say:redefine() or Say:new() | Júlio,Using REDEFINE SAY ... you reuse the resource defined control including its coordinates and you can design your entire dialog from the resources editor. |
Best current xBrowse doc/sample | Considering all of the enhancements made to xBrowse, what is the best documentation available for the current class ? What are the best sample files to review ?
I've been using TSBrowse ( older version ) but am considering using xBrowse.
Tim |
Best current xBrowse doc/sample | Hello Tim,
did You have a look at the xBrowseTools ?
With the Tools, You can test all settings with Preview.
As well there is a source-generator included.
It is a very good help, if You want to change to xBrowse.
Also You can find different test-prg's in the subdirectory /samples of FWH.
Because I updated to FWH 9.04... |
Best current xBrowse doc/sample | Unfortunately all the documentation on xbrowse is not available at one place. I can suggest the following three ways in that order.
1) Study samples in samples folder ( all programs containing 'xbrowse' ). In particular testxbrw3.prg contains more samples.
2) Study commands in xbrowse.ch along with source code of xbr... |
Best current xBrowse doc/sample | [quote="ukoenig":238d35pk]
did You have a look at the xBrowseTools ?
With the Tools, You can test all settings with Preview.
As well there is a source-generator included.
It is a very good help, if You want to change to xBrowse.
[/quote:238d35pk]
Hi Uwe
Where can i get xBrowse Tools? I'd be interested in looking at ... |
Best current xBrowse doc/sample | Hello Peter,
You can Download from here.
<!-- m --><a class="postlink" href="http://www.pflegeplus.com/fw_downloads/brwtools5.zip">http://www.pflegeplus.com/fw_downloads/brwtools5.zip</a><!-- m -->
Read something about the Update :
<!-- l --><a class="postlink-local" href="http://fivetechsupport.com/forums/viewtopic.... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.