topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
15.1.2015 Facturae 3.2 ¡ obligatorio ! | Hola Compañeros,
¿Cómo está este tema por favor?.
Muy agradecida. |
15.10 Browse problem | Starting with 15.10, using a Resource file, the following code no longer displays properly:
add to oLbxcl header "Account" data oClients:acrnum ALIGN LEFT ORDER "eclnum"
add to oLbxcl Header "Client" data oClients:clicom ALIGN LEFT ORDER "eclcom"
add to oLbxcl header "City" data oClients:clicty ALIGN LEFT
add ... |
15.10 Browse problem | Tim,
Surely Rao will help you on this |
15.10 Browse problem | Mr Tim
I can not see any modification to xbrowse that could have this effect. Nor I have seen any such change in any browse recently.
Can you please send me to my email
1) the dbf file with some sample records
2) exact program code relating to this browse |
15.10 Browse problem | Good Morning,
Here is an example. The W setting is for widescreen monitors ( 1920 x 1080 ) and the other is the older VGA setting:
[code=fw:3dvgoarf]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> <span style="color: #00C800;">IF</span> cWSshow = <span style="color: #ff0000;">"W"</span>... |
15.10 Browse problem | I tried to reproduce the problem at my end. In the absence of dbf, I created a dummy dbf with some adhoc structure. Used TDatabase and exactly your syntax to create the columns.
My test program:
[code=fw:3cpjr2gm]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <s... |
15.10 Browse problem | Here is a better sample:
[code=fw:bhq1l8xu]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> <span style="color: #B900B9;">// Create the dialog to get type of workorder, search type , browse list</span><br /> <span style="color: #0000ff;">DEFINE</span> <span style="color:... |
15.10 Browse problem | Even this is working well for me.
bcc + xharbour
[url=https://imageshack.com/i/p59S2jRoj:20b95mjd][img:20b95mjd]http://imagizer.imageshack.us/v2/xq90/905/9S2jRo.jpg[/img:20b95mjd][/url:20b95mjd]
This is the code:
[code=fw:20b95mjd]<div class="fw" id="{CB}" style="font-family: monospace;"><span ... |
15.10 Browse problem | I built with 15.11. The sample works, but my code still has the same problem.
I will need to go back and look more closely at other programs I link in to see if I can find an issue. I will let you know if I find anything. |
15.10 Browse problem | OK ... here is what I found ...
As a stand alone program, with just the one file, it works. However, when I added it into a build with all of the programs in the executable, the same spacing problem arises.
I went back to 15.09 r5 and it seemed to work in many cases, but there were issues still. In addition, we fo... |
15.10 Browse problem | Good that the problem is resolved. With bcc and msvc builds we never experienced any such problems
The requirement of png.lib was removed many versions earlier.
General advice about the recommended syntax for creation of xbrowse:
The syntaxes:
... XBROWSE .. FIELDS ...
and
ADD TO oBrw DATA ...
were provided only fo... |
15.10 Browse problem | I will try that. I haven't had problems in the past, but the column issue is still unresolved. I'll try reformatting the command structure. |
15.10 Browse problem | I have a couple of questions on that preferred formatting. I checked, but can't find full samples or documentation.
1) With the command, instead of ALIGN I see you use the word JUSTIFY. In one browse, the first column is a BMP which I want centered. I've set the column to JUSTIFY 2 which is the value for center, b... |
15.10 Browse problem | This is an example how to use expressions as part of COLUMN syntax:
[code=fw:1hx2utw1]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"fivewin.ch"</span><br /><br />REQUEST DBFCDX<br /><br /><span style="color: #00C800;">function</spa... |
15.10 Browse problem | Having said that I started thinking. I found some programmers, in addition to you, have been extensively using "add to obrw..." syntax. Naturally they are comfortable with that syntax. I am wondering if i can modify this syntax also to be equally powerful. I need a little time. |
15.10 Browse problem | I'm actually working to make the changes. I do not have a problem with it, though it means a lot of changes. Once I get used to it, it becomes clear.
I do have one question. If I use the JUSTIFY can I do ,,,2,,,2,, or do I then have to specify each column, ie. 0,0,2,1,1,2,0,0 In some cases I have text I want t... |
15.10 Browse problem | [quote:1nhdxoxy]
I'm actually working to make the changes. I do not have a problem with it, though it means a lot of changes. Once I get used to it, it becomes clear.
[/quote:1nhdxoxy]
I know what it means to change existing code. We are likely to create more problems than we solve. I do not advise changing existing c... |
15.10 Browse problem | [quote:3gxcuiiz]
I know what it means to change existing code. We are likely to create more problems than we solve. I do not advise changing existing code. Please keep my advice for future. I shall also post another variant of the syntax. (My personal preference)
[/quote:3gxcuiiz]
This is a different situation. My ma... |
15.10 Browse problem | [quote:2rnd4rfq]
Can any of this be incorporated in the section above
[/quote:2rnd4rfq]
No
[quote:2rnd4rfq]
Any compaction of code
[/quote:2rnd4rfq]
Following lines
[code=fw:2rnd4rfq]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oLbxo:<span style="color: #000000;">aCols</span><span style="color: #0000... |
15.10 Browse problem | I edited that and apparently it did not update:
add to oLbxo Header "Action" data ;
IIF( oOrders:duedat = DATE( ), "< TODAY >",IIF( oOrders:duedat < DATE( ),"Overdue" ," " )) ;
ALIGN CENTER SIZE 150
In this segment, a string value is placed in the cells of a column based on the value of duedate.
I tried u... |
15.10 Browse problem | While using the COLUMNS syntax use this entire expression in Quotes as one of the columns;
eg:
COLUMNS "fld1", "fld2", "IIF( duedat = DATE( ), '< TODAY >',IIF( duedat < DATE( ),'Overdue' ,'' ))", "fld5", .. etc |
15.10 Browse problem | Here is the final format:
[code=fw:2w2aixsy]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> <br /><span style="color: #0000ff;">REDEFINE</span> <span style="color: #0000ff;">XBROWSE</span> oLbxo ;<br /> DATASOURCE oOrders ;<br /> HEADERS <span style="color: #ff0000;">" Stage "</span>, <span... |
15.10 Browse problem | Not
[code=fw:22mfcffo]<div class="fw" id="{CB}" style="font-family: monospace;">oLbxo:<span style="color: #000000;">nHeadStrAlign</span> := AL_CENTER<br /> </div>[/code:22mfcffo]
Please use PLURAL
[code=fw:22mfcffo]<div class="fw" id="{CB}" style="font-family: monospace;">oLbxo:<span style="color: #000000;">... |
15.10 Browse problem | It does give an error so I decided to abandon the column. I'm looking at another approach.
Also, bitmaps do not center either with JUSTIFY or by specifying it individually. They do with SetCheck but not called bitmaps as shown in this example. They did in the ADD Column method
Finally, the reason I added spaces to... |
15.10 Browse problem | Are you using TDataBase? |
15.10 Browse problem | tData ( James Bott ) which is an extension of tDatabase.
Actually, all of my databases are themselves object classes as subclasses of tdata, thus:
oOrders <- tData <- tDatabase |
15.10 Browse problem | See my previous response, then here is some new stuff:
Old code:
[code=fw:1gxrn4j2]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> <span style="color: #B900B9;">// Define the browse contol</span><br /> <span style="color: #0000ff;">REDEFINE</span> <span style="color: #0000ff;">XBROWSE</span> oLB... |
15.10 Browse problem | This is still an open / unresolved issue |
15.10 Browse problem | The original part of this post was never resolved. I did go into our new version of the software and reformatted all of the Browse controls to fit the new command pattern suggested.
This morning I found another piece of information that may help with understanding the problem in the ADD TO format. In that problem th... |
16 Y 32? | Amigos del foro tengan todos buen día. <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
El problema es el siguiente: hace un tiempo hice una aplicacion en 16 bits, esta aplicación funciona correctamente y con una velocidad extraordinaria.
Pero resulta que migre a 32... |
16 Y 32? | Bueno amigos... Les cuento que estuve haciendo varias pruebas y llegue a la conclusion que el problema de la velocidad son los filtros..
Ya que me muestra la base de datos sin filtro de una manera rapida pero al efectuar el un filtro en cuando se pone terriblemente lenta la aplicación.
Yo ejecuto los filtros de la si... |
16 Y 32? | Leandro,
Has probado a hacer una llamada a SysRefresh() desde ese do while ? |
16 Y 32? | Hola, usando índices CDX puedes aplicar SCOPES, o puedes hacer TAGS condicionados, ésto agiliza de una manera muy significativa el proceso, que hasta el pelo se te volará.
Todo lo anterior es mucho mejor que usar 'hard code' por ejemplo:
IF control = '04' <-----
Intentalo y verás.
Saludos
José Luis |
16 Y 32? | por experiencia que he tenido [x]harbor+fwh en manejos de tablas en mucho mas rapido en 32 bits que en 16 bits. <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
donde es mas rapido el 16 bits es en la salida de datos en aplicaciones modo consola. <!-- s:-( --><img src="{SM... |
16 Y 32? | [quote="leandro":1cdg91ok]
SELE MYDBF
SET FILT TO CONTRO="04"
DBGOTOP()
DO WHILE !EOF()
.......
SKIP
ENDDO
[/quote:1cdg91ok]
Leandro,
En este caso, yo creo que el filtro está fuera de lugar:
1) La base MyDbf debe tener un índice por el campo control
2) SELE MYDBF
SET INDEX TO control
IF DBSEEK ("O4... |
16 Y 32? | Amigos de foro muchas gracias por las respuestas...
Pero... y perdonen la ignorancia... la verdad nunca he usado los scopes ... alguien me puede regalar un ejemplillo. De antemano gracias. |
16 Y 32? | [quote="leandro":rfuwk3bm]Amigos de foro muchas gracias por las respuestas...
Pero... y perdonen la ignorancia... la verdad nunca he usado los scopes ... alguien me puede regalar un ejemplillo. De antemano gracias.[/quote:rfuwk3bm]
Seguramente al escribir tu ultimo mensaje, no has leido el mio (lo hemos escrito pract... |
16 Y 32? | Amigo uso indices CDX...
Gracias |
16 Y 32? | Leandro
Como te comentan los demas compañeros, debes tener la base indexada sobre los campos que vas a aplicar el scope, ya despues aplicas esto :
0 -> inicio del rango
1 -> final del rango
o a lo que es igual a decir desde-hasta <!-- s:wink: --><img src="{SMILIES_PATH}/icon_wink.gif" alt=":wink:" title="Wink" /><!... |
16 bits tranparentes | Qué embidia de diálogos tranparentes con los 32 bits. Menos mal que con 16 bits tambien se puede: Ahí va una clase que ayyuda
#Include "FiveWin.ch"
*#Include "MisFunc.ch"
#define GWL_STYLE -16
CLASS TDIAG OF TDIALOG
CLASSDATA lRegistered AS LOGICAL
DATA lSomb AS LOGICAL INIT .F.
DATA hFond,hPen,nD... |
16 bits tranparentes | Manu,
Está muy bien! |
16 bits tranparentes | Muy buenos Manuel, pero lo que mas me han impresionado son los folders que utilizas.- ¿Como lo haces?
Gracias y un saludo desde Málaga |
16 bits tranparentes | Muchas gracias Manuel, pero no son folders, son BITMAPS, pero da el pego. Los dialogo son NOWAIT sobre un WINDOW normal. Va muy bien; parecido al entorno MDI, pero, en ciertos aspectos, más controlable, si nunca se va a mostrar.
Hay dos BITMAPS para cada solapa, la activa y las otras, inactivas. |
16 bits tranparentes | Bueno, en realidad, son tres BITMAPS por cada solapa, se me olvidaba nombrar los que se 'ReLoadea'n cuando paso el Mouse por encima (un poco más altos, para dar la impresión de que las solapas se elevan al pasar el ratón por encima). |
16 bits tranparentes | Repasando mi clase TDIAG me he dado cuenta de un pequeño error, ::PintSombra sólo debe ejecutarse (en bStartPaint) si ::lSomb es .T.
Perdon!!
Lo que pasa es que yo siempre la utilizo con color de sombra. |
16 bits tranparentes | excelente trabajo, Felicidades |
16-bit DLL to 32-bit DLL | I have a resource DLL which was created 2003 and it contains dialogs, bitmaps, cursors and icons
I can local this DLL into Borland Workshop.
The problem is that all ICON, BITMAP,CUR are visible in Workshop, but I don't have the files on disk for these resources. So when I "view resource as text" is shows the resource i... |
16-bit DLL to 32-bit DLL | Codemaker:
Perhaps you can open your 16bits DLL using Pelles C, then FILE => SAVE AS ... to
export to .RC or .RES files.
Regards |
16-bit DLL to 32-bit DLL | <!-- m --><a class="postlink" href="http://forums.fivetechsupport.com/viewtopic.php?f=6&t=14830&hilit=convertir+a+dll+de+32+bits#p76597">http://forums.fivetechsupport.com/viewt ... its#p76597</a><!-- m -->
CONVERT A 16b DLL TO 32b DLL using the 4.3 PellesC (Google traduction)
1 - Open the 16b Dll with Resource WorkS... |
16-bit DLL to 32-bit DLL | Boris,
If you cannot succeed with the suggestions of our friends, try to send me the DLL and I'll see what I can do.
EMG |
16-bit DLL to 32-bit DLL | Boris
If I recall .. ( if you have BRW ) you can open your .dll and export all the images out to disk ( save resource as like Francisco mentions) .. then use your 32 bit editor and re-import them back in individually. I know that can be long and tedious work, but I do not know of any tool than can convert your 16 bit ... |
16-bit DLL to 32-bit DLL | If there are a lot of bitmaps and icons to export, I think its relatively simple to parse the RC and get the bytes and create the output file.
I have not tested it myself, but if there are lots of files to export, it seems as a possible valid solution <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" tit... |
16.01 B2 error w/ xHarbour | The following code is used to build a browse:
// Create the browse
REDEFINE XBROWSE oLbxo ;
DATASOURCE oOrders ;
HEADERS " Done ", "Paid", "Type", "W/O #", "Company", sLbl[1], "Due Date", "Time", " Status " ;
COLUMNS "ordnot", "Totals", "status", "wrkord", "ordcom", "ordveh", "duedat", "duetim", "CliUs1... |
16.01 B2 error w/ xHarbour | Tim,
Is it an EXE (your app) runtime error or a compiling time error ? |
16.01 B2 error w/ xHarbour | Runtime error
Sent from my iPhone using Tapatalk |
16.01 B2 error w/ xHarbour | Tim,
Do you get a list of modules when the app GPFs ?
Please post here the complete report that you get, thanks |
16.01 B2 error w/ xHarbour | There is no FW error. It just says the program stopped working. It does work with Harbour but not xHarbour. This worked with 15.12 but not 16.01.
This unicode stuff with xbrowse is breaking a lot of code that worked previously. The changes in 15.12 broke the column auto spacing that was written to match the documen... |
16.01 B2 error w/ xHarbour | Tim,
We are going to review it asap, thanks for your feedback |
16.01 B2 error w/ xHarbour | What is in HB_OUT.LOG? |
16.01 B2 error w/ xHarbour | It did not create one. |
16.01 B2 error w/ xHarbour | AHA, it's Harbour only feature ... |
16.01 Build 2 error | I recompiled a function to send mails with new fwh 1602 and I saw a big problem
first the controls are not on the same places and the sizes are different from fwh15_01
also the ttitle class is not how I see on fwh15_01
I think we have a big problem why I must re-write many procedures ?
[img:1c4rbwkm]http://w... |
16.01 Build 2 error | resolved !!
I must erase truepixel |
16.10 Unresolved external symbol _hb_partdt | xLINK: error: Unresolved external symbol '_hb_partdt referenced from FiveHMX.lib(VALTOSTR.obj)'.
I'm using xHarbour.com |
16.10 Unresolved external symbol _hb_partdt | Diego,
We are checking it to implement a solution for it asap
many thanks |
16.10 Unresolved external symbol _hb_partdt | Hello,
Can you provide the library name that contains the subject unresolved external symbol?
Turbo Incremental Link 5.69 Copyright (c) 1997-2005 Borland
Error: Unresolved external '_HB_FUN_HB_TSTOUTC' referenced from C:\FWH1212\LIB\FIVEH.LIB|VALTOSTR |
16.10 Unresolved external symbol _hb_partdt | Darrell,
Please try with hbformat.lib |
16.10 Unresolved external symbol _hb_partdt | Hi Antonio,
That LIB does not exist in the latest FWH version.
Sincerely, |
16.10 Unresolved external symbol _hb_partdt | [quote="cdmmaui":3szu49yu]Hi Antonio,
That LIB does not exist in the latest FWH version.
Sincerely,[/quote:3szu49yu]
This lib It's a lib of harbour distribution |
16.10 Unresolved external symbol _hb_partdt | Hello,
I am still getting the same error. Do you need to upgrade to Harbour BCC7?
Sincerely, |
16.10 Unresolved external symbol _hb_partdt | Hello,
I tried to build (BUILDH.BAT) a sample application and got the following errors.
ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿
³ FiveWin for Harbour 16.10 - Oct. 2016 Harbour development power ³Ü
³ (c) FiveTech 1993-2016 for Microsoft Windows 9X/NT/200X/ME/XP/Vista/... |
16.10 Unresolved external symbol _hb_partdt | Darrell,
You are using FWH 16.10 but you are linking libs from C:\FWH1212
Error: Unresolved external '_HB_FUN_OCCURS' referenced from C:\[color=#FF0000:1qfqinfa]FWH1212[/color:1qfqinfa]\LIB\FIVEH.LIB|XBROWSE
Error: Unresolved external '_hb_extIsNil' referenced from C:\[color=#FF0000:1qfqinfa]FWH1212[/color:1qfqinfa]\... |
16.10 Unresolved external symbol _hb_partdt | Darrell,
Yes, if you plan to use FWH 16.10 then you need bcc 7 |
16.10 Unresolved external symbol _hb_partdt | You also need to use the latest version of Harbour |
1994 | I think this video is so great that I post it again as a own topic
Bill Gates - at this time 39 year old - in 1994:
Information At Your Fingertips
VIDEO
Comdex 1994 – Keynote Bill Gates – Information At Your Fingertips (2005)
<!-- m --><a class="postlink" href="http://yukon.twi.tudelft.nl/commercials/index.html">http:... |
1st FWH + [x]Harbour 2017 international conference | [url:3qhc5rlm]http://www.bergland.info/allgemein/fivewin-seminar-july-2017/[/url:3qhc5rlm]
[img:3qhc5rlm]https://bitbucket.org/fivetech/screenshots/downloads/sillian1.JPG[/img:3qhc5rlm] |
1st FWH + [x]Harbour 2017 international conference | EXITOS...! y no suerte...ya que esa, la suerte, es la excusa de los fracasados...saludos... <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" title="Shocked" /><!-- s:shock: --> |
1st FWH + [x]Harbour 2017 international conference | Count me in! Thats great!
Günther |
1st FWH + [x]Harbour 2017 international conference | We need 25 attendees to cover the expenses
Also if we could get some sponsors that would be really great <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
1st FWH + [x]Harbour 2017 international conference | This looks great. I will try to make it although it is a bit far from California. My tentative plan is to fly into Milan/Malpensa, head up through Switzerland through Zurich, then Munich and Salzburg, into Austria, check out Vienna, then perhaps over to Budapest, down through Slovenia to Trieste and back to Milan. ... |
1st FWH + [x]Harbour 2017 international conference | dtussman, the place of FWH-seminar is <200 km far from Salzburg! |
1st FWH + [x]Harbour 2017 international conference | I attended all of the Ashton Tate ( dBase ), Clipper, and Computer Associates ( CA ) conferences. They were held in Southern California ( Culver City was the headquarters of Ashton Tate and Nantucket ), Palm Springs, and then the Clipper User's Group sponsored some in San Diego. ( Mik coordinated those ). |
1st FWH + [x]Harbour 2017 international conference | Tim,
Do you have photos of them to share with us ? <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
1st FWH + [x]Harbour 2017 international conference | I wish I did ... but if I have any, they are stored in a box of very old stuff. The best I have are original dBase II and dBase III disks, the original Clipper disks ( and manuals ) ... and likely the CA ( Visual Objects ) disks.
I'm very close to the area where all of this took place ( less than an hour drive to the... |
1st FWH + [x]Harbour 2017 international conference | Very good !
I will be there +1 .
I think you have to talk about FiveWeb and Tools to put an apps on the web .
How long did you plan the meeting 1 day 2 days ?
Thanks and see you in July ! |
1st FWH + [x]Harbour 2017 international conference | Two full days and half day the third one
Very good <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
1st FWH + [x]Harbour 2017 international conference | Master Antonio i'm from Quito Ecuador
wath route airport ? near this city ?
Please we need to know for tickets purpose
best regards
Wilson |
1st FWH + [x]Harbour 2017 international conference | wilsongamboa, i am from Austria. The nearest international airport is Klagenfurt (KLU) ca. 150 km from the conference. |
1st FWH + [x]Harbour 2017 international conference | Mr Günther
Is Klagenfurt an International airport? May be Innsbruck is better connected for international passengers from out-side Europe. |
1st FWH + [x]Harbour 2017 international conference | Mr. Rao, maybe Innsbruck is better connected but the transfer to the conference is shorter from Klagenfurt. Potentially you must at first fly to Vienna or Munich as an direct flight is not very probably. |
1st FWH + [x]Harbour 2017 international conference | Dear Mr. Rao,
we will offer a shuttle service. Let’s wait how the attendees plan to come.
Then we coordinate the transfer. Any how we personally care about the transfer.
Munich Airport seems for me the best connected one.
Best regards,
Otto |
1st FWH + [x]Harbour 2017 international conference | Good afternoon
we plan to travel with my wife
will be a pleasure to Know all the master and monsters of harbour - fivewin programing
I'll wait till the even will confirm to start sell our tickets ( are expensive )
Many Thanks
Wilson
From Quito Ecuador
Sudamerica |
1st FWH + [x]Harbour 2017 international conference | Dear FiveWinners,
the FWH + [x]Harbour 2017 international conference in the Dolomites is just a few month away.
Please can you tell us if you are interested in participating so that we can go on in the planning process.
Kind regards and hope to see you this summer
Family Atzwanger (Otto, Renate, Iris und Ruth)
<!-- ... |
1st FWH + [x]Harbour 2017 international conference | Current list of speakers and attendees:
Cristobal Navarro
Reinaldo Crespo
Nageswararao Gunupudi
Antonio Linares
Otto
Günther
DTussman
Jack
Wilson
Biel
Philippe Jacquet |
1st FWH + [x]Harbour 2017 international conference | Antonio,
Please add me to the list.
Maurizio
<!-- w --><a class="postlink" href="http://www.nipeservice.com">www.nipeservice.com</a><!-- w --> |
1st FWH + [x]Harbour 2017 international conference | thanks,
Current list of speakers and attendees:
Cristobal Navarro
Reinaldo Crespo
Nageswararao Gunupudi
Antonio Linares
Otto
Günther
DTussman
Jack
Wilson
Biel
Philippe Jacquet
Maurizio |
1st FWH + [x]Harbour 2017 international conference | To start with I am considering discussing the following topics in the seminar. This is a draft and will be improved on the basis of feedback and suggestions.
[b:5e6sem4o]XBROWSE[/b:5e6sem4o]
[b:5e6sem4o]Creation and configuration:[/b:5e6sem4o]
- Recommended ways to create and cofigure. Comparision of alternatives. M... |
1st FWH + [x]Harbour 2017 international conference | Current list of speakers and attendees:
Cristobal Navarro
Reinaldo Crespo
Nageswararao Gunupudi
Antonio Linares
Otto
Günther
DTussman
Jack
Wilson
Biel
Philippe Jacquet
Maurizio
Tomas (Cybertel from Seoul) (two attendees) |
1st FWH + [x]Harbour 2017 international conference | As this week is the Barcelona Mobile International show, my great friend and client Back Nam Sam from Seul
has come to Marbella for two days to visit me.
He told me that he will assist to the 1st international FWH and Harbour users conference and also he will do
a presentation of his company PTT (Push to Talk) softwar... |
1st FWH + [x]Harbour 2017 international conference | [url:38knpt9w]https://groups.google.com/forum/#!topic/harbour-users/tXgmb0XZLTg[/url:38knpt9w] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.