topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
macro substitution & in fieldnames | Thanks guys,
With the samples I get it to work !
[quote="hmpaquito":b009oga3]Macro substitution is bad:
- slow (more slow than dbf field functions)
- avoid compiler syntax analisys.
Better harbour programming style is do not use macro substitution:
[/quote:b009oga3]
Out of curiosity, You suggested code from Harbour... |
macro substitution & in fieldnames | Here you are:
[code=fw:1tlmodpx]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br /><span style="color: #00C800;">function</span> filldbf<span style="color: #000000;">(</span><span style="color: #000000;">)</span><br /> <span style="color: #00C800;">Local</span> aCustfields:=<span style="co... |
macro substitution & in fieldnames | Thanks,
It works! and is better for reading the code.
Learning every day..
Thanks. |
mail | Amigos del foro:
He leido en estos foros algo acerca de TSMTP y Blat. Quisiera saber:
1.- Si se ha liberado algo de clases para SMTP para FWPPC.
2.- SI existe manera de leer o extraer un archivo que esta en la bandeja de entrada sin necesidad de intervención del usuario, obviamente ingresando la información de la cu... |
mail | Arturo,
Has localizado algo al respecto ? |
mail | Gracias a Felix por la información:
<!-- m --><a class="postlink" href="http://www.pocketpcdn.com/sections/mail.html">http://www.pocketpcdn.com/sections/mail.html</a><!-- m --> |
mail | Antonio:
No, en realidad no he invertido el tiempo necesario para resolver toda la parte de conectividad desarrollando con FWPPC.
Es mi primera aplicacion FWPPC. Estoy apenas a punto de concluir la parte de interfaz de usuario, se trata de un sistema de venta en campo.
Ahora estoy preocupado porque no he visto resp... |
mail | Arturo,
Nosotros te ayudaremos en todo lo posible, quedate tranquilo
Hay alguna razón específica para que sea por IRDA ? |
mail | Tu pregunta es lógica, pues en general hoy la impresion tiende a ir por BT, el problema es que tengo un usuario final que conserva aún impresoras IRDA en perfecto funcionamiento, están operando con la plataforma que estamos por migrar y desea conservarlas.
Gracias por tus comentarios. No dudo que será todo un éxito l... |
mail | Arturo,
Avísame cuando vayas a necesitar las funciones de IRDA y nos ponemos a ayudarte con ellas, |
mail | Gracias Antonio. El inicio sera enviar alguna cadena exitosamente por COM3: De hecho ayer comence a probar las funciones y clases documentadas de comunicacion serial, aunque no pude obtener respuesta de la impresora. Hoy voy a probar el codigo de respuesta que le envio Salvador Gallardo a Joop Hermsen desde este foro. ... |
maindllp.obj | Hola a todos:
Alguien me podria indicar donde encuentro este archivo que esta incluido en buildhdp.bat y es para generar dlls.
Gracias |
maindllp.obj | Alvaro,
Aqui lo tienes:
<!-- m --><a class="postlink" href="http://hyperupload.com/download/015ae9e742/maindllp.obj.html">http://hyperupload.com/download/015ae9e ... p.obj.html</a><!-- m --> |
maindllp.obj | Antonio,
Ya lo baje pero me da dos errores: unresolved external _HB_FUN_MSGINFO y _HB_FUN_ERRORSYS. La idea es tener un dll con algunas funciones de impresion personalizadas como lo tengo actualmente con fw/blinker y que este dll utilice funciones del exe. como puedo utilizar funciones externas ya que el linker no cre... |
maindllp.obj | Alvaro,
Decláralas como funciones "dummy":
function MsgInfo() ; return nil
function ErrorSys() ; return nil |
maindllp.obj | Antonio,
Las declaro como tu dices pero entonces no puedo usar las funciones del EXE. En fw/blinker puedo invocar las funciones, pasar parametros del EXE al DLL y utilizar las variables publicas del EXE, como podria hacer en FWH ?
Gracias |
mak file to harbour | hi, someone have an .mak file updated to user with Harbour (not xharbour)? very thanks |
mak file to harbour | Norberto,
Please review FWH\makes\bormake.zip |
make - project | Hi Antonio,From the samples I can see how to compile and link one prg with buildce.How do I compile some Prgs (like make / project)?**I can see in FWPPC\makes the go.bat and test.mak, but i'm not sure that I understood it all.Thanks,Moshe Yarden |
make - project | I use Xmate No problem ( for fwh and fwppc) |
make - project | Moshe,You can easily add more PRGs to buildce.bat:%hdir%\bin\harbour [b:2yptj7o8]%1[/b:2yptj7o8] /n /i%fwppc%\include;%hdir%\include /p %2 %3 > clip.log%vcdir%\bin\clarm -W3 -c /DARM /DUNICODE /I%hdir%\include /I..\include [b:2yptj7o8]%1.c[/b:2yptj7o8]%hdir%\bin\harbour [b:2yptj7o8]two.prg[/b:2yptj7o8] /n /i%fwppc%\inc... |
make - project | Thanks.I've downloaded xMate - its seems that it will take time to leaarn it.The sample Antonio sent is working ok.Regards,Moshe |
make - project | Moshe,We do use and recommend UEStudio as a powerful and professional IDE with visual make, source code editor, sources files compare, and a lot more features.We can help you to learn how to build your projects with UEStudio.Also there are some available tutorial videos posted in these forums. |
make - project | Antonio,Thanks. I'll try it.Are there 3rd party libs for FWPPC to shorten the screens/get/say (objects) writing process?I need to convert an application written in turbo pascal to fwppc, and it has a lot of screens and alerts or yes/no boxes. It could help to use functions that are having the objects in them.Regards,Mo... |
make - project | Moshe,You should use a resources editor for such task. There are many of them, and they will speed up very much the design of your screens:ResEdit: (free) <!-- m --><a class="postlink" href="http://www.resedit.net/">http://www.resedit.net/</a><!-- m --> PellesC (free) <!-- m --><a class="postlink" href="http://www.smor... |
make a rectangule with a brush | could someone help me in making a rectangle with a specific brush ( borland bdiagonal) ?
I tried with
[code=fw:7wwy6pmc]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> hLite := CreatePen<span style="color: #000000;">(</span> PS_SOLID, <span style="color: #000000;">1</span>, ::<span st... |
make a rectangule with a brush | [code=fw:7kw0s0sn]<div class="fw" id="{CB}" style="font-family: monospace;"> <span style="color: #0000ff;">DEFINE</span> <span style="color: #0000ff;">BRUSH</span> hBrush <span style="color: #0000ff;">STYLE</span> BDIAGONAL <span style="color: #0000ff;">COLOR</span> Rgb<span style="color... |
make a rectangule with a brush | Or we can also do this with minimal code like this:
[code=fw:2qvsky2m]<div class="fw" id="{CB}" style="font-family: monospace;"> <span style="color: #0000ff;">DEFINE</span> <span style="color: #0000ff;">BRUSH</span> oBrush <span style="color: #0000ff;">STYLE</span> BDIAGONAL <span style="color: #0000ff;">COLOR... |
make a rectangule with a brush | [quote="nageswaragunupudi":wm3rg1zj]Or we can also do this with minimal code like this:
[code=fw:wm3rg1zj]<div class="fw" id="{CB}" style="font-family: monospace;"> <span style="color: #0000ff;">DEFINE</span> <span style="color: #0000ff;">BRUSH</span> oBrush <span style="color: #0000ff;">STYLE</span> BDIAGONAL <spa... |
make a rectangule with a brush | [quote:33wlzmkr] the problem is that a btnbmp when disabled looks ugly[/quote:33wlzmkr]
Depends on the program. |
make a rectangule with a brush | [code=fw:gdtl1h3i]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">function</span> test<span style="color: #000000;">(</span><span style="color: #000000;">)</span><br /><br /> <span style="color: #00C800;">local</span> oDlg, oBtn, hBmp := LinesBmp<span style="c... |
make a rectangule with a brush | [quote="nageswaragunupudi":2fuap274][code=fw:2fuap274]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">function</span> test<span style="color: #000000;">(</span><span style="color: #000000;">)</span><br /><br /> <span style="color: #00C800;">local</span> oDlg, oBtn, hBmp... |
make a rectangule with a brush | Rao,
I modify your test inserting the gradient I use and the color of border
[code=fw:1agnwi4v]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"fivewin.ch"</span><br /><br /><br /><br /><span style="color: #00C800;">function</span> ... |
make a rectangule with a brush | Enlarge?
Pls provide an example. |
make a rectangule with a brush | Mr. Rao,
I meant that if you see well the button has problems when using the gradient or the brush with diagonal lines, in both cases they come out of the border when they shouldn't. |
make a rectangule with a brush | [quote="Silvio.Falconi":34882vnc]Mr. Rao,
I meant that if you see well the button has problems when using the gradient or the brush with diagonal lines, in both cases they come out of the border when they shouldn't.[/quote:34882vnc]
I see your point.
We will look into this. |
make de Borland no me compila los ficheros modificados | Hola <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
Tengo un fichero .mak para compilar mi proyecto y lo hace perfectamente. El problema es que si modifico cualquier fichero de código (.prg) el make no se entera y tengo que ir al directorio OBJ donde están los .OBJ de los... |
make de Borland no me compila los ficheros modificados | Colega yo uso rmk de toda la vida, sin problemas,
compilo con bcc582.
Podrias hacer una comparación.
saludos.
[code=fw:691aw82d]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br />#Borland make sample<br /><br />HBDIR=\xharbcvs<br />BCDIR=\bcc582<br />FWDIR=\FWH<br /><br />#cambiar estos path a sus ... |
make de Borland no me compila los ficheros modificados | [quote="sysctrl2"]Colega yo uso rmk de toda la vida, sin problemas,
compilo con bcc582.
Podrias hacer una comparación.
saludos.
Hola <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
He comparado este ejemplo con lo que tengo pero sigue sin funcionar. El que tengo está así... |
make de Borland no me compila los ficheros modificados | Intenta:
En el inicio del archivo poner:
[code=fw:3p9ixii7]<div class="fw" id="{CB}" style="font-family: monospace;"><br />@<span style="color: #00C800;">If</span> Exist *.Exe Del *.EXE<br />@<span style="color: #00C800;">If</span> Exist *.Obj Del *.Obj<br />@<sp... |
make error after upgating to MacOs Catalina | Hello group,
Last week I updated my Macboork to MacOs 10.15 (Catalina). Now when I try to compile my program I get an error that my path is not set correctly:
[code=fw:jepkmp7u]<div class="fw" id="{CB}" style="font-family: monospace;">Symbol not found: _OBJC_IVAR_$_NSFont._fFlags Referenced <span style="color: #0000ff... |
make error after upgating to MacOs Catalina | René,
I have not installed Catalina yet.
I am going to test it and also ask Manuel Alvarez who surely may have tested it already...
A quick solution is coming, don't despair <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
make error after upgating to MacOs Catalina | Hello Antonio and Manuel,
Thank you for looking into this problem.
BTW, i am using xcode version 9 (version 9.4.1) because some users of my software use an older version of MacOs and they got an error when I compiled with xcode 10 (software not suitable for this version) |
make error after upgating to MacOs Catalina | Steps to use OSX Catalina:
1. xcode-select --install
After this FiveMac working fine! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
make error after upgating to MacOs Catalina | Hello antonio,
I tried this, but gives the same error:
[code=fw:3ph12lr6]<div class="fw" id="{CB}" style="font-family: monospace;">make<br />dyld: <span style="color: #000000;">Symbol</span> not found: _OBJC_IVAR_$_NSFont._fFlags<br /> Referenced <span style="color: #0000ff;">from</span>: /Applications/Xcode.app/Cont... |
make error after upgating to MacOs Catalina | René,
Please try this:
sudo xcode-select --switch /Library/Developer/CommandLineTools/
[url:1ovp4lyd]https://stackoverflow.com/questions/19647788/git-error-unable-to-locate-xcodebuild-after-a-fresh-os-x-mavericks-upgrade/19649139[/url:1ovp4lyd] |
make error after upgating to MacOs Catalina | Hello Antonio,
YES, thank you. Back on track again. |
make file for MinGW | Hi,
I want to compile with MinGW, does anyone have a .mak file to compile?
Thank you |
make file for MinGW | FWH\samples\buildg.bat |
make file for projects | Hi ,
After a long period , I returned to old project with Fwh + harbour/xHarbour + Bcc ( 5.8 or 6.3 ) . I have fwh 11.11 . Can you advice with which - harbour or xharbour - it's better to work at this time ? With old xharbour ( 0.99.7 ) I was working through .bc , in which direct all prgs , libs and etc . Now tried ... |
make file for projects | Please try to reduce the code to the minimum yet showing the problem.
EMG |
make file for projects | Rimantas,
I have only one advice : try xmate . You need only one env-file . switching between harbour or xharbour is very easy.
Frank |
make file for xMate | <!-- m --><a class="postlink" href="http://forums.fivetechsoft.com/viewtopic.php?p=70684#70684">http://forums.fivetechsoft.com/viewtopi ... 0684#70684</a><!-- m --> |
make file para MinGW | Hola,
Quiero compilar con MinGW, ¿ Alguien tiene un archivo .mak para compilar ?
Gracias |
make file para MinGW | FWH\samples\buildg.bat |
make file para hbmake com fwppc | Olá
Alguem teria um exemplo de arquivo make para uso do hbmake com fwppc?
Já tentei criar um a partir do zero mas surgem diversos erros na compilação.
[]'s
Rogerio |
make file para hbmake com fwppc | Rogerio,
Aqui tienes un ejemplo funcionando de make para Microsoft:
<!-- m --><a class="postlink" href="http://hyperupload.com/download/eb016d22/fwcemake.zip.html">http://hyperupload.com/download/eb016d2 ... e.zip.html</a><!-- m --> |
make utility | I can not put all my code in 1 files . Can somebody guide me How to use make utility . |
make utility | Ehab,
Please review fwh\makes directory. There you have one make for Borland and another for Microsoft. |
make utility | I fixed the path in test.rmk and those errors where found .
E:\COMPILER\clipper\FWH\makes\bormake>if not exist obj md obj
E:\COMPILER\clipper\FWH\makes\bormake>e:\compiler\cpp_lang\bcc55\bin\make -fmine.rmk
MAKE Version 5.2 Copyright (c) 1987, 2000 Borland
e:\compiler\clipper\harbour\bin\harbour .\alert.PRG /L /... |
make utility | Ehab,
You have to link hbsix.lib and dbffpt.lib too. These changes were implemented after the makes were developed. |
make utility | What are the rules of making variable(Dialog) visible to main and sub-program such as public variable in clipper ?
Also I faced that error in the sub-program
Compiling '.\cust.PRG'...
.\cust.PRG(16) Error E0030 Syntax error: "parse error at 'DIALOG'"
.\cust.PRG(19) Error E0030 Syntax error: "parse error at '@'"
... |
make utility | Ehab,
Please start new threads for new questions.
Have you #include "FiveWin.ch" at the beginning ?
Variables values may be public and they keep the values. A dialog (modal) ends when it is closed. |
make utility | I faced that error after including in my sub-programs after including :
#include "FiveWin.ch"
#include "colors.ch"
#include "Folder.ch"
listcust() is the function of the sub-program called from the main program as action listcust()
IF EXIST sitex.res echo sitex.res >> b32.bc
e:\compiler\cpp_lang\bcc55\bin\ilink32 -G... |
make g++ y los archivos .o | buenas noches.
Se que no es de Fivewin pero necesito que me ayuden en esto que no doy pie con bola.
necesito que al compilar por medio de un makefile los OBJ se generen en una carpeta en particular y no
en la carpeta de los .c
[code=fw:1h4hhm9e]<div class="fw" id="{CB}" style="font-family: monospace;"><br />DIR:=src/... |
make g++ y los archivos .o | Gustavo,
DIR:=src/
OBJ:=obj/
g++ -c $(DIR)test.c -o$(OBJ)test.o |
make g++ y los archivos .o | Hola Antonio,
Aparentemente cuando usas los comodines:
[code=fw:2vjzsnou]<div class="fw" id="{CB}" style="font-family: monospace;">d_src:=src<br />d_obj:= obj<br /><br />SRC:= $<span style="color: #000000;">(</span>wildcard, $<span style="color: #000000;">(</span>d_src<span style="color: #000000;">)<... |
makefile de Borland genérico para múltiples PRGs | go.bat
[code=fw:2ixxtfpf]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">if</span> not exist obj md obj<br />c:\bcc582\bin\make -fone.mak</div>[/code:2ixxtfpf]
one.mak
[code=fw:2ixxtfpf]<div class="fw" id="{CB}" style="font-family: monospace;">HBDIR=c:\harbour<br />BCDIR=c:\bc... |
makefile de Borland genérico para múltiples PRGs | Antonio, si hubiera posibilidad de incluir en el .mak una directiva (#include "mis.prgs") o algo parecido que sustituyera a:
[code=fw:1dqqlp1n]<div class="fw" id="{CB}" style="font-family: monospace;"><br />PRG = \<br />.\one.prg \<br />.\two.prg \<br />.\three.prg \<br />.\four.prg \<br />.\five.... |
makefile de Borland genérico para múltiples PRGs | Usando xHarbour:
[code=fw:jszwvavq]<div class="fw" id="{CB}" style="font-family: monospace;"><br />#Borland make sample, <span style="color: #000000;">(</span>c<span style="color: #000000;">)</span> FiveTech Software <span style="color: #000000;">2005</span><span style="color: #000000;">-2014</span> With xHarb... |
makefile de Borland genérico para múltiples PRGs | [quote="cnavarro":39idyonc]En el .bat buildh.bat del subdirectorio samples de Fwh, aparece un buen ejemplo de lo que preguntas ( las librerias TDolphin, aparecen comentadas )[/quote:39idyonc]
ok.
gracias |
makefile de Borland genérico para múltiples PRGs | hola de nuevo.
donde hay info de los parametros que se pueden incluir en un .mak?
necesito saberlo para ver si puedo eliminar estas lineas:
[code=fw:2boyiqgl]<div class="fw" id="{CB}" style="font-family: monospace;">#change these paths as needed<br />.path.OBJ = .\obj<br />.path.PRG = .\<br />.path.CH = $<span ... |
makefile de Borland genérico para múltiples PRGs | Esoty haciendo una app simple que me genere este .mak
una pregunta:
en que parte sumo las .lib como ser tdolphin.lib,
y las dll?
gracias. |
makefile de Borland genérico para múltiples PRGs | En el .bat buildh.bat del subdirectorio samples de Fwh, aparece un buen ejemplo de lo que preguntas ( las librerias TDolphin, aparecen comentadas ) |
makefile de Borland genérico para múltiples PRGs | [quote="goosfancito":2arrfwc6]hola de nuevo.
donde hay info de los parametros que se pueden incluir en un .mak?
necesito saberlo para ver si puedo eliminar estas lineas:
[code=fw:2arrfwc6]<div class="fw" id="{CB}" style="font-family: monospace;">#change these paths as needed<br />.path.OBJ = .\obj<br />.path.PRG = .\... |
makefile de Borland genérico para múltiples PRGs | Pero me fuerza a que los sources esten en el mismo directorio,
y si necesito que utilice un source que esta en otro directorio?
tenes skype? farameo si podes gracias. |
makefile de Borland genérico para múltiples PRGs | Comenta esta linea
[quote:1nrvn7wf]
#.path.PRG = .\
[/quote:1nrvn7wf]
pon los ficheros que necesitas con sus paths y pruébalo
o inténtalo asi
[quote:1nrvn7wf]
.path.PRG = c;
[/quote:1nrvn7wf]
y los ficheros los defines asi
[quote:1nrvn7wf]
\MIPATH\MIFICHERO.PRG
[/quote:1nrvn7wf]
No uso Skype, lo siento, a ver si me ha... |
makefile de Borland genérico para múltiples PRGs | Puedo incluir un .res en vez de un .rc?
podrian explicarme como?
gracias. |
makefile de Borland genérico para múltiples PRGs | Aunque no me ha surgido nunca, prueba asi
[quote:2mlrk19c]
one.exe : $(OBJS) one.res otro.res
[/quote:2mlrk19c]
En el que otro.res es otro fichero que quieres añadir
Esto es si lo tienes creado y no es el de la aplicacion
Por otra parte:
Si es el de la aplicacion que ya lo tienes creado
[quote:2mlrk19c]
one.exe : $(... |
makefile de Borland genérico para múltiples PRGs | gracias.
Es que estoy haceindo una app practica para generar ese .mak y .bat
y por eso tantas preguntas ya que nunca utilice un .mak.
Hasta ahora va funcionando pero veo que tengo algunos errores al crear el script,
una vez que tenga armado bien lo subo para poder compartirlo y que puedan ayudar con las modificaciones... |
makefile de Borland genérico para múltiples PRGs | Hace mucho, mucho tiempo que no uso XHarbour ( sólo lo probé cuando migré a 32 bits )
Anímate, y cambia, es mi consejo
Es un dolor de muelas durante un par de dias, y luego coser y cantar |
makefile de Borland genérico para múltiples PRGs | Karina.
Tu script me tira este error:
Fatal: Too many MAP file names: Z:\xh\fwh\lib\FiveHC.lib
solo he cambiado los nombres de mi .prg.
Podes darme una mano?
gracias. |
makefile de Borland genérico para múltiples PRGs | Hola.
Antonio tendras uno generico tambien para xharbour?
gracias. |
makefile de Borland genérico para múltiples PRGs | [quote="goosfancito":1tsgdf0g]Karina.
Tu script me tira este error:
Fatal: Too many MAP file names: Z:\xh\fwh\lib\FiveHC.lib
solo he cambiado los nombres de mi .prg.
Podes darme una mano?
gracias.[/quote:1tsgdf0g]
Fatal: Too many MAP file names
<!-- l --><a class="postlink-local" href="http://forums.fivetechsuppo... |
makefile de Borland genérico para múltiples PRGs | Mejoras utilizando xHarbour:
[code=fw:108zcaua]<div class="fw" id="{CB}" style="font-family: monospace;"><br />#Borland make sample, <span style="color: #000000;">(</span>c<span style="color: #000000;">)</span> FiveTech Software <span style="color: #000000;">2005</span><span style="color: #000000;">-2014</span... |
makefile de Borland genérico para múltiples PRGs | B32.BC
[code=fw:32fn6gdd]<div class="fw" id="{CB}" style="font-family: monospace;"><br />c:\BCC582\lib\c0w32.obj + <br />OBJ\TESTE.obj + <br />OBJ\<span style="color: #00C800;">DISPLAY</span>.obj, + <br />TESTE.exe, + <br />TESTE.map, + <br />c:\FWH1306\lib\FiveHx.lib + <br />c:\FWH1306\lib\FiveHC.lib + <br />c:\XHB28... |
makefile de Borland genérico para múltiples PRGs | Ok Karinha,
gracias, voy a probarlo. |
making a installation package | Hello,
Maybe this is not the place to ask this, but I try.
My app is nearly finished and now I want to distribute it. I think I need to make a pkg file, but I don't know how. This is the requirement:
[list:ujavy7ru]the app must be placed in the /program/ folder
the database I want to put in the users/USERNAME/plantenk... |
making a installation package | René,
Have a look at fivemac/setup/fivemac.pmproj |
making a installation package | It seems as pmproj is deprecated
Please review:
[url:2ejj8nda]http://stackoverflow.com/questions/11487596/making-os-x-installer-packages-like-a-pro-xcode-developer-id-ready-pkg[/url:2ejj8nda] |
making a installation package | [url:36t20xgl]http://s.sudre.free.fr/Software/Packages/about.html[/url:36t20xgl] |
making a installation package | Hello Antonio,
I think packages is just what I need. With the online help I was able to build a pkg file. Thanks. |
mamartin | Hola,
Me gustaría saber si puedo trabajar con folders a partir de dialogos creados desde el fuente (no los tengo en el .rc)
Otra cuestión, ¿Se pueden añadir barras de scroll vertical en una ventana o en un dialogo ?En caso de que se pueda, ¿me podrían mostrar como se haría?
Muchas gracias. |
mamartin | Revisa samples\TestFold.prg
En cuanto a las barras de scroll, vamos a publicar pronto un nuevo build de FWPPC con esa capacidad. |
mamartin | Hola!
Me gustaría saber si hay alguna función que nos devuelva la versión del sistema operativo que esta instalado en nuestra Pocket PC.
Muchas gracias. |
mamartin | Miguel Angel,
[code:34hioqd2]
#include "FWCE.ch"
function Main()
local aVer := GetVersion()
MsgInfo( "Windows Version : " + Str( aVer[ 1 ], 3 ) + "." + ;
AllTrim( Str( aVer[ 2 ], 3 ) ) )
return nil
[/code:34hi... |
mamartin | Muchas gracias |
mamartin | de nada <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) --> |
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:vhwgqg4l]https://mybergland.com/fwforum/megamenuvw.gif[/img:vhwgqg4l] |
manage with FIVEWIN your mod harbour megamenu | Hello friends,
Now we manage the web page content with xBrowse. Data is from a DBF file.
Best regards,
Otto
[img:1peiud9p]https://mybergland.com/fwforum/webpagemanagement.jpg[/img:1peiud9p]
Set filter
[img:1peiud9p]https://mybergland.com/fwforum/webpagemanagementfilter.jpg[/img:1peiud9p] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.