--
--
You received this message because you are subscribed to the Google
Groups "Harbour Users" group.
Unsubscribe: harbour-user...@googlegroups.com
Web: http://groups.google.com/group/harbour-users
---
You received this message because you are subscribed to the Google Groups "Harbour Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to harbour-user...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Bruno Luciani Area Ingenieria Brawnius Tecnologia y Servicios BWS Central de Monitoreo San Francisco Javier 1066 Ramallo - 03407-422178/422185 www.brawnius.com.ar www.bwsalarmas.com.ar
--
--
You received this message because you are subscribed to the Google
Groups "Harbour Users" group.
Unsubscribe: harbour-user...@googlegroups.com
Web: http://groups.google.com/group/harbour-users
---
You received this message because you are subscribed to a topic in the Google Groups "Harbour Users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/harbour-users/xpHeXoSt4nk/unsubscribe.
To unsubscribe from this group and all its topics, send an email to harbour-user...@googlegroups.com.
Hi Ash:
--
--
You received this message because you are subscribed to the Google
Groups "Harbour Users" group.
Unsubscribe: harbour-user...@googlegroups.com
Web: http://groups.google.com/group/harbour-users
---
You received this message because you are subscribed to the Google Groups "Harbour Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to harbour-user...@googlegroups.com.
Unsubscribe: harbou...@googlegroups.com
Web: http://groups.google.com/group/harbour-users
---
You received this message because you are subscribed to the Google Groups "Harbour Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to harbou...@googlegroups.com.
Hello Ash,It works properly, but there is a little bug...When I click on the input field after the result is printed.
Regards.Attila
I noticed that if I click on one of the "notes" radio buttons, the selection will disappear from the "colour" group.
Hello Everyone,xBase language has allowed me to build powerful business applications without having to learn the object oriented aspects of programming. Let me give you an example of pure Clipper code.#include "inkey.ch"FUNCTION main()LOCAL GetList := {}LOCAL cName := 'Fred Bloggs Jr.'LOCAL dDOB := Date() -20000LOCAL cStatus := 'Single'LOCAL nSalary := 95000LOCAL lEmployed := .T.LOCAL lSave := .F.LOCAL nBtn := 0CLS@ 00, 01 SAY 'Employee Details'@ 02, 12 GET cName CAPTION 'Name:' PICTURE '@K'@ 03, 12 GET dDOB CAPTION 'Birth Date:' PICTURE '@D'@ 04, 12, 08, 19 GET cStatus LISTBOX { 'Unknown', 'Married', 'Single' } DROPDOWN CAPTION 'Status:'@ 05, 12 GET nSalary CAPTION 'Salary:' PICTURE '999,999'@ 06, 12 GET lEmployed CHECKBOX CAPTION 'Employed?'@ 08, 02 GET lSave PUSHBUTTON CAPTION 'OK' STATE {|| nBtn := 1, hb_keyPut( K_CTRL_W ) }@ 08, 12 GET lSave PUSHBUTTON CAPTION 'Cancel' STATE {|| ReadKill( .T. ) }READDO CASECASE nBtn == 1Alert( cName + ';' + ;DToC( dDOB ) + ';' + ;cStatus + ';' + ;Str( nSalary ) + ';' + ;iif( lEmployed, 'Y', 'N' ), )ENDCASERETURN nilOutput.
The above program works well but it is character based. For this program to have a GUI interface, one has to resort to complicated additional libraries like qt, hwgui, hmg and others. The resulting program will no longer look like a Clipper program any more.I have been experimenting with GTWVW as shown below. I am not suggesting that we should use GTWVW. Use QT instead for example if the code above remains the same.My new year's wish.Regards.AshP.S. I can share my work so far.