topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
Congelar columnas en xBrowse (Solucionado) | Gracias Rolando, pero no quiero que las columnas 4 al 30 queden ocultas.
Estoy usando el nFreeze para congelar las tres primeras columnas de modo que cuando muevo el puntero a la derecha (hasta la última columna), varias columnas quedan ocultas (automáticamente) debido a que las tres primeras columnas están congeladas.
oBrw:nFreeze := 3
Hasta ahí todo funciona bien.
Mi problema es que cuando muevo el puntero hacia la izquierda llevandolo a la tercer columna (congelada) debería aparecer la columnas ocultadas, pero no sucede así.
Las columnas que quedaron ocultas solo aparecen cuando llego con el puntero a la primer columna y continúo pulsando la tecla hacia la izquierda. |
Congelar columnas en xBrowse (Solucionado) | Abel.
Yo tambien tengo ese pequeño inconveniente.
Un un dialog tengo 2 xbrowses. En el primero 50 columnas y congelada la 1 y 2da col, y en el segundo tengo 4 columnas. Al recorrer las columnas en el primer browse, se va actualizando el segundo con algunos datos. Al inicio y si voy hacia la derecha, todo correcto, pero cuando regreso, al llegar a las congeladas, ya no funciona el refrescamiento del 2do browse aunque llegue hasta la primer col congelada y siga presionando hacia la izquierda. Por ejemplo, visibles tengo 8 columnas incluyendo las congeladas. Si llego hasta la 50 y regreso, cuando llego a la 42 que está antes de las congeladas, ya no trabaja lo descrito, ni van apareciendo estas columnas, sino hasta cuando llego a la numero 1 y continuo con las flechitas hacia la izquierda.
Creo que xbrowse aun no cuenta con esta funcionalidad (si no me equivoco). Sería interesante si se pudiera contar con ella.
Por el momento, he codificado en el keydown para que manteniendo oprimida la tecla VK_CONTROL e introduciendo un valor, se active la columna deseada, y por lo consiguiente la accion que esperaba.
Saludos. |
Congelar columnas en xBrowse (Solucionado) | [quote="abelcervantes":1x6ejtoc]Tengo el siguiente inconveniente cuando congelo columnas en el xBrowse:
Tengo de un xBrowse de 30 columnas, congelo la columna 3, muevo la celda activa hacia la derecha (hasta el final), algunas columnas quedan ocultas ( 4, 5, 6, etc.) por el congelamiento. Hasta ahí todo está bien.
El problema es cuando pulso la tecla hacia la izquierda para volver, las columnas que quedaron ocultas ( 4, 5, 6, etc.) no aparecen hasta que llego a la columna 1 y continúo pulsando la tecla a la izquierda recién empiezan a aparecer las columnas ocultadas.
¿No deberían aparecer las columnas ocultadas (4, 5, 6, etc.) cuando este intentando llegar a la columna 3?[/quote:1x6ejtoc]
This is the behaviour of xbrowse |
Congelar columnas en xBrowse (Solucionado) | Abel, prueba esto: <!-- l --><a class="postlink-local" href="http://fivetechsupport.com/forums/viewtopic.php?f=6&t=26360#p145111">viewtopic.php?f=6&t=26360#p145111</a><!-- l -->
Saludos. |
Congelar columnas en xBrowse (Solucionado) | Estimado Francisco:
Antes que nada, muchas gracias por tu ayuda, estoy seguro que con el dato que me diste podré soluccionar mi problema.
Solo que... disculpa la ignorancia, pero, ¿dónde coloco la rutina (metodo) que has desarrollado?
¿Acaso debo colocarlo en mi programa? y ¿que pasos debo seguir para incluirlo? |
Congelar columnas en xBrowse (Solucionado) | Abel.
Yo acostumbro modificar la class original, y reconstruir la libreria.
Otra manera, más sencilla es hacer una copia de la class txbrowse al directorio de tu aplicacion, y ahí sustituyes el METHOD Goleft() por el que te muestro mas abajo. En esto colaboramos Rolando y el suscrito, y posteriormente fue perfeccionado por Mr. Nages. Una vez sustituido el metodo, agregas el prg a tu compilacion y listo.
[code=fw:3feqcu4y]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">METHOD</span> GoLeft<span style="color: #000000;">(</span> lOffset, lRefresh <span style="color: #000000;">)</span> <span style="color: #00C800;">CLASS</span> TXBrowse<br /><br /> ::<span style="color: #000000;">CancelEdit</span><span style="color: #000000;">(</span><span style="color: #000000;">)</span><br /><br /> <span style="color: #00C800;">if</span> ::<span style="color: #000000;">nMarqueeStyle</span> == MARQSTYLE_NOMARQUEE .or. <span style="color: #000000;">(</span> ::<span style="color: #000000;">nMarqueeStyle</span> >= MARQSTYLE_HIGHLROW .and. ::<span style="color: #000000;">bClrRowFocus</span> == <span style="color: #00C800;">nil</span> <span style="color: #000000;">)</span><br /> lOffset := .t.<br /> <span style="color: #00C800;">endif</span><br /><br /> <span style="color: #00C800;">DEFAULT</span> lOffset := .f., lRefresh := .t.<br /><br /> <span style="color: #B900B9;">// Begin insert new code</span><br /> <span style="color: #00C800;">if</span> ::<span style="color: #000000;">nFreeze</span> > <span style="color: #000000;">0</span> .and. ::<span style="color: #000000;">nColOffSet</span> > <span style="color: #000000;">1</span> .and. ::<span style="color: #000000;">nColSel</span> == ::<span style="color: #000000;">nFreeze</span> + <span style="color: #000000;">1</span><br /> lOffset := .t.<br /> <span style="color: #00C800;">endif</span><br /> <span style="color: #B900B9;">// end of inserted code</span><br /><br /> <span style="color: #00C800;">if</span> <span style="color: #000000;">(</span> !lOffset .and. ::<span style="color: #000000;">IsDisplayPosVisible</span><span style="color: #000000;">(</span> ::<span style="color: #000000;">nColSel</span> - <span style="color: #000000;">1</span> <span style="color: #000000;">)</span> <span style="color: #000000;">)</span> .or. ;<br /> <span style="color: #000000;">(</span> ::<span style="color: #000000;">nColOffset</span> == <span style="color: #000000;">1</span> .and. ::<span style="color: #000000;">nColSel</span> > <span style="color: #000000;">1</span> <span style="color: #000000;">)</span><br /> ::<span style="color: #000000;">nColSel</span>--<br /> <span style="color: #00C800;">if</span> lRefresh<br /> <span style="color: #00C800;">if</span> ::<span style="color: #000000;">FullPaint</span><span style="color: #000000;">(</span><span style="color: #000000;">)</span><br /> ::<span style="color: #00C800;">Super</span>:<span style="color: #0000ff;">Refresh</span><span style="color: #000000;">(</span> .t. <span style="color: #000000;">)</span><br /> <span style="color: #00C800;">else</span><br /> ::<span style="color: #000000;">DrawLine</span><span style="color: #000000;">(</span> .t. <span style="color: #000000;">)</span><br /> <span style="color: #00C800;">endif</span><br /> <span style="color: #00C800;">endif</span><br /> elseif ::<span style="color: #000000;">nColOffset</span> > <span style="color: #000000;">1</span><br /> ::<span style="color: #000000;">nColOffset</span>--<br /> ::<span style="color: #000000;">GetDisplayCols</span><span style="color: #000000;">(</span><span style="color: #000000;">)</span><br /> <span style="color: #00C800;">if</span> lRefresh<br /> ::<span style="color: #00C800;">Super</span>:<span style="color: #0000ff;">Refresh</span><span style="color: #000000;">(</span> ::<span style="color: #000000;">FullPaint</span><span style="color: #000000;">(</span><span style="color: #000000;">)</span> <span style="color: #000000;">)</span><br /> <span style="color: #00C800;">endif</span><br /> <span style="color: #00C800;">endif</span><br /><br /> <span style="color: #00C800;">if</span> ::<span style="color: #000000;">oHScroll</span> != <span style="color: #00C800;">nil</span><br /> ::<span style="color: #000000;">oHScroll</span>:<span style="color: #000000;">GoUp</span><span style="color: #000000;">(</span><span style="color: #000000;">)</span><br /> <span style="color: #00C800;">endif</span><br /> ::<span style="color: #0000ff;">Change</span><span style="color: #000000;">(</span> .f. <span style="color: #000000;">)</span><br /><br /><span style="color: #00C800;">return</span> <span style="color: #00C800;">nil</span><br /> </div>[/code:3feqcu4y]
Cualquier duda posteala en este maravilloso foro.
Saludos. |
Congelar columnas en xBrowse (Solucionado) | Tambien puedes sobre-escribir el metodo. Mira aqui:
<!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=6&t=6317&hilit=sobreescribir+method&sid=78ce4d41cc2c248cf5733591351f9419#p28178">viewtopic.php?f=6&t=6317&hilit=sobreescribir+method&sid=78ce4d41cc2c248cf5733591351f9419#p28178</a><!-- l -->
Saludos. |
Congelar columnas en xBrowse (Solucionado) | Estimado Francisco:
¡Muchisimas gracias!
Logré solucionar mi problema con la rutina y el procedimiento que me recomendaste.
Realmente este es un maravilloso foro. |
Congratulations to all Daddys in their day today :) | [color=#4080BF:1jiolxcf][size=200:1jiolxcf][b:1jiolxcf]Congratulations to all daddys of this super group <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
that spend very nice with many gifts <!-- s:mrgreen: --><img src="{SMILIES_PATH}/icon_mrgreen.gif" alt=":mrgreen:" title="Mr. Green" /><!-- s:mrgreen: -->
Regards <!-- s:wink: --><img src="{SMILIES_PATH}/icon_wink.gif" alt=":wink:" title="Wink" /><!-- s:wink: --> [/b:1jiolxcf][/size:1jiolxcf][/color:1jiolxcf] |
Congratulations to all Daddys in their day today :) | Aida,
Thanks a lot for your congratulations.
But, here in Belgium it was fathers day last week. |
Congreso #ASLAN2016 | Los próximos [b:1evtqj6e]13 y 14 DE ABRIL EN MADRID[/b:1evtqj6e] se celebra un congreso de tecnologías/redes/software/etc...
Más de 60 Stands atendidos por expertos profesionales, que le podrán asesorar personalmente y en profundidad, sobre las tecnologías introducidas a través de los diferentes foros simultáneos.
El lugar es en el [b:1evtqj6e]Palacio Municipal de Congresos de Madrid[/b:1evtqj6e] (Campo de las Naciones)
<!-- m --><a class="postlink" href="https://www.google.es/maps/place/Palacio+Municipal+de+Congresos+de+Madrid/@40.4623278,-3.6167573,18z/data=!4m2!3m1!1s0xd422e515a8bd42d:0x441f1d5f4b295e8">https://www.google.es/maps/place/Palaci ... d5f4b295e8</a><!-- m -->
[b:1evtqj6e]La inscripción es gratuita[/b:1evtqj6e].
<!-- m --><a class="postlink" href="http://www.congreso.aslan.es/2016/gestiones_online_2016/_pT2aGf9jv2xSpnGTaRzaG-yLCm0dKWab2E093Jar7ZO09GhfefRA4rv1peko05fJ">http://www.congreso.aslan.es/2016/gesti ... v1peko05fJ</a><!-- m -->
Programa Oficial #ASLAN2016
<!-- m --><a class="postlink" href="http://www.congreso.aslan.es/programa?utm_campaign=ASLAN2016&utm_source=ASLAN&utm_medium=2">http://www.congreso.aslan.es/programa?u ... m_medium=2</a><!-- m -->
Empresas Participantes y EXPO #ASLAN2016
<!-- m --><a class="postlink" href="http://www.congreso.aslan.es/expo?utm_campaign=ASLAN2016&utm_source=ASLAN&utm_medium=2">http://www.congreso.aslan.es/expo?utm_c ... m_medium=2</a><!-- m -->
[img:1evtqj6e]http://www.aslan.es/imgfiles/CNF/2016/images/PlanoWeb.png[/img:1evtqj6e] |
Connect to Advantage Database | Hello.
I wish to ask if someone has an idea on how to connect with a server running Advantage Database Server.
I must make an application on Linux that must connect with this database, but I can't find any information.
Thanks a lot.
Massimo |
Connect to Advantage Database | Massimo,
[url:hr5hluyx]http://devzone.advantagedatabase.com/dz/content.aspx?Key=20&Release=16&Product=5&Platform=10[/url:hr5hluyx] |
Connect to Advantage Database | Thanks Antonio.
But in Windows I can use a Lib to link, and some Dll's for the connection.
In Linux how can this be made ? |
Connect to Advantage Database | Massimo,
I just downloaded it and it includes a so file:
[quote:3fxrknpq]An .so file is a compiled library file. It stands for "Shared Object" and is analogous to a Windows DLL.[/quote:3fxrknpq]
It also comes with a HELP folder. |
Connect to Advantage Database | Great.
I try to make some tests.
Thanks a lot Antonio.
Massimo |
Connect to Advantage Database | Hi Antonio ,
I try to make some test on FLH this morning.
After install UBUNTU 14.04 LTS and all the packages needs to
compile FLH i've a lot of errors like this:
compiling...
Harbour 2.1.0rc2 (Rev. 16643)
Copyright (c) 1999-2011, <!-- m --><a class="postlink" href="http://harbour-project.org/">http://harbour-project.org/</a><!-- m -->
Compiling 'tutor01.prg'...
Lines 1097, Functions/Procedures 1
Generating C source output to 'tutor01.c'... Done.
compiling C module...
linking...
./../lib/libfive.a(errsys.o): nella funzione "hb_vm_SymbolInit_ERRSYS":
errsys.c:(.text+0x2e): riferimento non definito a "hb_vmProcessSymbolsEx"
./../lib/libfive.a(harbour.o): nella funzione "hb_vm_SymbolInit_HARBOUR":
harbour.c:(.text+0x2e): riferimento non definito a "hb_vmProcessSymbolsEx"
./../lib/libfive.a(harbour.o):(.data+0x18): riferimento non definito a "HB_FUN_HB_DBG_VMSTKLCOUNT"
./../lib/libfive.a(harbour.o):(.data+0x48): riferimento non definito a "HB_FUN_HB_DBG_VMPARLLIST"
./../lib/libfive.a(harbour.o):(.data+0xd8): riferimento non definito a "HB_FUN_HB_DBG_VMVARLGET"
./../lib/libfive.a(harbour.o):(.data+0xf8): riferimento non definito a "HB_FUN_HB_DBG_VMVARSLEN"
./../lib/libfive.a(listbox.o): nella funzione "hb_vm_SymbolInit_LISTBOX":
listbox.c:(.text+0x2e): riferimento non definito a "hb_vmProcessSymbolsEx"
./../lib/libfive.a(say.o): nella funzione "hb_vm_SymbolInit_SAY":
say.c:(.text+0x2e): riferimento non definito a "hb_vmProcessSymbolsEx"
./../lib/libfive.a(valblank.o): nella funzione "hb_vm_SymbolInit_VALBLANK":
valblank.c:(.text+0x2e): riferimento non definito a "hb_vmProcessSymbolsEx"
./../lib/libfive.a(window.o): nella funzione "hb_vm_SymbolInit_WINDOW":
window.c:(.text+0x2e): riferimento non definito a "hb_vmProcessSymbolsEx"
./../lib/libfive.a(button.o): nella funzione "hb_vm_SymbolInit_BUTTON":
button.c:(.text+0x2e): riferimento non definito a "hb_vmProcessSymbolsEx"
./../lib/libfive.a(control.o):control.c:(.text+0x2e): seguono ulteriori riferimenti non definiti a "hb_vmProcessSymbolsEx"
./../lib/libfivec.a(buttons.o): nella funzione "HB_FUN_CREATEBUTTON":
buttons.c:(.text+0x2f): riferimento non definito a "gtk_button_new_from_stock"
buttons.c:(.text+0x48): riferimento non definito a "gtk_button_new_with_mnemonic"
buttons.c:(.text+0x55): riferimento non definito a "gtk_object_get_type"
buttons.c:(.text+0x64): riferimento non definito a "g_type_check_instance_cast"
buttons.c:(.text+0xa0): riferimento non definito a "gtk_signal_connect_full"
buttons.c:(.text+0xaa): riferimento non definito a "gtk_object_get_type"
buttons.c:(.text+0xb9): riferimento non definito a "g_type_check_instance_cast"
buttons.c:(.text+0xf5): riferimento non definito a "gtk_signal_connect_full"
./../lib/libfivec.a(buttons.o): nella funzione "HB_FUN_CREATEBTN":
buttons.c:(.text+0x112): riferimento non definito a "gtk_object_get_type"
buttons.c:(.text+0x12c): riferimento non definito a "g_type_check_instance_cast"
buttons.c:(.text+0x13c): riferimento non definito a "gtk_object_get_data"
buttons.c:(.text+0x154): riferimento non definito a "gtk_toolbar_get_type"
buttons.c:(.text+0x163): riferimento non definito a "g_type_check_instance_cast"
buttons.c:(.text+0x16b): riferimento non definito a "gtk_toolbar_append_space"
buttons.c:(.text+0x196): riferimento non definito a "gtk_toolbar_get_type"
buttons.c:(.text+0x1a5): riferimento non definito a "g_type_check_instance_cast"
buttons.c:(.text+0x1d9): riferimento non definito a "gtk_toolbar_insert_stock"
buttons.c:(.text+0x1f4): riferimento non definito a "gtk_toolbar_get_type"
buttons.c:(.text+0x203): riferimento non definito a "g_type_check_instance_cast"
buttons.c:(.text+0x247): riferimento non definito a "gtk_toolbar_append_element"
buttons.c:(.text+0x24f): riferimento non definito a "gtk_label_get_type"
buttons.c:(.text+0x256): riferimento non definito a "gtk_toolbar_get_type"
buttons.c:(.text+0x265): riferimento non definito a "g_type_check_instance_cast"
buttons.c:(.text+0x270): riferimento non definito a "g_list_last"
buttons.c:(.text+0x281): riferimento non definito a "g_type_check_instance_cast"
buttons.c:(.text+0x291): riferimento non definito a "gtk_label_set_use_underline"
buttons.c:(.text+0x29b): riferimento non definito a "gtk_object_get_type"
buttons.c:(.text+0x2aa): riferimento non definito a "g_type_check_instance_cast"
buttons.c:(.text+0x2e6): riferimento non definito a "gtk_signal_connect_full"
./../lib/libfivec.a(buttons.o): nella funzione "HB_FUN_BTNSETTEXT":
buttons.c:(.text+0x312): riferimento non definito a "gtk_button_get_type"
buttons.c:(.text+0x32c): riferimento non definito a "g_type_check_instance_cast"
buttons.c:(.text+0x338): riferimento non definito a "gtk_button_set_label"
./../lib/libfivec.a(buttons.o): nella funzione "HB_FUN_BTNGETTEXT":
buttons.c:(.text+0x34b): riferimento non definito a "gtk_button_get_type"
buttons.c:(.text+0x365): riferimento non definito a "g_type_check_instance_cast"
buttons.c:(.text+0x36d): riferimento non definito a "gtk_button_get_label"
./../lib/libfivec.a(dialogs.o): nella funzione "HB_FUN_CREATEDIALOG":
dialogs.c:(.text+0x8): riferimento non definito a "gtk_window_list_toplevels"
dialogs.c:(.text+0x11): riferimento non definito a "gtk_window_list_toplevels"
dialogs.c:(.text+0x31): riferimento non definito a "gtk_window_new"
dialogs.c:(.text+0x39): riferimento non definito a "gtk_fixed_new"
dialogs.c:(.text+0x54): riferimento non definito a "gtk_container_get_type"
dialogs.c:(.text+0x63): riferimento non definito a "g_type_check_instance_cast"
dialogs.c:(.text+0x74): riferimento non definito a "gtk_container_add"
dialogs.c:(.text+0x79): riferimento non definito a "gtk_object_get_type"
dialogs.c:(.text+0x88): riferimento non definito a "g_type_check_instance_cast"
dialogs.c:(.text+0xa1): riferimento non definito a "gtk_object_set_data"
dialogs.c:(.text+0xa6): riferimento non definito a "gtk_window_get_type"
dialogs.c:(.text+0xb5): riferimento non definito a "g_type_check_instance_cast"
dialogs.c:(.text+0xd5): riferimento non definito a "gtk_window_set_policy"
dialogs.c:(.text+0xdf): riferimento non definito a "gtk_object_get_type"
dialogs.c:(.text+0xee): riferimento non definito a "g_type_check_instance_cast"
dialogs.c:(.text+0x12a): riferimento non definito a "gtk_signal_connect_full"
dialogs.c:(.text+0x134): riferimento non definito a "gtk_object_get_type"
dialogs.c:(.text+0x143): riferimento non definito a "g_type_check_instance_cast"
dialogs.c:(.text+0x17f): riferimento non definito a "gtk_signal_connect_full"
dialogs.c:(.text+0x192): riferimento non definito a "gtk_widget_set_events"
./../lib/libfivec.a(dialogs.o): nella funzione "HB_FUN_SETMODAL":
dialogs.c:(.text+0x1b9): riferimento non definito a "gtk_window_get_type"
dialogs.c:(.text+0x1cc): riferimento non definito a "g_type_check_instance_cast"
dialogs.c:(.text+0x1d3): riferimento non definito a "gtk_window_get_type"
dialogs.c:(.text+0x1ed): riferimento non definito a "g_type_check_instance_cast"
dialogs.c:(.text+0x1f9): riferimento non definito a "gtk_window_set_transient_for"
dialogs.c:(.text+0x1fe): riferimento non definito a "gtk_window_get_type"
dialogs.c:(.text+0x218): riferimento non definito a "g_type_check_instance_cast"
dialogs.c:(.text+0x228): riferimento non definito a "gtk_window_set_modal"
./../lib/libfivec.a(listboxes.o): nella funzione "HB_FUN_CREATELISTBOX":
listboxes.c:(.text+0x17): riferimento non definito a "gtk_viewport_new"
listboxes.c:(.text+0x2e): riferimento non definito a "gtk_scrolled_window_new"
listboxes.c:(.text+0x36): riferimento non definito a "gtk_list_new"
listboxes.c:(.text+0x3e): riferimento non definito a "gtk_container_get_type"
listboxes.c:(.text+0x4d): riferimento non definito a "g_type_check_instance_cast"
listboxes.c:(.text+0x5e): riferimento non definito a "gtk_container_add"
listboxes.c:(.text+0x63): riferimento non definito a "gtk_container_get_type"
listboxes.c:(.text+0x72): riferimento non definito a "g_type_check_instance_cast"
listboxes.c:(.text+0x83): riferimento non definito a "gtk_container_add"
listboxes.c:(.text+0x88): riferimento non definito a "gtk_object_get_type"
listboxes.c:(.text+0x97): riferimento non definito a "g_type_check_instance_cast"
listboxes.c:(.text+0xb0): riferimento non definito a "gtk_object_set_data"
listboxes.c:(.text+0xb5): riferimento non definito a "gtk_object_get_type"
listboxes.c:(.text+0xc4): riferimento non definito a "g_type_check_instance_cast"
listboxes.c:(.text+0xd4): riferimento non definito a "gtk_scrolled_window_get_type"
listboxes.c:(.text+0xe3): riferimento non definito a "g_type_check_instance_cast"
listboxes.c:(.text+0xfb): riferimento non definito a "gtk_scrolled_window_set_policy"
listboxes.c:(.text+0x100): riferimento non definito a "gtk_list_get_type"
listboxes.c:(.text+0x10f): riferimento non definito a "g_type_check_instance_cast"
listboxes.c:(.text+0x11f): riferimento non definito a "gtk_list_set_selection_mode"
listboxes.c:(.text+0x129): riferimento non definito a "gtk_object_get_type"
listboxes.c:(.text+0x138): riferimento non definito a "g_type_check_instance_cast"
listboxes.c:(.text+0x175): riferimento non definito a "gtk_signal_connect_full"
./../lib/libfivec.a(listboxes.o): nella funzione "HB_FUN_LBXSETITEMS":
listboxes.c:(.text+0x192): riferimento non definito a "gtk_object_get_type"
listboxes.c:(.text+0x1ac): riferimento non definito a "g_type_check_instance_cast"
listboxes.c:(.text+0x1bc): riferimento non definito a "gtk_object_get_data"
listboxes.c:(.text+0x1fd): riferimento non definito a "gtk_list_item_new_with_label"
listboxes.c:(.text+0x20d): riferimento non definito a "gtk_object_get_type"
listboxes.c:(.text+0x21c): riferimento non definito a "g_type_check_instance_cast"
listboxes.c:(.text+0x230): riferimento non definito a "gtk_object_set_data"
listboxes.c:(.text+0x235): riferimento non definito a "gtk_container_get_type"
listboxes.c:(.text+0x244): riferimento non definito a "g_type_check_instance_cast"
listboxes.c:(.text+0x255): riferimento non definito a "gtk_container_add"
./../lib/libfivec.a(listboxes.o): nella funzione "HB_FUN_LBXSELITEM":
listboxes.c:(.text+0x277): riferimento non definito a "gtk_object_get_type"
listboxes.c:(.text+0x291): riferimento non definito a "g_type_check_instance_cast"
listboxes.c:(.text+0x2a1): riferimento non definito a "gtk_object_get_data"
listboxes.c:(.text+0x2b8): riferimento non definito a "gtk_list_get_type"
listboxes.c:(.text+0x2c7): riferimento non definito a "g_type_check_instance_cast"
listboxes.c:(.text+0x2d3): riferimento non definito a "gtk_list_select_item"
./../lib/libfivec.a(lnx.o): nella funzione "CheckGtkInit":
lnx.c:(.text+0x1f): riferimento non definito a "gtk_init"
./../lib/libfivec.a(lnx.o): nella funzione "HB_FUN_WINRUN":
lnx.c:(.text+0x8e): riferimento non definito a "gtk_main"
./../lib/libfivec.a(lnx.o): nella funzione "ConfigureEvent":
lnx.c:(.text+0xd5): riferimento non definito a "gtk_object_get_type"
lnx.c:(.text+0xe4): riferimento non definito a "g_type_check_instance_cast"
lnx.c:(.text+0xf4): riferimento non definito a "gtk_object_get_data"
./../lib/libfivec.a(lnx.o): nella funzione "DeleteEvent":
lnx.c:(.text+0x14f): riferimento non definito a "gtk_object_get_type"
lnx.c:(.text+0x15e): riferimento non definito a "g_type_check_instance_cast"
lnx.c:(.text+0x16e): riferimento non definito a "gtk_object_get_data"
lnx.c:(.text+0x1b9): riferimento non definito a "gtk_main_quit"
./../lib/libfivec.a(lnx.o): nella funzione "HB_FUN_SYSREFRESH":
lnx.c:(.text+0x20c): riferimento non definito a "gtk_main_iteration"
lnx.c:(.text+0x211): riferimento non definito a "gtk_events_pending"
./../lib/libfivec.a(lnx.o): nella funzione "HB_FUN_SYSQUIT":
lnx.c:(.text+0x239): riferimento non definito a "gtk_main_quit"
lnx.c:(.text+0x24f): riferimento non definito a "gtk_widget_destroy"
./../lib/libfivec.a(lnx.o): nella funzione "HB_FUN_SETRESOURCES":
lnx.c:(.text+0x27b): riferimento non definito a "glade_xml_new"
./../lib/libfivec.a(lnx.o): nella funzione "HB_FUN_LOADDIALOG":
lnx.c:(.text+0x2a7): riferimento non definito a "glade_xml_get_widget"
lnx.c:(.text+0x2bf): riferimento non definito a "gtk_object_get_type"
lnx.c:(.text+0x2ce): riferimento non definito a "g_type_check_instance_cast"
lnx.c:(.text+0x30a): riferimento non definito a "gtk_signal_connect_full"
lnx.c:(.text+0x314): riferimento non definito a "gtk_object_get_type"
lnx.c:(.text+0x323): riferimento non definito a "g_type_check_instance_cast"
lnx.c:(.text+0x35f): riferimento non definito a "gtk_signal_connect_full"
lnx.c:(.text+0x372): riferimento non definito a "gtk_widget_set_events"
./../lib/libfivec.a(lnx.o): nella funzione "HB_FUN_LOADBUTTON":
lnx.c:(.text+0x3a8): riferimento non definito a "glade_xml_get_widget"
lnx.c:(.text+0x3b5): riferimento non definito a "gtk_object_get_type"
lnx.c:(.text+0x3c4): riferimento non definito a "g_type_check_instance_cast"
lnx.c:(.text+0x400): riferimento non definito a "gtk_signal_connect_full"
lnx.c:(.text+0x40a): riferimento non definito a "gtk_object_get_type"
lnx.c:(.text+0x419): riferimento non definito a "g_type_check_instance_cast"
lnx.c:(.text+0x455): riferimento non definito a "gtk_signal_connect_full"
./../lib/libfivec.a(lnx.o): nella funzione "ClickEvent":
lnx.c:(.text+0x4a6): riferimento non definito a "gtk_object_get_type"
lnx.c:(.text+0x4b5): riferimento non definito a "g_type_check_instance_cast"
lnx.c:(.text+0x4c5): riferimento non definito a "gtk_object_get_data"
./../lib/libfivec.a(lnx.o): nella funzione "MenuItemSelect":
lnx.c:(.text+0x520): riferimento non definito a "gtk_object_get_type"
lnx.c:(.text+0x52f): riferimento non definito a "g_type_check_instance_cast"
lnx.c:(.text+0x53f): riferimento non definito a "gtk_object_get_data"
./../lib/libfivec.a(lnx.o): nella funzione "LostFocusEvent":
lnx.c:(.text+0x560): riferimento non definito a "gtk_object_get_type"
lnx.c:(.text+0x56f): riferimento non definito a "g_type_check_instance_cast"
lnx.c:(.text+0x57f): riferimento non definito a "gtk_object_get_data"
lnx.c:(.text+0x5c8): riferimento non definito a "gtk_object_get_type"
lnx.c:(.text+0x5d7): riferimento non definito a "g_type_check_instance_cast"
lnx.c:(.text+0x5e7): riferimento non definito a "gtk_object_get_data"
./../lib/libfivec.a(lnx.o): nella funzione "GotFocusEvent":
lnx.c:(.text+0x60d): riferimento non definito a "gtk_object_get_type"
lnx.c:(.text+0x61c): riferimento non definito a "g_type_check_instance_cast"
lnx.c:(.text+0x62c): riferimento non definito a "gtk_object_get_data"
lnx.c:(.text+0x675): riferimento non definito a "gtk_object_get_type"
lnx.c:(.text+0x684): riferimento non definito a "g_type_check_instance_cast"
lnx.c:(.text+0x694): riferimento non definito a "gtk_object_get_data"
./../lib/libfivec.a(lnx.o): nella funzione "LbxChangeEvent":
lnx.c:(.text+0x6d8): riferimento non definito a "gtk_object_get_type"
lnx.c:(.text+0x6e7): riferimento non definito a "g_type_check_instance_cast"
lnx.c:(.text+0x6f7): riferimento non definito a "gtk_object_get_data"
lnx.c:(.text+0x710): riferimento non definito a "gtk_object_get_type"
lnx.c:(.text+0x71f): riferimento non definito a "g_type_check_instance_cast"
lnx.c:(.text+0x72f): riferimento non definito a "gtk_object_get_data"
./../lib/libfivec.a(lnx.o): nella funzione "PaintEvent":
lnx.c:(.text+0x785): riferimento non definito a "gtk_object_get_type"
lnx.c:(.text+0x794): riferimento non definito a "g_type_check_instance_cast"
lnx.c:(.text+0x7a4): riferimento non definito a "gtk_object_get_data"
./../lib/libfivec.a(lnx.o): nella funzione "KeyPressEvent":
lnx.c:(.text+0x802): riferimento non definito a "gtk_object_get_type"
lnx.c:(.text+0x811): riferimento non definito a "g_type_check_instance_cast"
lnx.c:(.text+0x821): riferimento non definito a "gtk_object_get_data"
./../lib/libfivec.a(lnx.o): nella funzione "ButtonPressEvent":
lnx.c:(.text+0x8ed): riferimento non definito a "gtk_object_get_type"
lnx.c:(.text+0x8fc): riferimento non definito a "g_type_check_instance_cast"
lnx.c:(.text+0x90c): riferimento non definito a "gtk_object_get_data"
./../lib/libfivec.a(lnx.o): nella funzione "RadioButtonClick":
lnx.c:(.text+0x968): riferimento non definito a "gtk_object_get_type"
lnx.c:(.text+0x977): riferimento non definito a "g_type_check_instance_cast"
lnx.c:(.text+0x987): riferimento non definito a "gtk_object_get_data"
./../lib/libfivec.a(lnx.o): nella funzione "ScrollBarChanged":
lnx.c:(.text+0x9de): riferimento non definito a "gtk_object_get_type"
lnx.c:(.text+0x9ed): riferimento non definito a "g_type_check_instance_cast"
lnx.c:(.text+0x9fd): riferimento non definito a "gtk_object_get_data"
./../lib/libfivec.a(lnx.o): nella funzione "HB_FUN_SETTIMER":
lnx.c:(.text+0xa97): riferimento non definito a "g_timeout_add"
./../lib/libfivec.a(lnx.o): nella funzione "HB_FUN_KILLTIMER":
lnx.c:(.text+0xac5): riferimento non definito a "g_source_remove"
./../lib/libfivec.a(menus.o): nella funzione "HB_FUN_CREATEMENU":
menus.c:(.text+0x7): riferimento non definito a "gtk_menu_bar_new"
./../lib/libfivec.a(menus.o): nella funzione "HB_FUN_CREATEPOPUP":
menus.c:(.text+0x1c): riferimento non definito a "gtk_menu_new"
./../lib/libfivec.a(menus.o): nella funzione "HB_FUN_MENUSHOWPOPUP":
menus.c:(.text+0x32): riferimento non definito a "gtk_get_current_event_time"
menus.c:(.text+0x74): riferimento non definito a "gtk_menu_popup"
./../lib/libfivec.a(menus.o): nella funzione "HB_FUN_MENUSHOWITEM":
menus.c:(.text+0x94): riferimento non definito a "gtk_widget_show"
./../lib/libfivec.a(menus.o): nella funzione "HB_FUN_SETMENU":
menus.c:(.text+0xa2): riferimento non definito a "gtk_object_get_type"
menus.c:(.text+0xbc): riferimento non definito a "g_type_check_instance_cast"
menus.c:(.text+0xcc): riferimento non definito a "gtk_object_get_data"
menus.c:(.text+0xe3): riferimento non definito a "gtk_box_get_type"
menus.c:(.text+0xf2): riferimento non definito a "g_type_check_instance_cast"
menus.c:(.text+0x11b): riferimento non definito a "gtk_box_pack_start"
menus.c:(.text+0x120): riferimento non definito a "gtk_box_get_type"
menus.c:(.text+0x12f): riferimento non definito a "g_type_check_instance_cast"
menus.c:(.text+0x148): riferimento non definito a "gtk_box_reorder_child"
./../lib/libfivec.a(menus.o): nella funzione "HB_FUN_APPENDMENU":
menus.c:(.text+0x198): riferimento non definito a "gtk_image_menu_item_new_from_stock"
menus.c:(.text+0x1c1): riferimento non definito a "gtk_menu_item_new_with_mnemonic"
menus.c:(.text+0x1cb): riferimento non definito a "gtk_menu_item_new"
menus.c:(.text+0x1e1): riferimento non definito a "gtk_widget_set_sensitive"
menus.c:(.text+0x1e6): riferimento non definito a "gtk_container_get_type"
menus.c:(.text+0x1f5): riferimento non definito a "g_type_check_instance_cast"
menus.c:(.text+0x206): riferimento non definito a "gtk_container_add"
menus.c:(.text+0x210): riferimento non definito a "gtk_object_get_type"
menus.c:(.text+0x21f): riferimento non definito a "g_type_check_instance_cast"
menus.c:(.text+0x25b): riferimento non definito a "gtk_signal_connect_full"
./../lib/libfivec.a(menus.o): nella funzione "HB_FUN_ADDPOPUP":
menus.c:(.text+0x287): riferimento non definito a "gtk_menu_item_get_type"
menus.c:(.text+0x2a1): riferimento non definito a "g_type_check_instance_cast"
menus.c:(.text+0x2ad): riferimento non definito a "gtk_menu_item_set_submenu"
./../lib/libfivec.a(msgbox.o): nella funzione "MsgAlert":
msgbox.c:(.text+0x13): riferimento non definito a "gtk_window_list_toplevels"
msgbox.c:(.text+0x1c): riferimento non definito a "gtk_window_list_toplevels"
msgbox.c:(.text+0x26): riferimento non definito a "gtk_window_get_type"
msgbox.c:(.text+0x35): riferimento non definito a "g_type_check_instance_cast"
msgbox.c:(.text+0x5e): riferimento non definito a "gtk_message_dialog_new"
msgbox.c:(.text+0x66): riferimento non definito a "gtk_window_get_type"
msgbox.c:(.text+0x75): riferimento non definito a "g_type_check_instance_cast"
msgbox.c:(.text+0x95): riferimento non definito a "gtk_window_set_policy"
msgbox.c:(.text+0x9a): riferimento non definito a "gtk_window_get_type"
msgbox.c:(.text+0xa9): riferimento non definito a "g_type_check_instance_cast"
msgbox.c:(.text+0xb9): riferimento non definito a "gtk_window_set_position"
msgbox.c:(.text+0xbe): riferimento non definito a "gtk_dialog_get_type"
msgbox.c:(.text+0xcd): riferimento non definito a "g_type_check_instance_cast"
msgbox.c:(.text+0xd5): riferimento non definito a "gtk_dialog_run"
msgbox.c:(.text+0xe3): riferimento non definito a "gtk_widget_destroy"
./../lib/libfivec.a(msgbox.o): nella funzione "MsgInfo":
msgbox.c:(.text+0x100): riferimento non definito a "gtk_window_list_toplevels"
msgbox.c:(.text+0x109): riferimento non definito a "gtk_window_list_toplevels"
msgbox.c:(.text+0x113): riferimento non definito a "gtk_window_get_type"
msgbox.c:(.text+0x122): riferimento non definito a "g_type_check_instance_cast"
msgbox.c:(.text+0x14b): riferimento non definito a "gtk_message_dialog_new"
msgbox.c:(.text+0x153): riferimento non definito a "gtk_window_get_type"
msgbox.c:(.text+0x162): riferimento non definito a "g_type_check_instance_cast"
msgbox.c:(.text+0x169): riferimento non definito a "gtk_window_get_type"
msgbox.c:(.text+0x178): riferimento non definito a "g_type_check_instance_cast"
msgbox.c:(.text+0x184): riferimento non definito a "gtk_window_set_transient_for"
msgbox.c:(.text+0x189): riferimento non definito a "gtk_window_get_type"
msgbox.c:(.text+0x198): riferimento non definito a "g_type_check_instance_cast"
msgbox.c:(.text+0x1b8): riferimento non definito a "gtk_window_set_policy"
msgbox.c:(.text+0x1bd): riferimento non definito a "gtk_window_get_type"
msgbox.c:(.text+0x1cc): riferimento non definito a "g_type_check_instance_cast"
msgbox.c:(.text+0x1dc): riferimento non definito a "gtk_window_set_position"
msgbox.c:(.text+0x1e1): riferimento non definito a "gtk_dialog_get_type"
msgbox.c:(.text+0x1f0): riferimento non definito a "g_type_check_instance_cast"
msgbox.c:(.text+0x1f8): riferimento non definito a "gtk_dialog_run"
msgbox.c:(.text+0x206): riferimento non definito a "gtk_widget_destroy"
./../lib/libfivec.a(msgbox.o): nella funzione "MsgStop":
msgbox.c:(.text+0x226): riferimento non definito a "gtk_window_list_toplevels"
msgbox.c:(.text+0x22f): riferimento non definito a "gtk_window_list_toplevels"
msgbox.c:(.text+0x239): riferimento non definito a "gtk_window_get_type"
msgbox.c:(.text+0x248): riferimento non definito a "g_type_check_instance_cast"
msgbox.c:(.text+0x271): riferimento non definito a "gtk_message_dialog_new"
msgbox.c:(.text+0x279): riferimento non definito a "gtk_window_get_type"
msgbox.c:(.text+0x288): riferimento non definito a "g_type_check_instance_cast"
msgbox.c:(.text+0x2a8): riferimento non definito a "gtk_window_set_policy"
msgbox.c:(.text+0x2ad): riferimento non definito a "gtk_window_get_type"
msgbox.c:(.text+0x2bc): riferimento non definito a "g_type_check_instance_cast"
msgbox.c:(.text+0x2cc): riferimento non definito a "gtk_window_set_position"
msgbox.c:(.text+0x2d1): riferimento non definito a "gtk_dialog_get_type"
msgbox.c:(.text+0x2e0): riferimento non definito a "g_type_check_instance_cast"
msgbox.c:(.text+0x2e8): riferimento non definito a "gtk_dialog_run"
msgbox.c:(.text+0x2f6): riferimento non definito a "gtk_widget_destroy"
./../lib/libfivec.a(msgbox.o): nella funzione "MsgYesNo":
msgbox.c:(.text+0x312): riferimento non definito a "gtk_window_list_toplevels"
msgbox.c:(.text+0x31b): riferimento non definito a "gtk_window_list_toplevels"
msgbox.c:(.text+0x325): riferimento non definito a "gtk_window_get_type"
msgbox.c:(.text+0x334): riferimento non definito a "g_type_check_instance_cast"
msgbox.c:(.text+0x35d): riferimento non definito a "gtk_message_dialog_new"
msgbox.c:(.text+0x365): riferimento non definito a "gtk_window_get_type"
msgbox.c:(.text+0x374): riferimento non definito a "g_type_check_instance_cast"
msgbox.c:(.text+0x394): riferimento non definito a "gtk_window_set_policy"
msgbox.c:(.text+0x399): riferimento non definito a "gtk_window_get_type"
msgbox.c:(.text+0x3a8): riferimento non definito a "g_type_check_instance_cast"
msgbox.c:(.text+0x3b8): riferimento non definito a "gtk_window_set_position"
msgbox.c:(.text+0x3bd): riferimento non definito a "gtk_dialog_get_type"
msgbox.c:(.text+0x3cc): riferimento non definito a "g_type_check_instance_cast"
msgbox.c:(.text+0x3d4): riferimento non definito a "gtk_dialog_run"
msgbox.c:(.text+0x3e2): riferimento non definito a "gtk_widget_destroy"
./../lib/libfivec.a(msgbox.o): nella funzione "HB_FUN_MSGBEEP":
msgbox.c:(.text+0x614): riferimento non definito a "gdk_beep"
./../lib/libfivec.a(says.o): nella funzione "HB_FUN_CREATESAY":
says.c:(.text+0x16): riferimento non definito a "gtk_label_new"
./../lib/libfivec.a(says.o): nella funzione "HB_FUN_SAYSETTEXT":
says.c:(.text+0x56): riferimento non definito a "gtk_label_set_text"
./../lib/libfivec.a(says.o): nella funzione "HB_FUN_SAYGETTEXT":
says.c:(.text+0x78): riferimento non definito a "gtk_label_get_text"
./../lib/libfivec.a(spawn.o): nella funzione "HB_FUN_WINEXEC":
spawn.c:(.text+0x8b): riferimento non definito a "g_spawn_async"
./../lib/libfivec.a(windows.o): nella funzione "HB_FUN_CREATEWINDOW":
windows.c:(.text+0xf): riferimento non definito a "gtk_window_new"
windows.c:(.text+0x26): riferimento non definito a "gtk_vbox_new"
windows.c:(.text+0x2e): riferimento non definito a "gtk_fixed_new"
windows.c:(.text+0x41): riferimento non definito a "gtk_container_get_type"
windows.c:(.text+0x50): riferimento non definito a "g_type_check_instance_cast"
windows.c:(.text+0x61): riferimento non definito a "gtk_container_add"
windows.c:(.text+0x66): riferimento non definito a "gtk_box_get_type"
windows.c:(.text+0x75): riferimento non definito a "g_type_check_instance_cast"
windows.c:(.text+0x9e): riferimento non definito a "gtk_box_pack_start"
windows.c:(.text+0xa3): riferimento non definito a "gtk_object_get_type"
windows.c:(.text+0xb2): riferimento non definito a "g_type_check_instance_cast"
windows.c:(.text+0xcb): riferimento non definito a "gtk_object_set_data"
windows.c:(.text+0xd0): riferimento non definito a "gtk_object_get_type"
windows.c:(.text+0xdf): riferimento non definito a "g_type_check_instance_cast"
windows.c:(.text+0xf8): riferimento non definito a "gtk_object_set_data"
windows.c:(.text+0xfd): riferimento non definito a "gtk_window_get_type"
windows.c:(.text+0x10c): riferimento non definito a "g_type_check_instance_cast"
windows.c:(.text+0x124): riferimento non definito a "gtk_window_set_default_size"
windows.c:(.text+0x12e): riferimento non definito a "gtk_object_get_type"
windows.c:(.text+0x13d): riferimento non definito a "g_type_check_instance_cast"
windows.c:(.text+0x179): riferimento non definito a "gtk_signal_connect_full"
windows.c:(.text+0x183): riferimento non definito a "gtk_object_get_type"
windows.c:(.text+0x192): riferimento non definito a "g_type_check_instance_cast"
windows.c:(.text+0x1ce): riferimento non definito a "gtk_signal_connect_full"
windows.c:(.text+0x1d8): riferimento non definito a "gtk_object_get_type"
windows.c:(.text+0x1e7): riferimento non definito a "g_type_check_instance_cast"
windows.c:(.text+0x223): riferimento non definito a "gtk_signal_connect_full"
windows.c:(.text+0x236): riferimento non definito a "gtk_widget_set_events"
./../lib/libfivec.a(windows.o): nella funzione "HB_FUN_WNDDESTROY":
windows.c:(.text+0x261): riferimento non definito a "gtk_widget_destroy"
./../lib/libfivec.a(windows.o): nella funzione "HB_FUN_SETPARENT":
windows.c:(.text+0x26f): riferimento non definito a "gtk_object_get_type"
windows.c:(.text+0x289): riferimento non definito a "g_type_check_instance_cast"
windows.c:(.text+0x299): riferimento non definito a "gtk_object_get_data"
windows.c:(.text+0x2c4): riferimento non definito a "gtk_container_get_type"
windows.c:(.text+0x2d3): riferimento non definito a "g_type_check_instance_cast"
windows.c:(.text+0x2df): riferimento non definito a "gtk_container_add"
./../lib/libfivec.a(windows.o): nella funzione "HB_FUN_SETPOPUPPARENT":
windows.c:(.text+0x300): riferimento non definito a "gtk_container_get_type"
windows.c:(.text+0x31a): riferimento non definito a "g_type_check_instance_cast"
windows.c:(.text+0x326): riferimento non definito a "gtk_container_add"
./../lib/libfivec.a(windows.o): nella funzione "HB_FUN_SETCOORS":
windows.c:(.text+0x36d): riferimento non definito a "gtk_widget_set_uposition"
./../lib/libfivec.a(windows.o): nella funzione "HB_FUN_SETFOCUS":
windows.c:(.text+0x38e): riferimento non definito a "gtk_widget_grab_focus"
./../lib/libfivec.a(windows.o): nella funzione "HB_FUN_GETFOCUS":
windows.c:(.text+0x39b): riferimento non definito a "gtk_window_list_toplevels"
windows.c:(.text+0x3a5): riferimento non definito a "gtk_window_get_focus"
./../lib/libfivec.a(windows.o): nella funzione "HB_FUN_SETPROP":
windows.c:(.text+0x3d9): riferimento non definito a "gtk_object_get_type"
windows.c:(.text+0x3f3): riferimento non definito a "g_type_check_instance_cast"
windows.c:(.text+0x403): riferimento non definito a "gtk_object_set_data"
./../lib/libfivec.a(windows.o): nella funzione "HB_FUN_GETPROP":
windows.c:(.text+0x426): riferimento non definito a "gtk_object_get_type"
windows.c:(.text+0x440): riferimento non definito a "g_type_check_instance_cast"
windows.c:(.text+0x44c): riferimento non definito a "gtk_object_get_data"
./../lib/libfivec.a(windows.o): nella funzione "HB_FUN_SETSIZE":
windows.c:(.text+0x517): riferimento non definito a "gtk_widget_set_usize"
./../lib/libfivec.a(windows.o): nella funzione "HB_FUN_SETWINDOWTEXT":
windows.c:(.text+0x539): riferimento non definito a "gtk_window_get_type"
windows.c:(.text+0x553): riferimento non definito a "g_type_check_instance_cast"
windows.c:(.text+0x55f): riferimento non definito a "gtk_window_set_title"
./../lib/libfivec.a(windows.o): nella funzione "HB_FUN_SHOWWINDOW":
windows.c:(.text+0x580): riferimento non definito a "gtk_widget_show_all"
./../lib/libfivec.a(windows.o): nella funzione "HB_FUN_SHOWCONTROL":
windows.c:(.text+0x59c): riferimento non definito a "gtk_widget_show"
./../lib/libfivec.a(windows.o): nella funzione "HB_FUN_WNDENABLE":
windows.c:(.text+0x5cb): riferimento non definito a "gtk_widget_set_sensitive"
./../lib/libfivec.a(windows.o): nella funzione "HB_FUN_WNDHIDE":
windows.c:(.text+0x5eb): riferimento non definito a "gtk_widget_hide"
./../lib/libfivec.a(windows.o): nella funzione "HB_FUN_WNDMAXIMIZE":
windows.c:(.text+0x607): riferimento non definito a "gtk_window_maximize"
./../lib/libfivec.a(windows.o): nella funzione "HB_FUN_WNDREFRESH":
windows.c:(.text+0x65b): riferimento non definito a "gdk_window_invalidate_rect"
./../lib/libfivec.a(windows.o): nella funzione "HB_FUN_WNDCENTER":
windows.c:(.text+0x669): riferimento non definito a "gtk_window_get_type"
windows.c:(.text+0x683): riferimento non definito a "g_type_check_instance_cast"
windows.c:(.text+0x693): riferimento non definito a "gtk_window_set_position"
./../lib/libfivec.a(windows.o): nella funzione "HB_FUN_WNDSETTOOLTIP":
windows.c:(.text+0x6b3): riferimento non definito a "gtk_tooltips_new"
windows.c:(.text+0x6e0): riferimento non definito a "gtk_tooltips_set_tip"
./../../harbour/lib/libhbrtl.a(gtsys.o): nella funzione "hb_gt_ForceLink_HB_GT_TRM":
gtsys.c:(.text+0x18): riferimento non definito a "HB_FUN_HB_GT_TRM"
collect2: error: ld returned 1 exit status
done!
Any idea ?
Thanks |
Connect to Advantage Database | Giuliano,
Please try to install TeamViewer on your Linux and lets have a TeamViewer session so I will setup it for you from here <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
Please email me your ID and password, thanks |
Connect to Advantage Database | Giuliano,
Is your Ubuntu 32 or 64 bits ? |
Connect to Advantage Database | Ubuntu 32 bit.
I've download it today.
I can't install teamviewer in my lan .
Thanks |
Connect to Advantage Database | Giuliano,
Ok, I am downloading it and I will post here the steps to do <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
Hopefully today |
Connect to Advantage Database | Giuliano,
Do you use Google Chrome ?
We can also use Google Chrome to remotely manage your computer (I guess so) |
Connect to Advantage Database | Giuliano,
First of all you have to build current Harbour for your Ubuntu and you need GIT for this:
From a terminal window do:
sudo apt-get install git
git clone <!-- m --><a class="postlink" href="https://github.com/harbour/core.git">https://github.com/harbour/core.git</a><!-- m --> harbour
cd harbour
make |
Connect to Advantage Database | I did it .
Nothing change.
The same errors working with tutor01.prg
Bye |
Connect to Advantage Database | Giuliano,
I am testing it here on your same Ubuntu version.
In a few minutes I will have it ready and I will email it to you <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
Connect to Advantage Database | Giuliano,
Were you able to install this package on your Ubuntu ?
sudo apt-get install libgnomeprintui2.2-dev
Do you remember which one you installed for this one ? thanks |
Connect to Advantage Database | I'm not able.
The package is not available in this ubuntu release.
I not install it . So i don't link in build.sh -
I don't need to print .
Bye |
Connect to Advantage Database | Giuliano,
Ok, fixed.
I am emailing you Harbour and FiveLinux working fine for your Ubuntu distro <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
Connect to Advantage Database | Hello Antonio.
I'm having the same problems of Giuliano.
Can you send me the libraries and Harbour ?
Thanks a lot.
Massimo
P.S. the libgnomeprintui is impossible to install |
Connect to Advantage Database | Massimo,
Already sent <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
Please remember that they are for Ubuntu 32 bits
I have not been able to install libgnomeprintui
No idea why apt-get can't get it |
Connect to Advantage Database | Thank you Antonio.
Installed and the tutor01 is compiling and working perfectly.
You're great, as usual.
Have a nice evening.
Massimo |
Connect to Advantage Database | Good morning,
i confirm. Now harbour and FLH works !!!!!
Thank you Antonio.
Have a nice day |
Connect to Advantage Database | Good morning.
I need to build a little test to connect to an Advantage Database Server.
In windows there is an rddads.lib and Ace32.lib to link. Is there a place where to find them ?
Thanks a lot.
Massimo |
Connect to Advantage Database | Massimo,
good morning,
do you mean for Windows or for Linux ? |
Connect to Advantage Database | Hi Antonio.
For Linux. |
Connect to Advantage Database | Massimo,
I guess that the first step is to try to build Harbour rddads on Linux
Not sure if the rddads makefile works on Linux, so we need to try it
Also I think it may be a good idea to ask Reinaldo for advice <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
Connect to Advantage Database | Email already sent to Reinaldo <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
Connect to Advantage Database | Hello Massimo/everyone on this forum!
My preferred ADS server is a Linux Server. It is what I install at most of my clients sites and it is what I use for development and testing. However, I have no idea how to create a Linux application, much less a Linux ADS Client app. All my applications are FWH native Win32 apps that connect to either a Linux or a Windows ADS server.
To build a client Linux application I suspect that -as far as ADS RDDs is concern- all you have to do is include the source .c files in your compile script. That is adsfunc.c, ads1.c, ace32.c. Then make sure you have the appropriate ADS shared objects installed on the target client (Linux) workstation. It should be that simple.
You -all- probably already know that Sybase ADS may run as a windows service or as Linux daemon. Also, the client may be linked to a windows app via .dll or to a Linux app using the shared object (libace.so). This means that our FWH apps may be a native Windows app or a Linux app and our server may be a Linux server or a Windows server and any combination of these.
To build a Linux client app I understand you will need either the remote server or the local server shared objects. The Advantage Client Engine (ACE) and the Advantage Local Server (ALS) are distributed as Linux shared objects. Although not identical, shared objects are very similar to Windows DLLs. The default installation directory for the Advantage libraries is the /usr/lib directory. All Advantage clients link directly to the shared object that matches the version (ex: libace.so.10.0.20). The only shared object you need to distribute with your client app is libace.so.X.Y.Z for client-server (remote server) or libadsloc.so.X.Y.Z for the local server.
I wish I could be of more help on this subject but my experience building native linux apps is very limited. Provided I can find the time and budged the money to acquire FWH for Linux, I will engage on building a FWH Linux application one day.
Please keep us informed on your findings.
Best regards,
Reinaldo. |
Connect to Advantage Database | Reinaldo good afternoon
I work with ads server on windows with free tables driver adsntx
is posiblle we have an ads server in linux and for clientes in windows ?
many thanks for your help
best regards
Wilson
pd: excuseme my bad English |
Connect to Advantage Database | Hello Reinaldo.
Where can I find those c sources ?
Thanks a lot.
Massimo |
Connect to Advantage Database | They should be part of the compiler's source distribution and usually found on \xharbour\contrib\rdd_ads\ directory.
Hope that helps. |
Connect to Advantage Database | Thanks Reinaldo.
Maybe Antonio can help me with these files for Harbour and Linux. |
Connect to Advantage Database | I just found this post:
[url:1f4cgvol]http://xharbour-developers.narkive.com/nNVDjQlU/compiling-in-linux[/url:1f4cgvol]
I have sent Marcelo an email asking him about it |
Connect to Json webservice | Can someone post a sample of how to connect and exchange information via a Json webservice?
What file(s) I'll need to add to my project? |
Connect to Json webservice | Samir,
Please review the codes posted by Manuel Alvarez (mastintin):
<!-- l --><a class="postlink-local" href="http://fivetechsupport.com/forums/viewtopic.php?f=6&t=29786&start=0&hilit=meteo">viewtopic.php?f=6&t=29786&start=0&hilit=meteo</a><!-- l --> |
Connect to Json webservice | Hi Antonio,
Is there any method to read web pages written in java? |
Connect to Json webservice | Hakan,
Do you mean that java code is embedded into the web code ?
Do you have a url to check it ? |
Connect to Json webservice | Error: Unresolved external '_HB_FUN_HB_JSONDECODE' referenced from C:\DROG9\OBJ\FARMA90\TCUIDADOSESPECIAIS.OBJ
Where is this function? |
Connect to Json webservice | I found, my version of xHarbour don't have this yet |
Connect to Json webservice | Samir,
[url:1vtarrrg]https://bitbucket.org/fivetech/harbour-xharbour-builds/downloads/xHarbour%201.2.3%20Intl.%20(SimpLex)%20(Build%2020141106).zip[/url:1vtarrrg] |
Connect to Json webservice | Linares, thanks!
I don't have time to upgrade now, my deadline is 01/01/15 |
Connect to Json webservice | ok <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
Connect to MySql db | Hi all,
I need to connect to a remote mysql db in order to make regular updates.
This is my first experience with mysql. Which is the best way to connect ? I tried the mysql1.prg sample in FWH but it seems the tmysqlserver class doesn't exist.
Do I have to install the mysql odbc ? Thank yoi |
Connect to MySql db | Hi Marco,
Use TDolphin from Daniel Garcia, you can found many examples in this fórum. You will need of user and password to connect with the DB. To access a remote DB, Nothing is necessary to install. |
Connect to MySql db | Hi,
I Always receive a lot of link errors ? Do I need an updated lib in your opinion ?
FWH Sept 2015 - Embarcadero C++ 7.00
Turbo Incremental Link 6.70 Copyright (c) 1997-2014 Embarcadero Technologies, Inc.
Error: Unresolved external '_HB_FUN___CLSLOCKDEF' referenced from K:\FWH\LIB\DOLPHIN.LIB|tdolpsrv
Error: Unresolved external '_hb_gcAllocate' referenced from K:\FWH\LIB\DOLPHIN.LIB|function
Error: Unresolved external '_hb_retclen_buffer' referenced from K:\FWH\LIB\DOLPHIN.LIB|function
Error: Unresolved external '_HB_FUN___CLSUNLOCKDEF' referenced from K:\FWH\LIB\DOLPHIN.LIB|tdolpsrv
Error: Unresolved external '_HB_FUN_HB_HKEYS' referenced from K:\FWH\LIB\DOLPHIN.LIB|tdolpsrv
Error: Unresolved external '_HB_FUN___OLEGETACTIVEOBJECT' referenced from K:\FWH\LIB\DOLPHIN.LIB|tdolpexp
Error: Unresolved external '_HB_FUN___OLECREATEOBJECT' referenced from K:\FWH\LIB\DOLPHIN.LIB|tdolpexp
Error: Unresolved external '_HB_FUN_HB_HASH' referenced from K:\FWH\LIB\DOLPHIN.LIB|tdolpqry
Error: Unresolved external '_HB_FUN_HB_HPOS' referenced from K:\FWH\LIB\DOLPHIN.LIB|tdolpqry
Error: Unresolved external '_HB_FUN_HB_HSET' referenced from K:\FWH\LIB\DOLPHIN.LIB|tdolpqry
Error: Unresolved external '_HB_FUN_HB_HSETCASEMATCH' referenced from K:\FWH\LIB\DOLPHIN.LIB|tdolpqry
Error: Unresolved external '_HB_FUN_HB_HCLONE' referenced from K:\FWH\LIB\DOLPHIN.LIB|tdolpqry |
Connect to MySql db | Marco,
I think no. I used to use TDolphin with versions oldest than yours.
You need to include LibMySql.lib in your project. This LibMySql.lib you can import from LibMySql.dll |
Connect to MySql db | You have 3 options.
1) Use TMySql.Lib // harbour contributions
2) Use dolphin.lib // great class from Mr Daniel
3) Use ADO
For options (1) and (2) you need to
(a) Obtain tmysql.lib or dolphin.lib built for xHarbour or Harbour
(b) Download libmysql.dll from mysql site
(c) Make implib libmysql.lib from libmysql.dll
(d) Link your application with tmysql.lib or dolphin.lib and libmysql.lib
(e) Keep libmysql.dll in the exepath.
There are many users in our forum who are using these libs and can help you where to get them from.
Another option is to use ADO. This is very simple and you can get going in 15 minutes.
We can use full features of the server without being restricted by the limitations of the libraries, if any.
Steps:
1) Download MySql ODBC Connector from MySql site. I advice 32 bit msi.
<!-- m --><a class="postlink" href="http://dev.mysql.com/downloads/connector/odbc/">http://dev.mysql.com/downloads/connector/odbc/</a><!-- m -->
2) Install it.
All this you can finish in less than 15 mins and you are ready to go, using FWH ADO functions.
This is a sample program to connect to MySql server on my local PC, open a table and browse. This is tested on FWH 15.09 and works.
[code=fw:f50ysp5h]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><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;">(</span><span style="color: #000000;">)</span><br /><br /> <span style="color: #00C800;">local</span> oCn, oRs<br /><br /> <span style="color: #00C800;">local</span> cServer := <span style="color: #ff0000;">"localhost"</span><br /> <span style="color: #00C800;">local</span> cDataBase := <span style="color: #ff0000;">"fwh"</span><br /> <span style="color: #00C800;">local</span> cUser := <span style="color: #ff0000;">"root"</span><br /> <span style="color: #00C800;">local</span> cPassWord := <span style="color: #ff0000;">"hidden"</span><br /><br /> ? <span style="color: #ff0000;">"Start"</span><br /> oCn := FW_OpenAdoConnection<span style="color: #000000;">(</span> <span style="color: #000000;">{</span> <span style="color: #ff0000;">"MYSQL"</span>, cServer, cDataBase, cUser, cPassword <span style="color: #000000;">}</span>, .t. <span style="color: #000000;">)</span><br /> <span style="color: #00C800;">if</span> oCn == <span style="color: #00C800;">nil</span><br /> ? <span style="color: #ff0000;">"Connection Fail"</span><br /> <span style="color: #00C800;">return</span> <span style="color: #00C800;">nil</span><br /> <span style="color: #00C800;">else</span><br /> ? <span style="color: #ff0000;">"Connected"</span><br /> <span style="color: #00C800;">endif</span><br /><br /> oRs := FW_OpenRecordSet<span style="color: #000000;">(</span> oCn, <span style="color: #ff0000;">"customer"</span> <span style="color: #000000;">)</span><br /> XBROWSER oRs<br /> oRs:<span style="color: #000000;">Close</span><span style="color: #000000;">(</span><span style="color: #000000;">)</span><br /> oCn:<span style="color: #000000;">Close</span><span style="color: #000000;">(</span><span style="color: #000000;">)</span><br /><br /><span style="color: #00C800;">return</span> <span style="color: #00C800;">nil</span><br /> </div>[/code:f50ysp5h]
Now, how to use this for your specific need.
You need to know:
a) Your server name. This can be ip address or url provided to you.
b) Database name.
c) User name
d) Password
You may asertain these from the provider.
Use these values in the above program.
First you can check if you successfully connected or not.
If connected, you can open the table you want if you know the table name |
Connect to MySql db | Solved with ADO. Thank you.
I only have a problem reading a table with ADO,
I didn't understand how to get data into an array.
For example, doing the following call:
oRs := FW_OpenRecordSet( oCn, "SELECT * FROM company.t_phone;")
How can I get data inside an array ?
Thnak you in advance. |
Connect to MySql db | [quote:2c5k1m5w]How can I get data inside an array ?[/quote:2c5k1m5w]
[code=fw:2c5k1m5w]<div class="fw" id="{CB}" style="font-family: monospace;">aData := oRs:<span style="color: #000000;">GetRows</span><span style="color: #000000;">(</span><span style="color: #000000;">)</span><br />oRs:<span style="color: #000000;">Close</span><span style="color: #000000;">(</span><span style="color: #000000;">)</span></div>[/code:2c5k1m5w]
But may I know why do you want to take the data into an array? |
Connect to MySql db | Hi Richard
Can you send me Tmysql , source code , and make files to build mysql lib
my email is <!-- e --><a href="mailto:windev2@yahoo.com.ar">windev2@yahoo.com.ar</a><!-- e -->
Thanks
Fabian |
Connect to MySql db | [quote="devwin2010":2c259q5z]Hi Richard
Can you send me Tmysql , source code , and make files to build mysql lib
my email is <!-- e --><a href="mailto:windev2@yahoo.com.ar">windev2@yahoo.com.ar</a><!-- e -->
Thanks
Fabian[/quote:2c259q5z]
I already sent to you, please check your mail. |
Connect to MySql db | [quote="nageswaragunupudi":twhdhvo3]You have 3 options.
1) Use TMySql.Lib // harbour contributions
2) Use dolphin.lib // great class from Mr Daniel
3) Use ADO
For options (1) and (2) you need to
(a) Obtain tmysql.lib or dolphin.lib built for xHarbour or Harbour
(b) Download libmysql.dll from mysql site
(c) Make implib libmysql.lib from libmysql.dll
(d) Link your application with tmysql.lib or dolphin.lib and libmysql.lib
(e) Keep libmysql.dll in the exepath.
There are many users in our forum who are using these libs and can help you where to get them from.
Another option is to use ADO. This is very simple and you can get going in 15 minutes.
We can use full features of the server without being restricted by the limitations of the libraries, if any.
Steps:
1) Download MySql ODBC Connector from MySql site. I advice 32 bit msi.
<!-- m --><a class="postlink" href="http://dev.mysql.com/downloads/connector/odbc/">http://dev.mysql.com/downloads/connector/odbc/</a><!-- m -->
2) Install it.
All this you can finish in less than 15 mins and you are ready to go, using FWH ADO functions.
a) Your server name. This can be ip address or url provided to you.
[/quote:twhdhvo3]
Hello ,
During a few days i am trying to use MySql :
1) Use TMySql.Lib // harbour contributions
I can't build this lib
2) Use dolphin.lib // great class from Mr Daniel
I can build the ewamples , they are working (made some corrections)
BUT : FWH:ERP2.prg Gives in module login : can't connect (Connect( cHost, cUser, cPassword ))
PLACING THIS COMMAND AT THE BEGINNING (BEFORE DEFINING WINDOW) : NO PROBLEM !!!!!!!!
3) Use ADO :
- downloaded and installed mysql-connector-odbc-5.3.6-win32.msi
- Register a Unicode driver (Windows example)
| shell> myodbc-installer -d -a -n "MySQL ODBC 5.3 Unicode Driver" \
| -t "DRIVER=myodbc5w.dll;SETUP=myodbc5S.dll"
Done , controled with shell> myodbc-installer -d -l , seems ok
- Trying to use ODBC Manager as described in the manuals , but can't add odbc-5.3.6
Only SQL Server appears. Must it be added ?
Trying the example gives , as expected an error DNS name not found
Frank |
Connect to MySql db | [quote="Franklin Demont":3undwr3e][quote="nageswaragunupudi":3undwr3e]You have 3 options.
Hello ,
During a few days i am trying to use MySql :
1) Use TMySql.Lib // harbour contributions
I can't build this lib
2) Use dolphin.lib // great class from Mr Daniel
I can build the ewamples , they are working (made some corrections)
BUT : FWH:ERP2.prg Gives in module login : can't connect (Connect( cHost, cUser, cPassword ))
PLACING THIS COMMAND AT THE BEGINNING (BEFORE DEFINING WINDOW) : NO PROBLEM !!!!!!!!
3) Use ADO :
- downloaded and installed mysql-connector-odbc-5.3.6-win32.msi
- Register a Unicode driver (Windows example)
| shell> myodbc-installer -d -a -n "MySQL ODBC 5.3 Unicode Driver" \
| -t "DRIVER=myodbc5w.dll;SETUP=myodbc5S.dll"
Done , controled with shell> myodbc-installer -d -l , seems ok
- Trying to use ODBC Manager as described in the manuals , but can't add odbc-5.3.6
Only SQL Server appears. Must it be added ?
Trying the example gives , as expected an error DNS name not found
Frank[/quote:3undwr3e][/quote:3undwr3e]
Use ADO Solved :
- downloaded and installed mysql-connector-odbc-5.3.6-win32.msi
- Register a Unicode driver (Windows example)
| shell> myodbc-installer -d -a -n "MySQL ODBC 5.3 Unicode Driver" \
| -t "DRIVER=myodbc5w.dll;SETUP=myodbc5S.dll"
Done , controled with shell> myodbc-installer -d -l , seems ok
THE NAME 'MySQL ODBC 5.3 Unicode Driver' MUST BE USED IN THE CONNECTION STRING
Changed line 37 in Adodfuncs :
{ "MYSQL", "ODBC", { "Driver={MySQL ODBC 5.3 Unicode Driver}", "Driver={MySQL ODBC 3.51 Driver}" }, "Option=3" }, ;
- ODBC Manager : seems not needed
Frank |
Connect to MySql db | May I know what is your FWH version?
if FW_SetUniCode( .t. ) then Fw_OpenAdoConnection(...) automatically uses Unicode driver, without changing the prg.
[code=fw:2g6uyjad]<div class="fw" id="{CB}" style="font-family: monospace;">FW_SetUnicode<span style="color: #000000;">(</span> .t. <span style="color: #000000;">)</span><br />oCn := FW_OpenAdoConnection<span style="color: #000000;">(</span> ... <span style="color: #000000;">)</span><br />FW_SetUnicode<span style="color: #000000;">(</span> .f. <span style="color: #000000;">)</span> <span style="color: #B900B9;">// if not required</span><br /> </div>[/code:2g6uyjad] |
Connect to MySql db | [quote="nageswaragunupudi":1mmvp5fx]May I know what is your FWH version?
if FW_SetUniCode( .t. ) then Fw_OpenAdoConnection(...) automatically uses Unicode driver, without changing the prg.
[code=fw:1mmvp5fx]<div class="fw" id="{CB}" style="font-family: monospace;">FW_SetUnicode<span style="color: #000000;">(</span> .t. <span style="color: #000000;">)</span><br />oCn := FW_OpenAdoConnection<span style="color: #000000;">(</span> ... <span style="color: #000000;">)</span><br />FW_SetUnicode<span style="color: #000000;">(</span> .f. <span style="color: #000000;">)</span> <span style="color: #B900B9;">// if not required</span><br /> </div>[/code:1mmvp5fx][/quote:1mmvp5fx]
Sorry , it is only FW1404
Have i to use unicode driver or not ? What is the difference ?
It seems not the be default . Wright ?
I suppose that to change this behaviour i have to use myodbc driver again ? How ?
I noticed that in the list generated with myodbc-installer -d -l also "MySQL ODBC 5.3 ANSI Driver" is present.
Frank |
Connect to MySql db | My advice does not apply to your version
Because you need not use Unicode in your applications, ANSI driver is best suited to you.
Till I started Unicode development recently, I was working with ANSI driver only. My personal advice to you is to download and install ANSI version only. That works perfectly.
In case you consider upgrading FWH, you can connect to MySql with FWH out of the box, without any need for 3rd party libs. That is also an option. |
Connect to MySql db | Hi Marco,
I use TMySQL to connect remote access MySQL database.
If you want TMySQL, I can send to you. |
Connect with MySql database | Hi !
I connectus with the MySql database through maria_connect(). The default port is 3306. How can I have another port ? |
Connect with MySql database | You can suffix port number to cServerAddress with ":"
Example:
maria_Connect( "host:3455", "db", "user", "pw" )
Or
maria_Connect( "host", "db", "user", "pw", nPort ) |
Connect with MySql database | Thank you, Mr.Rao ! I didn't know all the parameters of the maria_connect method. Where can I see them ? |
Connect with MySql database | 1) As we always recommend, if you use command syntax, you will be fully informed and never go wrong.
fwh\include\fivewin.ch
[code=fw:2ecx89r5]<div class="fw" id="{CB}" style="font-family: monospace;">#xcommand FWCONNECT <oCn> HOST <cHost> ;<br /> <span style="color: #000000;">[</span><usr:<span style="color: #000000;">USER</span>,LANGFOLDER> <cUser> <span style="color: #000000;">]</span> ;<br /> <span style="color: #000000;">[</span> PASSWORD <cPassword><span style="color: #000000;">]</span> ;<br /> <span style="color: #000000;">[</span> <db:<span style="color: #000000;">DB</span>,DATABASE> <cDB> <span style="color: #000000;">]</span> ;<br /> <span style="color: #000000;">[</span> PORT <nPort> <span style="color: #000000;">]</span> <span style="color: #000000;">[</span> FLAGS <nFlags> <span style="color: #000000;">]</span> ;<br /> <span style="color: #000000;">[</span> CHARSET <chrset> <span style="color: #000000;">]</span> <span style="color: #000000;">[</span> MESSAGES <msglang> <span style="color: #000000;">]</span> <span style="color: #000000;">[</span> LOCALE <locale> <span style="color: #000000;">]</span> ;<br /> => ;<br /> <oCn> := maria_Connect<span style="color: #000000;">(</span> <cHost>, <span style="color: #000000;">[</span><cDB><span style="color: #000000;">]</span>, <cUser>, <cPassword>, <span style="color: #000000;">[</span><nPort><span style="color: #000000;">]</span>, <span style="color: #000000;">[</span><nFlags><span style="color: #000000;">]</span>, <span style="color: #000000;">[</span><chrset><span style="color: #000000;">]</span>, <span style="color: #000000;">[</span><msglang><span style="color: #000000;">]</span>, <span style="color: #000000;">[</span><locale><span style="color: #000000;">]</span> <span style="color: #000000;">)</span><br /> </div>[/code:2ecx89r5]
By examining the command translate, you will also know the full syntax.
2) You can refer to the documentation in the posts given in
<!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=3&t=33286">viewtopic.php?f=3&t=33286</a><!-- l -->
This post is always available at the top of the forum,
3) It is better to keep referring to whatsnew.txt whenever a new version is released.
4) You may refer to FiveWiki
<!-- m --><a class="postlink" href="http://wiki.fivetechsoft.com/doku.php?id=fivewin_class_fwmariaconnection">http://wiki.fivetechsoft.com/doku.php?i ... connection</a><!-- m -->
<!-- m --><a class="postlink" href="http://wiki.fivetechsoft.com/doku.php?id=fivewin_class_fwmariarowset">http://wiki.fivetechsoft.com/doku.php?i ... ariarowset</a><!-- m -->
However, FiveWiki may not be always fully upto date and so this information is to be supplemented by whatsnew.txt. |
Connectin to Firebird in FWH | is possible connecting to Firebird in FWH ? |
Connectin to Firebird in FWH | Working example (I have not tested it myself)
[url:2t7z89vx]http://harbour-project.svn.sourceforge.net/viewvc/harbour-project/trunk/harbour/contrib/hbfbird/tests/test.prg?view=markup&pathrev=13761[/url:2t7z89vx] |
Connectin to Firebird in FWH | [url:gqele3di]http://www.mail-archive.com/harbour@harbour-project.org/msg25816.html[/url:gqele3di] |
Connecting to ADS from FWPPC | Hello,Has anyone solved the problem to connect to ADS from a FWPPC application? If so, can someone provide a source code sample?Thank You, |
Connecting to ADS from FWPPC | Darrell,We have not heard of a solution for it yet.The simplest way would be to call to Sybase and ask them directly. All that is needed is a DLL for Windows Mobile. |
Connecting to ADS from FWPPC | Hi Antonio,Where can I get ACE32.LIB and RDDADS.LIB that will link with FWPPC? |
Connecting to ADS from FWPPC | Darrell,We can build those libraries once we get ACE32.DLL for Windows Mobile. |
Connecting to ADS from FWPPC | [quote="Antonio Linares":1j6u79dm]Darrell,
We can build those libraries once we get ACE32.DLL for Windows Mobile.[/quote:1j6u79dm]
Hi All,
I ask to ADS, not support Windows Mobile system.
Regards
Richard |
Connecting to ADS from FWPPC | F Y I
>It's possible to use ADS with Windows Mobile?
>I mean if Advantage has a DLL to work with Windows Mobile.
only via JAVA (ADS JDBC is level 4) or Webservices.
--
Joachim Duerr
Advantage Presales |
Connecting to MS SQL 2005 from FWH (32bit) on Win7 (64bit) | Hello,
I cannot connect to MS SQL 2005 from my FWH application running on Windows 7 (64 bit). I have no problems connecting from WIndows 7 (32 bit) and other Windows OS (XP, Server 2003). Do I need to install different drivers (software) on the 64 bit OS to get it to connect to MS SQL?
Thank you, |
Connecting to MS SQL 2005 from FWH (32bit) on Win7 (64bit) | Darrell
I wish I had a 64bit machine here and a sql server to test your problem. I no longer work for SC State gov but many of my ADO Sql Server apps live on in that environment.
I Googled the subject
[quote:m3nlybet]
sqloledb for windows 7 64 bit
[/quote:m3nlybet]
and got several ideas .. From what I can tell SQLOLEDB should work with your app on 32 or 64 bit Windows 7 platforms .. some suggestions were to right click on the app and "run as administrator" .. or possibly your Windows user needs to be an administrator of their box and not a Std or limited user.
Or try using the Native SQLOLEDB
Provider=SQLNCLI11
<!-- m --><a class="postlink" href="http://msdn.microsoft.com/en-us/library/ms130978.aspx">http://msdn.microsoft.com/en-us/library/ms130978.aspx</a><!-- m -->
If it were me, I would find a 64 bit W7 machine and load the ( tools ) Sql Server Studio to test the client connectivity to your Sql Server.
I would be most curious how you solve this.
Rick Lipkin |
Connecting to MS SQL 2005 from FWH (32bit) on Win7 (64bit) | Thank you Rick, I will try that |
Connecting to MS SQL 2005 from FWH (32bit) on Win7 (64bit) | Darrell
Just did a quick test using the oledb Jet engine for Ms Access in a current app I am working on. I put the .exe on a 32 bit network share and ran the program from a W7 64 bit desktop and I did NOT have any issues.
The W7 desktop user was an administrator of his box .. so your issue still may be a rights problem if your users are Std or Limited users .. I just don't know <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: -->
I realize Ms Access is not Sql Server, however the Jet Engine is an ole provider from Microsoft the same as SqlOleDb is for SQL Server.
Let me know if you solve your problem.
Thanks
Rick Lipkin |
Connecting to MS SQL 2005 from FWH (32bit) on Win7 (64bit) | Hi Rick,
I could not connect by changing PROVIDER. I also downloaded and installed a third party application to connect to SQL server and received errors. I am wondering if I am missing SQL drivers on the Windows 7 workstations???
Also, can you send me an e-mail at <!-- e --><a href="mailto:Darrell.Ortiz@cdmsoft.com">Darrell.Ortiz@cdmsoft.com</a><!-- e --> when you can?
Thank you, |
Connecting to MySql | I still have problems to connect , see also <!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=3&t=32470#p195453">viewtopic.php?f=3&t=32470#p195453</a><!-- l -->
During a few days i could make connection , from then no connection anymore.
Now , i try to start from scratch on a new computer. What i am doing wrong ?
From MySql site dowmload and install MySql\mysql-installer-web-community-5.7.17.0.msi
MySql\mysql-connector-odbc-5.3.7-win32.msi
c:\Program Files (x86)\MySQL\Connector ODBC 5.3 is created , running c:\Program Files (x86)\MySQL\Connector ODBC 5.3\myodbc-installer.exe
myodbc-installer -d -l
Shows a list from drivers , last two from list :
MySQL ODBC 5.3 ANSI Driver
MySQL ODBC 5.3 Unicode Driver
I suppose that i have also to register the ansi driver with
myodbc-installer -d -a -n "MySQL ODBC 5.3 ANSI Driver" -t "DRIVER=myodbc5a.dll;SETUP=myodbc5S.dll"
Respons from the program : Success: Usage count is 3
After that i can use MySql 5.7 Command Line Client , creating some users and databases.
Also tDolphin is working and create some databases with tables , populating them
Using windows ODBC system manager i can add and configure MySql ODBC Driver (MySQL ODBC 5.3 ANSI Driver) .
Data Source Name : MySQL ODBC 5.3 ANSI Driver
TCP/IP Server : ..... Port : 3306
User : Root , PassWord : BRECHT
Test the connection seems ok .
I am sure that user , server , database and password are correct.
Running the FW aplication :
[code=fw:21pyto0j]<div class="fw" id="{CB}" style="font-family: monospace;"><br />FUNC TestMySqlCon<span style="color: #000000;">(</span><span style="color: #000000;">)</span><br /><span style="color: #00C800;">local</span> cCon , c<br /><span style="color: #00C800;">local</span> oCon , oErr , lOk := .F.<br />cCon := <span style="color: #ff0000;">"{MySQL ODBC 5.3 ANSI Driver};Server=localhost;Database=pets;User=root;Password=BRECHT;Option=3;"</span><br /><span style="color: #00C800;">Try</span><br /> oCon := TOleAuto<span style="color: #000000;">(</span><span style="color: #000000;">)</span>:<span style="color: #00C800;">New</span><span style="color: #000000;">(</span> <span style="color: #ff0000;">"ADODB.Connection"</span> <span style="color: #000000;">)</span><br />End <span style="color: #00C800;">Try</span><br /><br />oCon:<span style="color: #000000;">CursorLocation</span> := <span style="color: #000000;">3</span> <span style="color: #B900B9;">// local cache</span><br /><br /><span style="color: #00C800;">TRY</span><br /> oCon:<span style="color: #000000;">Open</span><span style="color: #000000;">(</span> cCon <span style="color: #000000;">)</span><br />CATCH oErr<br /> ? oErr:<span style="color: #000000;">Description</span> , <span style="color: #ff0000;">"Could not open a Connection to Database "</span> , cCon , Procname<span style="color: #000000;">(</span><span style="color: #000000;">)</span> , procline<span style="color: #000000;">(</span><span style="color: #000000;">)</span> , Procname<span style="color: #000000;">(</span><span style="color: #000000;">1</span><span style="color: #000000;">)</span> , procline<span style="color: #000000;">(</span><span style="color: #000000;">1</span><span style="color: #000000;">)</span><br /> <span style="color: #00C800;">Return</span> <span style="color: #00C800;">nil</span><br />END <span style="color: #00C800;">TRY</span><br /><br /><br /><span style="color: #00C800;">RETURN</span> oCon<br /> </div>[/code:21pyto0j]
I got as error (trying to translate in english) :
[Microsoft][ODBC-driver Manager]The data source name is not found and no default driver specified(0x8004005)
Could not open a connection to Database {MySQL ODBC 5.3 ANSI Driver};Server=localhost;Database=pets;User=root;Password=BRECHT;Option=3;
WHAT AM I DOING WRONG OR WHAT AM I MISSING ?????
Frank |
Connecting to MySql | [code=fw:nflzhjgy]<div class="fw" id="{CB}" style="font-family: monospace;">oCn := FW_OpenAdoConnection<span style="color: #000000;">(</span> <span style="color: #ff0000;">"MYSQL,localhost,pets,root,BRECHT"</span>, .t. <span style="color: #000000;">)</span><br /><span style="color: #00C800;">if</span> oCn == <span style="color: #00C800;">nil</span><br /> ? <span style="color: #ff0000;">"Connect Fail"</span><br /><span style="color: #00C800;">else</span><br /> ? <span style="color: #ff0000;">"connected"</span> <br /> <span style="color: #B900B9;">// do your work</span><br /> oCn:<span style="color: #000000;">Close</span><span style="color: #000000;">(</span><span style="color: #000000;">)</span><br /><span style="color: #00C800;">endif</span><br /> </div>[/code:nflzhjgy] |
Connecting to MySql | Sorry , as expected the same result.
The FW routine builds exact the same connection string and after creating the ADODB.connection
it executes :
oCn:Open( cCon )
The real question is : how install MYSQL with ODBC connector ?
1) download and install MySql\mysql-installer-web-community-5.7.17.0.msi
MySql\mysql-connector-odbc-5.3.7-win32.msi
and then ? must the ansi driver be registered ?
Have we to use ODBC Manager ?
When it doesn't work , may be a windows setting or mysql setting must be changed. Which ?
Frank |
Connecting to MySql | If you use FWH's inbuilt MySQL features, then you don't have to install ODBC Drivers for MySQL, but If you are planning to use ADO then you need to have the MySQL ODBC drivers installed on all the PC's supposed to run your application. |
Connecting to MySql | It appears that your installation is correct. Just download the msi file and run it. That is all.
Your code also appears to be correct.
I am unable to find any reason for failure.
May be some other ADO user can find the problem. |
Connecting to a bluetooth device from within PPC | Hi all,
I am facing some problems in developing classes to manage bluetooth devices.
I think this api can improve our FWPPC applications.
Does someone experience in BT api ??
Please... contact to me and I'll share code. |
Connecting to a bluetooth device from within PPC | Hello
The only way I was doit is this way:
(Maybe is not the most elegant way but it works to me..)
[code=fw:2azosv8l]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br /><span style="color: #00C800;">STATIC</span> <span style="color: #00C800;">FUNCTION</span> SENDBLUE2<span style="color: #000000;">(</span>cDbfFileWTxt<span style="color: #000000;">)</span> <br /><span style="color: #00C800;">LOCAL</span> i, hOut, nLineVal:=<span style="color: #000000;">40</span>, nLineIncr:=<span style="color: #000000;">50</span>, ctext<br /><span style="color: #00C800;">local</span> nCom := <span style="color: #000000;">5</span>, nBauds := <span style="color: #000000;">57600</span>, nParity := NOPARITY, nDataByt := <span style="color: #000000;">8</span>,;<br /> lIRmode := .f., nStopBits := ONESTOPBIT <br /><br /><br />hOut := CreateFile<span style="color: #000000;">(</span> <span style="color: #ff0000;">"COM5:"</span>,GENERIC_WRITE, <span style="color: #000000;">0</span>, <span style="color: #000000;">0</span>, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL <span style="color: #000000;">)</span> <br /><span style="color: #00C800;">IF</span> hOut==<span style="color: #000000;">-1</span> <br /> MsgStop<span style="color: #000000;">(</span><span style="color: #ff0000;">"Port Not Found"</span><span style="color: #000000;">)</span> <br /> <span style="color: #00C800;">return</span> <span style="color: #00C800;">nil</span><br /><span style="color: #00C800;">endif</span><br /><br />use <span style="color: #000000;">(</span>cDbfFileWTxt<span style="color: #000000;">)</span> <span style="color: #0000ff;">alias</span> DBFPrn <span style="color: #00C800;">NEW</span><br />dbgotop<span style="color: #000000;">(</span><span style="color: #000000;">)</span><br /><span style="color: #00C800;">do</span> <span style="color: #00C800;">while</span> !eof<span style="color: #000000;">(</span><span style="color: #000000;">)</span><br /> <span style="color: #00C800;">if</span> !ComSend<span style="color: #000000;">(</span> hOut, trim<span style="color: #000000;">(</span>DBFPrn->C1<span style="color: #000000;">)</span> + CRLF <span style="color: #000000;">)</span> <br /> exit<br /> <span style="color: #00C800;">endif</span><br /> skip<br /><span style="color: #00C800;">enddo</span><br />USE<br /><br />ComClose<span style="color: #000000;">(</span> hOut <span style="color: #000000;">)</span><br /><br /><span style="color: #00C800;">return</span> <span style="color: #00C800;">nil</span> <br /><br /> </div>[/code:2azosv8l]
This way is already probed to send large tickets with WM5.
Note that I must be print record by record because I dont know another way to control flow of data.
Com 5 is usualy the com port number taked for BT in WMobile.
Please let us know when you made something in a class way !!
Saludos a todos. |
Connecting to a bluetooth device from within PPC | Arturo,
Gracias por responder.
Si... ya estamos utilizando la impresión mediante un puerto virtual (tal como lo muestras) pero... tiene problemas. Como bien dices no hay control de flujo por lo que no puedes, a priori, saber si el buffer está listo para recibir.
Por eso quiero cambiar la forma de mandar la información a una impresora bluetooth: mediante conexión sockets. Este tema, para la versión que se utiliza de evc no es muy sencillo por que no están todas las libs con las funciones que hay en los ejemplos que muestra el msdn.
De momento ya tengo funciones para el descubrimiento de dispositivos bluetooth. Y espero poder emparejarlos dentro de poco.
Thanks for answer.
Yes, we already are printing using a virtual port (as you've showed) but it has problems. As you've said it very well there is no way to control the communication flow... so you can not know (for example) if a buffer printer is ready to receive data.
This is why I want to change the way to print to a bluetooth printer: throught sockets. Bluetooth communications, for the evc version we are using now, is not so easy as because there aren't all the libs (and functions) needed by msdn samples.
At this point I have some functions for discovering bluetooth devices. I hope in short time pair bt devices. |
Connecting to an Url | Hi,
when I run this code
#include "fivewin.ch"
FUNCTION MAIN( )
LOCAL oIe
oIe = CREATEOBJECT( "InternetExplorer.Application" )
oIe:Navigate( "http://172.28.2.240" )
oIe:Visible = .T.
RETURN NIL
this dialog apperas
[img:2c8k6why]http://www.marcoboschi.it/public/ScreenShot073.jpg[/img:2c8k6why]
The questions are:
is it possible to connect my software to an Url without the usage of Internet Explorer?
is it possible to automatically to send user_id and password?
Thanks
Marco |
Connection Issue - Please Help | Hi,
Here is the situation....
I read data from an Oximeter and display the numbers on the screen and also save them to a string to be printed.
This device connects as a serial device via Bluetooth.
After the data is collected, I want to print the string to a Bluetooth Printer (also a serial connection).
Here is the problem ... it seems that I can only connect to one device at a time.
Is there any way to connect to two devices at the same time?
Or, is there some way via programming that will let me switch between the two?
I am in a bit of a bind as I have someone who wants to see this working on Friday <!-- s:( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":(" title="Sad" /><!-- s:( -->
Any help would really be appreciated. |
Connection Remote | Y need to utilize my DBF from internet, what to build ??? |
Connection Remote | Y need to utilize my DBF from internet, what to build ??? |
Connection Remote | Have a look at the following technologies:
- [x]Harbour CGI
- ASP/xbScript
- ASP/VBScript and VFP driver
- ADS and remote server
EMG |
Connection Remote | ADS and remote server, where have examples ??? |
Connection Remote | Alternate solution I use to build web application sharing data with Fivewin app :-
- Apache as web server
- ActiveFoxproPage at <!-- w --><a class="postlink" href="http://www.afpages.com">www.afpages.com</a><!-- w --> as dll plugin,
syntax similar to Clipper (instead of using asp/php)
- html+javascript+foxpro codes to build web input form
Regards
Hoe |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.