topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
manage with FIVEWIN your mod harbour megamenu | Hello friends,
Now we can manage the megamenu inside our mod harbour newspager from a FIVEWIN program.
If someone is interested in more detail, please post your questions.
Best regards,
Otto
[img:2erb85vi]https://mybergland.com/fwforum/megamenuvw.gif[/img:2erb85vi] |
managing text blocks | As WORD and Outlook build in manager don’t work together
we have developed a handy tool for managing text blocks and text modules.
This tool is also comfortable to organize code snips and notes.
Data is stored in a dbf-file with memo fields.
There is full text search also within the memo fields included.
You can dow... |
managing text blocks | Very nice! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
mandado mensajes al centro de notificaciones . | he añadido una funcion que lo hace , de momento solo manda titulo e información.
[img:3vj2qnz1]http://img29.imageshack.us/img29/201/oqps.png[/img:3vj2qnz1] |
mandado mensajes al centro de notificaciones . | aun mejor <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> . He creado una clase TNotification , que maneja lo relativo a notificaciones del Usuario. De momento de pueden controlar el titulo ,subtitulo, información a mandar, tambien se puede controlar que mande un banner o ... |
mandar un dato X por internet cuando se use un programa | Hola se podrá mandar ciertos datos de una compu por Internet a otra compu etc <!-- s:roll: --><img src="{SMILIES_PATH}/icon_rolleyes.gif" alt=":roll:" title="Rolling Eyes" /><!-- s:roll: -->
Gracias
Saluditos <!-- s:wink: --><img src="{SMILIES_PATH}/icon_wink.gif" alt=":wink:" title="Wink" /><!-- s:wink: --> |
mandar un dato X por internet cuando se use un programa | Aida,
<!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?p=197201#p197201">viewtopic.php?p=197201#p197201</a><!-- l --> |
mandar un email masivo | Hola amigos:
Necesito mandar un email que lo que contiene son dos imagenes JPG y lo tengo que mandar a 161000 direcciones.
Me podeis ayudar
Gracias
Carlos |
manejo de bases de datos con Tgather | Habitualmente he manejado las bases de datos con la clase Tgather en Fivewin, no la he visto que este implementada en FWPPC.He visto el ejemplo CLIENT de Carles, creo que harían falta algunos ejemplos mas sobre manejo de bases de datos para ayudar a los novatos¿que clase recomendais para dar de alta, modificar , borrar... |
manejo de bases de datos con Tgather | Antonio,Depende mucho de las preferencias del programador.A nosotros nos gusta usar la Clase TDataBase porque te evita tener que definir variables locales (una por cada campo). |
manejo de bases de datos con Tgather | Para usar la clase TDataBase basicamente haz:USE MiDbfDATABASE oMiDbfa partir de ese momento puedes acceder a una copia de los campos usando:oMiDbf:NombreCampo usándolos en los GETs, etc. para salvar las modificaciones a la DBF real haces:oMiDbf:Save()Luego con una sola variable oMiDbf puedes manejar copias de todos l... |
manejo de bases de datos con Tgather | Revisa el código de la clase TDataBase y verás lo simple que es, y como hace el trabajo <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
manejo de bases de datos con Tgather | Gracias Antoniohe estado revisando la informacion en FWCE.CHy solo hay una linea¿donde puedo ver mas información ?saludosAntonio |
manejo de bases de datos con Tgather | Antonio,Revisa fwppc\source\classes\database.prg |
manejo de la funcion LogFile() | Hola amigos del foro:
Una consulta, como hago para administrar el archivo [b:2daznsq5].log[/b:2daznsq5] generado por la funcion LogFile()
- El archivo ira creciendo sin limite??
- Puedo darle un limite???
- Si la aplicacion trabaja en red, como hago para centralizar el archivo .log
De antemano, gracias por las resp... |
manejo de la funcion LogFile() | Hola Rolando,
el log crece sin límite, queda a criterio propio decidir cuando se puede eliminar cierta información. Se pueden registrar eventos desde todas las terminales, tal vez sea conveniente chequear que se ha podido abrir el fichero or el caso de que se hagan actualizaciones simultáneas.
Si te preocupa el tamaño... |
manifest theme on wm5 or wm6 | How I can set the theme for wm 6 and show buttons with theme? |
manifest theme on wm5 or wm6 | Sorry, forget it. |
manipulating time strings | Where I can found functions for manipulating time strings?
I have for sample :
[code=fw:35y0za0n]<div class="fw" id="{CB}" style="font-family: monospace;"><br />cHoraE1 cHoraU1 cHoraE2 cHoraU2 cHoraE3 cHoraU3<br /><span style="color: #000000;">08</span>:<span style="color: #000000;">00</span> <... |
manipulating time strings | Eoeo,
do not use sexagesimal but centesimal when calculate elapsed time
[code=fw:1orw5rkd]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"fivewin.ch"</span><br /><span style="color: #00C800;">FUNCTION</span> MAIN<span style="co... |
manipulating time strings | Marco,
[img:1jvxvgma]http://imageshack.us/a/img109/4733/80478801.png[/img:1jvxvgma]
I found other function in time.prg of clipper :
#include "FiveWin.ch"
Function test()
nEntrata1:="07:57"
nUscita1:="14:25"
nEntrata2:="15:57"
nUscita2:="16:41"
nEntrata3:="17:10"
nUscita3:="19:43"
Totale1:=TDIFF(nE... |
manipulating time strings | Silvio,
this function calculates everything from given Start Day / time to End Day / time :
Only a Time-calculation :
[img:3lhknkre]http://www.pflegeplus.com/pictures/time10.jpg[/img:3lhknkre]
Sample :
tStart := '12:45:12'
tEnd := '10:20:30'
dStart := Date()
dEnd := Date()
( we add a Day, because ... |
manipulating time strings | Thanks Uwe,
for calculation I resolved
Now I must resolve the second Problem :
[b:39lo63mc]I must calculate the the flexibility negative and positive[/b:39lo63mc]
See these samples pls
sample :
Entrata1:="07:57"
Uscita1 :="13:58"
Total = 05:58 ( I calc from 08:00 to 14:00)
the employe made not six Hours of Work... |
manipulating time strings | Silvio,
I don*t understand. Do You want to calc ( round ) to a full hour ( at start ) ???
Entrata1:="07:57"
( I calc from [color=#FF0000:34c14mej]08:00 [/color:34c14mej])
Best Regards
Uwe <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: --> |
manipulating time strings | No please :
I must calculate the the flexibility negative and positive
I have TO MAKE 6 HOURS
TIME OF INIT WORK :="07:57"
TIME OF END WORK :="13:58"
Total OF HOURS WORKED = 05:58 ( I calc from 08:00 to 14:00)
WITH THIS SAMPLE i HAVE A [b:1th6xt71]NEGATIVE flexibility[/b:1th6xt71] BECAUSE the worker M... |
manipulating time strings | If we see the sample test :
Worker : Jonh
Morning
nEntrata1:="07:57"
nUscita1:="14:25"
here the worker made 6 Hours of Work with 25 minutes of positive flexibility
Afternoon
nEntrata2:="15:57"
nUscita2:="16:57"
here the worker is on positive flexibility and he made 1 hours of positive flexibility
Evening
nEntra... |
manipulating time strings | Silvio,
I think that can be used as a basic with carrying on more calculations :
[img:1szqlitv]http://www.pflegeplus.com/ictures/time11.jpg[/img:1szqlitv]
Result, with the [color=#FF0000:1szqlitv]extra lines [/color:1szqlitv]:
[img:1szqlitv]http://www.pflegeplus.com/ictures/time12.jp... |
manipulating time strings | this afternoon I try it . thanks |
manual ADS en Español | Hola a todos:
Me gustaría saber si existe un manual de ADS en castellano. Muchas gracias <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
Salu2 |
manual ADS en Español | ??? |
manual ADS en Español | Mgsoft: Me parece que es dificil de encontrar ese manual.
Si hay uno, solo te lo dan si compras ADS. (Hecho a la medida para (x)Harbour)
Seria una gran solucion para los que deseamos comenzar con ADS cliente servidor, por lo menos para
hacer las primeras pruebas ya que hay una version gratuita para 2 usuarios.
Ademas ... |
manual ADS en Español | Este es antiguo, pero puede resultar util:
<!-- m --><a class="postlink" href="http://www.ousob.com/ng/ads_611/">http://www.ousob.com/ng/ads_611/</a><!-- m --> |
manual ADS en Español | Antonio:
Muchas gracias por tu indicación, pero busco algo más actualizado, sobre todo que trate el acceso a través de internet. He probado el ejemplo de Cibertec y va muy muy lento.
Y respecto al manual ADS hecho a la medida para (x)Harbour, ¿no se puede comprar por separado?. Malamente se puede conocer y testear un... |
manual ADS en Español | Te has planteado usar LetoDB en vez de ADS ?
Es gratuito y open source:
<!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=3&t=10623&start=0&hilit=alexander">viewtopic.php?f=3&t=10623&start=0&hilit=alexander</a><!-- l --> |
manual ADS en Español | Hola,
He estado haciendo unas pruebas con letodb y la verdad es que va bastante bien. Si alguien lleva tiempo usándolo, ¿nos puede contar su experiencia en cuanto a velocidad e integridad de los datos e índices? Una buena cosa de los dbf en local, por lo menos en mi experiencia, es que no cascan nunca.
Aquí están l... |
manual ADS en Español | Alvaro,
Uso xHarbour 1.2, ¿podrías indicarme como compilar la LetoDb para esta versión de xHarbour?.
Gracias.
Rolando <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> |
manual ADS en Español | Holas,
la gran ventaja de ADS es el SQL y que es transaccional, la desventaja es que es MUY CARO, claro la version local con todas las funcionalidad excepto las transacciones es de uso libre (creo), estoy seguro que Alexander tiene estas funcionalidad en el TODO de LETODB
saludos
Marcelo |
manual ADS en Español | Hola Rolando,
Yo no uso xharbour, pero puedes compilar el ejecutable del servidor (letodb.exe) y la librería (rddleto.lib) usando el fichero make_b32.bat, añadiendo el "path" de tu "bcc55\bin" y modificando el fichero "makefile.bc" con tus "paths" también tendrás que cambiar las librerías de xharbour en la línea:
[... |
manual ADS en Español | Alvaro,
Muchas gracias.
Voy a probar a ver que resulta.
Rolando <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> |
manual de ADORDD en castellano | Hola queridos compañeros y compañeras de la comunidad,
Os dejo un manual de ADORDD en castellano que explica sus comandos de configuración:
<!-- m --><a class="postlink" href="http://rg.to/file/3ffdfd110a3cdcfaea9b5b5da828385f/leeme.pdf.html">http://rg.to/file/3ffdfd110a3cdcfaea9b5 ... e.pdf.html</a><!-- m -->
Fuera ... |
manual de ADORDD en castellano | <!-- m --><a class="postlink" href="http://goo.gl/JZ4PkA">http://goo.gl/JZ4PkA</a><!-- m --> |
manual de ADORDD en castellano | Estimado Lucas
Una consulta. Yo uso DBFNTX, que problemas podré tener al usar este aDORDD.
Saludos
Fernando Espinoza A. |
manual de ADORDD en castellano | Lucas,
Por qué no lo subes a un wiki en bitbucket ?
De esta forma no se perderá y además más personas podrán contribuir
Si quieres te ayudo a hacerlo <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
manual de ADORDD en castellano | Hola
No consigo descargarlo, me redirecciona a páginas de publicidad.
Un saludo |
manual de ADORDD en castellano | No importa qué tipo de rdd usa ADS, DBFCDX, NTX.
ADORDD funciona con cualquier SQL Server de forma idéntica a cualquier otra rdd.
Información <!-- m --><a class="postlink" href="https://github.com/AHFERREIRA/adordd.git">https://github.com/AHFERREIRA/adordd.git</a><!-- m --> |
manual de ADORDD en castellano | Antonio,
En GitHub tienes la opción de crear un wiki ?
Sería perfecto para alojar la documentación |
manual de ADORDD en castellano | Antonio,
Si tengo mas no lo creo necesario.
Los archivos readme e leeme tienen todo necesario.
Es muy simple. |
manual de ADORDD en castellano | ok <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
manuel | Antonio
J'ai copier C:\fwh sur U:\fwh
Quand je veux visionner les manuels il me dit que l'addresse est pas bonne
comment corriger cela
merci a l'avance pour votre aide |
manuel | C´est probablement votre racourci qui n´est plus valable. Verifiez ses propriétés. |
manuel | Merrci mais il me dit retyep your address |
manuel | erxcuse retype your address |
manuel | Richard,
S'il vous plaît mettre les bons paths à l'intérieur samples\buildh.bat |
manuel | Richard,
Il y a 2 sortes de manuels. Une copie locale qui me semble plus ancienne, avec des fichiers au format Word et au format Help, que vous devez trouver en u:\fwh\manual. L´autre qui est fournie par le racourci du menu de programes: <!-- m --><a class="postlink" href="http://wiki.fivetechsoft.com/doku.php">http:/... |
manuel | Richard
La documentation fournie (au format Word) est ancienne et pas pratique. On peut trouver son bonheur avec l'aide au format CHM au niveau fonctions ou commandes.
Comme André le suggérait, il vaut mieux se pencher vers wiki qui est la documentation la plus à jour et surtout les forum pour chercher (recherche ava... |
manuel | Richard,
quelles sont les erreurs que vous avez trouvé? S'il vous plaît copiez la sortie ici, merci |
manuel | je n'ai toujours pas accès aux manuel |
manuel | je n'ai toujours pas accès aux manuel
j'aimerais avoir le lien pour accéder aux manuels
merci |
many bug about local file/directory when name is utf8 | 1. filename change from english to uft8, ex: 'abc.exe to ' ????.exe'
2. directory is utf8 name, ex: 'c:\temp\????\'
a. read/write .ini, GetPvProfString/WritePProfString....
b. GetModulefileName/cFilePath.... |
many bug about local file/directory when name is utf8 | I will test point by point and answer one by one.
[quote:2rhrc4ne]b. GetModulefileName/cFilePath....
[/quote:2rhrc4ne]
ExeName:
[code=fw:2rhrc4ne]<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... |
many bug about local file/directory when name is utf8 | cFilePath()?GetModulefileName() ? |
many bug about local file/directory when name is utf8 | GetModuleFileName() is not Unicode compatible. Please do not use it. Instead, use ExeName() or HB_ARGV(0). |
many bug about local file/directory when name is utf8 | [quote:7kzywjdq]a. read/write .ini, GetPvProfString/WritePProfString....
[/quote:7kzywjdq]
At present, these functions are not Unicode compatible.
We will provide Unicode compatible versions at the earliest. |
many bug about local file/directory when name is utf8 | [quote:14pv22rf]2. directory is utf8 name, ex: 'c:\temp\????\'
[/quote:14pv22rf]
Test:
[code=fw:14pv22rf]<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 HB_CODEPAGE_UTF8<br /><br /><span style="... |
many bug about local file/directory when name is utf8 | We will check other points raised by you and come back in a little time. |
many bug about local file/directory when name is utf8 | FilePath:
[code=fw:1jtpcnxz]<div class="fw" id="{CB}" style="font-family: monospace;"> ? <span style="color: #ff0000;">"cFile ="</span>, cFile, <span style="color: #ff0000;">"cFilePath ="</span>, cFilePath<span style="color: #000000;">(</span> cFile <span style="color: #000000;">)</span>, <span style="co... |
many bug about local file/directory when name is utf8 | [quote="nageswaragunupudi":11dl76k0][quote:11dl76k0]a. read/write .ini, GetPvProfString/WritePProfString....
[/quote:11dl76k0]
At present, these functions are not Unicode compatible.
We will provide Unicode compatible versions at the earliest.[/quote:11dl76k0]
Thank you!! wait for your solution! |
many bug about local file/directory when name is utf8 | Tested FILE() and FRENAME() functions and they are Unicode compatible. |
many bug about local file/directory when name is utf8 | [quote="nageswaragunupudi":3hnv0kxn]Tested FILE() and FRENAME() functions and they are Unicode compatible.[/quote:3hnv0kxn]
harbour native function is ok. |
many bug about local file/directory when name is utf8 | [quote="ssbbs":3qqr6x0a][quote="nageswaragunupudi":3qqr6x0a]Tested FILE() and FRENAME() functions and they are Unicode compatible.[/quote:3qqr6x0a]
harbour native function is ok.[/quote:3qqr6x0a]
Then what exactly is your difficulty in these areas?
[quote:3qqr6x0a]1. filename change from english to uft8, ex: 'abc.exe ... |
many bug about local file/directory when name is utf8 | GetModuleFileName() and ShellExecute() are made Unicode compatible in the upcoming version of FWH to be released at any time. |
many bug about local file/directory when name is utf8 | [quote="nageswaragunupudi":2wn7iyo4][quote="ssbbs":2wn7iyo4][quote="nageswaragunupudi":2wn7iyo4]Tested FILE() and FRENAME() functions and they are Unicode compatible.[/quote:2wn7iyo4]
harbour native function is ok.[/quote:2wn7iyo4]
Then what exactly is your difficulty in these areas?
[quote:2wn7iyo4]1. filename change... |
many bug about local file/directory when name is utf8 | Tested TINI class in ini.prg.
Ini file name should be in English, but all contents can be in Unicode
This is the Unicode INI file crated and tested by me:
[code=fw:1ds40dh9]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #000000;">[</span>?????<span style="color: #000000;">]</spa... |
many bug about local file/directory when name is utf8 | [quote:gom4j6ox]If directory name is ansi and APP name is utf8, file of read/write is ok, only access information of APP have some problem.
If directory name is utf8, all file of read/write have some problem.
[/quote:gom4j6ox]
I have not come across any problems till now in the above situations.
In case you experience ... |
many bug about local file/directory when name is utf8 | [quote="nageswaragunupudi":1cm9ng5r]Tested TINI class in ini.prg.
Ini file name should be in English, but all contents can be in Unicode
This is the Unicode INI file crated and tested by me:
[code=fw:1cm9ng5r]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #000000;">[</span>?????<spa... |
many bug about local file/directory when name is utf8 | This is my test program
[code=fw:2b8nywvv]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"fivewin.ch"</span><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"ini.ch"</span><br /><br />REQUEST HB_CODEP... |
many bug about local file/directory when name is utf8 | HB_CDPSELECT( "UTF8" )
FW_SetUnicode( .T. )
INI oIni FILE ".\UTF8.ini" // <--- change to "c:\fwh\tests\????\utf8.ini"
GET val1 SECTION "?????" ENTRY "????" OF oIni DEFAULT "???" <--- '?????' is utf8 or ansi ?
GET val2 SECTION "?????" ENTRY "????????" OF oIni DEFAULT "??... |
many bug about local file/directory when name is utf8 | [quote:1yen3edy]INI oIni FILE ".\UTF8.ini" // <--- change to "c:\fwh\tests\????\utf8.ini"
[/quote:1yen3edy]
We should not make that change.
Trick is to keep it as ".\" + "filename.ini" |
many samples with ListBox | I'm looking for samples with ListBox as browser database |
many samples with ListBox | Please review samples\FwBrow.prg |
many samples with ListBox | may I use array in FIELDS ( LISTBOX FIELDS)
(fields database define in array ) |
many samples with ListBox | Please review samples\TestArr.prg and TestBrAr.prg
(search for "SetArray" in samples\*.prg) |
mapi | Hi all,
When using tMail class as in FWH 2.7 sample james.prg with xHB Builder i get the following errors:
xLINK: error: Unresolved external symbol '_HB_FUN_MAPILOGOFF'.
xLINK: error: Unresolved external symbol '_HB_FUN_MAPISENDMAIL'.
xLINK: fatal error: 2 unresolved external(s).
Do i miss some libraries?
Best rea... |
mapi | Sorry for bothering you all.
I forgot to set the xHbBuilder to the fwh 2.7 folders and i was using my old files of fwh 2.5 <!-- s:oops: --><img src="{SMILIES_PATH}/icon_redface.gif" alt=":oops:" title="Embarassed" /><!-- s:oops: -->
But anyhow with the actual 2.7 files i got an error
xLINK: error: Unresolved extern... |
mapi | Detlef,
You may implement this function in your code:
[code:b0i50tph]
#pragma BEGINDUMP
#include "hbapi.h"
#include "hbapiitm.h"
PHB_SYMB hb_dynsymSymbol( PHB_DYNS pDynSym )
{
return pDynSym->pSymbol;
}
[/code:b0i50tph]
For TReBar and TToolBar, you need to compile and include in FWH ... |
mapi | Antonio,
thanks for your quick reply.
In the meanwhile i reinstalled the original fwh 2.7.
And i placed the hb_dynsymSymbol code into my prg file.
Now xLink doesn't complain but my app immediately crashes at start without showing a msginfo() which i placed at top of my code.
Any help is very much appreciated.
Regar... |
mapi | Detlef,
What xHB Builder version/build are you using ? Same question for FWH. Thanks, |
mapi | Ok, i found it.
The file fivehmx.lib.xbp provided from xHarbour.com is a little outdated.
You need to add toolbar.prg and rebar.prg to the list of source files and rebuild fivehmx.lib.
After this everything works ok.
But i still need to add the 'hb_dynsymSymbol' code to my program.
Regards,
Detlef |
mapi | Detlef,
Glad to know it is working fine <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) -->
> But i still need to add the 'hb_dynsymSymbol' code to my program.
Yes, it is needed, though suposedly its going to be added to xharbour soon. |
mapping server volumes | Hi, In this way I am able to connect to a server volume within a fivewin application. WinExec( "net use \\server\volume /user:Administrator marco ", 1)............WinExec( "net use \\server\volume /DELETE", 1)But I don't like that!Are there any other ways <!-- s:idea: --><img src="{SMILIES_PATH}/icon_idea.gif" alt=":... |
mapping server volumes | <!-- m --><a class="postlink" href="http://forums.fivetechsoft.com/viewtopic.php?t=9042&highlight=mapear">http://forums.fivetechsoft.com/viewtopi ... ght=mapear</a><!-- m --> <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: --> <!-- s:!: --><img src="{SMILIES_PATH}/icon_... |
mapping server volumes | Marco,try these functions[code:1masz11n]//--------------------------------------------------------------------------
FUNCTION MapNetworkDrive(cShare, cDevice)
RETURN(WNetAddConnection(cShare,cDevice))
//--------------------------------------------------------------------------
FUNCTION DelNetw... |
maquinas virtuales - virtual machines | Amigos,
Antonio en un momento me dio un ejemplo del uso de maquinas virtuales, para poder llamar funciones desde C pero que estan en harbour, ahora bien, como recupero un dato (cadena) que devuelve la funcion que llame y que esta en harbour.
Ejemplo:
function suma(a, b)
return ( a + b)
Como hago para que ese valor (... |
maquinas virtuales - virtual machines | Gustavo,
hb_parc( -1 ) para cadenas
hb_parnl( -1 ) para números (sin decimales)
etc...
-1 accede al valor devuelto. |
maquinas virtuales - virtual machines | O sea de la misma forma que si recuperas un dato enviado a una funcion en C? pense que al utilizar Virtual la cosa cambiaba.
Gracias. |
maquinas virtuales - virtual machines | Si, es igual, ya que la máquina virtual usa un item en donde almacena el valor de retorno (lo que se devuelve con "return ...").
La clave está en que al usar -1 con las funciones del sistema extendido, se accede al dicho item que almacena el valor de retorno. |
maquinas virtuales - virtual machines | Perdon la ignoracia, pero alguien me puede explicar que son las maquinas virtuales? |
maquinas virtuales - virtual machines | Harbour y xharbour, al igual que Clipper, y al igual que otros compiladores (como Java, Visual Basic, etc.) usan lo que se denomina una máquina virtual.
La maquina virtual es como una CPU virtual. Es decir, no se ejecutan las instrucciones del microprocesador directamente, sino desde una capa de instrucciones controla... |
maria?? test error in samples directory. | Hi Mr. Rao,
I try to run some samples about mariadb. it gives an error.
1040
too many connections.
for example. maria12.prg |
maria?? test error in samples directory. | That is a cloud server with low fees.
At times it gets overloaded.
Request you to please try later after an hour or two. |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.