topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
oGet:bGotFocus Problem | [code:2cdotxor]#include "fivewin.ch"
function main()
local oDlg, oGet, cName:= "Microsoft ", oGet2, cAddress:=space(22), oBtn
define dialog oDlg
@ 1,1 get oGet var cName of oDlg
// oGet:bGotFocus:= {|| oGet:gohome(), oGet:oGet:c... |
oGet:bGotFocus Problem | Alternative (maybe better):
[code:1hf8r1pc]#include "fivewin.ch"
#define EM_SETSEL 177
function main()
local oDlg, oGet, cName:= "Microsoft ", oGet2, cAddress:=space(22), oBtn
define dialog oDlg
@ 1,1 get oGet var cName of oDlg
// oGet:bGotFocus:= ... |
oGet:bGotFocus Problem | Enrico,
> oGet:bGotFocus := { || oGet:PostMsg( WM_KEYDOWN, VK_HOME ) }
I already tried that. First it only has an effect when tabbing or shift-tabbing into the Get. What it does is select the text from position 1 to the current postion without changing the position. I need it to go to position 1 without selecting ... |
oGet:bGotFocus Problem | Enrico,
>oGet:bGotFocus := { || oGet:PostMsg( EM_SETSEL, Len( RTrim( cName ) ), 0 ) }
This one selects all the text from 1 to the current cursor position. Still not what I need.
James |
oGet:bGotFocus Problem | [quote="James Bott":1zqu7i5z]Enrico,
> oGet:bGotFocus := { || oGet:PostMsg( WM_KEYDOWN, VK_HOME ) }
I already tried that. First it only has an effect when tabbing or shift-tabbing into the Get. What it does is select the text from position 1 to the current postion without changing the position. I need it to go to ... |
oGet:bGotFocus Problem | Enrico,
[quote:2gy3w5m5]What it does here is the following:
1. I click on the second GET.
2. Then I click on the first GET (not on the first position).
3. The caret is now on the first position of the first GET.
Is it what you need?[/quote:2gy3w5m5]
Yes, that is what I need but not what I am getting here. Whe... |
oGet:bGotFocus Problem | Enrico,
I also see exactly the same behavior that I get with Harbour with Clipper.
James |
oGet:bGotFocus Problem | I'm using latest FWH with latest xHarbour or latest Harbour.
EMG |
oGet:bGotFocus Problem | Do you want my EXE to test it there?
EMG |
oGet:bGotFocus Problem | Enrico,
Yes, please send me both the PRG and the EXE.
Thanks,
James |
oGet:bGotFocus Problem | After evaluating my situation again, I have figured out that what I really needed was to just clear the GET whenever it was clicked into. I have been able to do this with this code:
oGet:bGotFocus := { || oGet:varPut(space(len(oGet:varGet()))), oGet:refresh() }
The reason I needed this is that the GET is an incre... |
oGet:bGotFocus Problem | [quote="James Bott":3j3sdlhy]Enrico,
Yes, please send me both the PRG and the EXE.
Thanks,
James[/quote:3j3sdlhy]
Sent.
Let me know.
EMG |
oGet:bGotFocus Problem | [quote="James Bott":21s57c2o]Thanks for your time, Enrico.[/quote:21s57c2o]
It's my great pleasure.
EMG |
oGet:bKeyDown | LOCAL ccodibar14 := Space( 14 )
@ 9, 2 GET aoGt[ 2 ] VAR ccodibar14 PIXEL SIZE 62, 10 ;
PICTURE "@! " + Replicate("X",14) OF oDlg
aoGt[ 2 ]:bKeyDown := { | nKey | ;
IF( nKey == K_ENTER, MsgInfo( "ccodibar14 " + ;
ccodibar14, "Valor" ), ) }
Con la versión 7... |
oGet:bKeyDown | aoGt[ 2 ]:bKeyDown := { | nKey | ;
IF( nKey == K_ENTER, MsgInfo( "ccodibar14 " + ;
ccodibar14, "Valor" ), ) }
No funciona, compila y enlaza bien pero al pulsar intro no pasa el valor
del GET a la variable ccodibar14.
Cambiando bKeyDown por bKeyChar funciona perfectamente
con FWH 7.09 recien instalada.
aoGt[ 2 ]:bK... |
oGet:lValid no me funciona (Solucionado) | Hola cuates,
Quiero usar la validacion de un GET pero sin usar directamente la clausula VALID (Resp2>=Resp1) sino usando el oGet:lValid pero no logro que lo valide.
[code=fw:15cwfnhj]<div class="fw" id="{CB}" style="font-family: monospace;"><br />...<br /> <span style="color: #0000ff;">REDEFINE</span> <span style="c... |
oGet:lValid no me funciona (Solucionado) | Rodolfo...
prueba
oGet2:lValid = ( Resp2>=Resp1 ) |
oGet:lValid no me funciona (Solucionado) | Gracias por tu respuesta Daniel, pero al hacerlo asi me aparece el siguiente error:
Error description: Warning BASE/1005 Message not found: TGET:_LVALID |
oGet:lValid no me funciona (Solucionado) | Rodolfo,
Prueba asi:
oGet2:bValid := { || Resp2 >= Resp1 }
ojo, es bValid no lValid, ya que lValid() es un método que lo que hace es evaluar bValid <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
oGet:lValid no me funciona (Solucionado) | Don Antonio, ese era el detalle, asi si funciono, Gracias. |
oGet:lchanged not functioning correct | If i am using oGet:lchanged this is only functioning on first edit. After editing a second,... one the lChanged is always .T. also when i not change the value! It sems ::uOriginalValue are not updated to the new value after editing. |
oGet:lchanged not functioning correct | [quote:3hhddu3v]::uOriginalValue are not updated to the new value after editing.[/quote:3hhddu3v]
Will not be changed every time the user edits.
uOriginalValue is the value at the time the Get is created and will remain the same till the Get ends.
lChanged is .T. if the present value is different from the value when t... |
oGet:lchanged not functioning correct | Rao, but what the sin from knowing the value of the control at create-time? The interest is the change .t. or .f. !
If you make the ::lchanged not PROTECTED we can use it as programmer.
Or is there another method to determine a get is edited or not? |
oGet:nClrDef in FW27 | With fw27 i got a error which is not present in fw2.6 :
NclrDef is also present in the documentation
Error description: Error BASE/1004 Message not found: TGET:NCLRDEF
Stack Calls
===========
Called from: => TGET:ERROR(180)
Called from: tobject.prg => (b)HBOBJECT:HBOBJECT(106)
Called from: => TGET:MSGNOT... |
oGet:nClrDef in FW27 | Frank,
Do you use a modified Class TGet of your own ? nClrDef is no longer used in all FWH PRGs. |
oGet:nClrDef in FW27 | Where is it documented ? It was present in fw26 , AND ALSO IN THE DOCUMENTATION FROM 2.7
I was so lucky that after the instalation from the new release mine client saw this error while i was there , if not i had maybe to return ( 100 km)
Frank |
oGet:nClrDef in FW27 | Frank,
Our apologies if we have not documented it.
Just search in all FWH PRGs for such name and you will see it is not there. |
oGet:nClrDef in FW27 | Antonio,
in latest issue of fwh 2.6 i found in tget.prg this:
/----------------------------------------------------------------------------//
CLASS TGet FROM TControl
DATA oGet
DATA bMin, bMax
DATA nClrDef
DATA nPos
DATA lReadOnly, lPassword
DATA cError AS String
DATA hHeap AS NUME... |
oGet:oGet:Changed in HARBOUR | Hello ,
Doesn't work
Frank |
oGet:oGet:Changed in HARBOUR | Look, please
<!-- m --><a class="postlink" href="http://www.pctoledo.com.br/forum/viewtopic.php?f=4&t=13517">http://www.pctoledo.com.br/forum/viewto ... =4&t=13517</a><!-- m -->
<!-- m --><a class="postlink" href="http://www.pctoledo.com.br/forum/viewtopic.php?f=4&t=10480">http://www.pctoledo.com.br/forum/viewto ... ... |
oGet:setSel in XP | Hi all,
The oGet:setSel() (Clipper 52 + FW24) is not highlighting text in XP at least in our system. Is this a known issue?. Any work around?
Thanks,
jose |
oGet:setSel in XP | oGet:selectall() |
oGet:setSel in XP | hi easywin,
Kindly confirm that the environment is Clipper52, FW24 and Windows XP.
Thanks, |
oGet:setSel in XP | oGet:bGotfocus:={||oGet:selectall()}
Test under Clipper52/FW195/WindowXP |
oGet:setSel() not working? | I can't seem to get the setSel() method of the TGet class to work. The following code doesn't show any highlighted text.
[code:gia9yzsw]#include "fivewin.ch"
function main()
local oDlg, oGet, cString:= "1234567"
define dialog oDlg title "Test Get Select"
@ 2,2 get oGet var cString of oDlg u... |
oGet:setSel() not working? | This is a working sample:
[code:j3t4oq62]#include "fivewin.ch"
function main()
local oDlg, oGet, cString:= "1234567"
define dialog oDlg title "Test Get Select"
@ 2,2 get oGet var cString of oDlg update
oDlg:bStart = { || oGet:SetSel(2,5) }
activate dia... |
oGet:setSel() not working? | Enrico,
How odd. When I use the ON INIT it actually preprocesses to this:
{ |self| oGet:SetSel(2,5) }
If I do:
oDlg:bInit:= { |self| oGet:SetSel(2,5) }
It works just like you said also. But the same code doesn't work when assigned via the ON INIT clause. Strange.
I also tried doing it from a button action, but ... |
oGet:setSel() not working? | Enrico,
Whoops. I didn't realize you were using oDlg:bStart NOT oDlg:bInit. bInit does not work, but bStart does. Now I get it.
I still need to figure out how to highlight text after each keystroke. I tried bKeydown also and that doesn't work either.
James |
oGet:setSel() not working? | Try this:
[code:1ni1mlne]#include "fivewin.ch"
#define EM_SETSEL 177
function main()
local oDlg, oGet, cString:= "1234567"
define dialog oDlg title "Test Get Select"
@ 2,2 get oGet var cString of oDlg update on change oGet:PostMsg( EM_SETSEL, 2, 5 )
activate dialog oDl... |
oGet:setSel() not working? | Enrico,
Wow, that seems to work!
I had already tried:
SendMessage( oGet:hWnd, EM_SETSEL, 2, 5 )
but that didn't work.
Thanks a lot.
James |
oGet:setSel() not working? | You're welcome, James! By the way, can we have the honour to see your face? <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
EMG |
oGet:setSel() not working? | James,
Sandeep's TDD class does it : Auto-complete from dbf
I use it since fw 1.95
U can download it from Patrick Mast's <!-- w --><a class="postlink" href="http://www.fivewin.info">www.fivewin.info</a><!-- w --> |
oGet:setSel() not working? | Hoe,
Thanks. I'll take a look. I do have mine working also, so it will be interesting to see how he did it too.
James |
oGraph- how to save into bmp in silent mode | To all,
I use xBrowse as a preview for a report.
Now I would like to print this report.
On each single line I would like to print the corresponding graph.
Does someone know how to convert oGraphs in silent mode to bmp.
Best regards,
Otto
[img:38qr2tak]http://www.atzwanger-software.com/fw/ograph.jpg[/... |
oGraph- how to save into bmp in silent mode | I assume you are using the TGraph() class. If so, it has a Save2Bmp() method, have you tried that? I haven't tried it but I don't see anything that make it to be not silent.
METHOD Save2Bmp( cFile ) CLASS TGraph
LOCAL hBmp, hDib
DEFAULT cFile := "TGraph.Bmp"
hBmp := WndBitmap( Self:hWnd )
hDib := DibFr... |
oGraph- how to save into bmp in silent mode | Hello Robb,
thank you for your help.
The method is working.
After a long time I am using again ER.
I have to re-learn the handling and find a workflow for me.
I have also to look into the paint method of oGraph to reduce the margin.
The margin around the graphs consume to much space.
Thanks again and best regards,
Ott... |
oGraph- how to save into bmp in silent mode | This is the source code for calling the Report:
[code=fw:1sz1rbve]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">function</span> printMonatsvgl<span style="color: #000000;">(</span><span style="color: #000000;">)</span><br /> <span style="color: #00C80... |
oGraph- how to save into bmp in silent mode | Hello,
please see how nice xBrowse and EasyReport are working.
Frist you see a report-live-preview. The user can add and delete subtotals wherever you need in your report.
Then you can print the report including the graphs.
Best regards,
Otto
VIDEO
[url:31hjag05]http://www.atzwanger-software.com/fw/Jahrsv... |
oGraph- how to save into bmp in silent mode | Otto
In the spanish section of Easyreport forum they're making great progress and building an awesome product. |
oGraph- how to save into bmp in silent mode | Otto Good afternoon, thing is, I need to create graphics in silent mode and then print a report on EasyReport , by chance you have an example of how. I'm using the tgraph .
At this point I think a dialogue to show the image, but it only works when the dialog is closed.
This is the function .
Cheers
[code=fw:h608fi8l... |
oGraph- how to save into bmp in silent mode | Otto,
I am not sure exactly what you are trying to do, but if you need to draw the graph, then save it to a bitmap, then you probably can draw it on an invisible window or dialog, then save it and end the window or dialog.
James |
oHoja:Cells(43):Comment:Text:=""Comentari"" SOLUCIONADO | Hola a todos,
Aún estoy encontrando problemas on las hojas de Excel que estoy creando desde que he actualizado a FWH 10.09.
Ahora el que no quiere funcionar es:
oHoja:Cells( nLinea, 3 ):Comment:Text := "Comentario"
Antes con la versión FWH 9.03 no tenía problemas.
Cómo puedo resolverlo? Que es lo que sustituye a... |
oHoja:Cells(43):Comment:Text:=""Comentari"" SOLUCIONADO | Ahora es así:
oHoja:Cells( 4, 3 ):Comment:Text( "Comentari" ) |
oImage no muetra algunas imagenes | Buenos días compañeros del foro, tengo un comportamiento extraño con el siguiente código:
[code=fw:24gjw7po]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #0000ff;">redefine</span> <span style="color: #0000ff;">image</span> oImage <span style="color: #0000ff;">of</span> oDialfd FIL... |
oImage no muetra algunas imagenes | Que versión de FWH usas ? |
oImage:LoadImage no carga la imagen a un dialogo | Buenas tardes compañeros del foro, tengo un pequeño problema, en un dialogo tengo un objeto imagen donde se cargaran imagenes de forma dinamica, el usuario dará click al botón siguiente o anterior y el sistema mostrará la foto anterior o siguiente, el problema es que no carga la imagen al pulsar alguno de estos botones... |
oImage:LoadImage no carga la imagen a un dialogo | Mario:
Yo uso
[code=fw:35l1lo2p]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oImage:<span style="color: #000000;">LoadBmp</span><span style="color: #000000;">(</span>cArchifoto<span style="color: #000000;">)</span><br /> </div>[/code:35l1lo2p]
Será por ahí?
Saludos |
oImage:LoadImage no carga la imagen a un dialogo | <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" title="Shocked" /><!-- s:shock: --> Pues si, al cambiarlo a LoadBmp ya funciono....
Mil gracias |
oImage:Progress | Al cargar una imagen con LoadBmp(), si el fichero es jpg, oImage:Progress(.t.) funciona correcto, pero si la imagen en BMP, sale la pantallita de progress, pero no se ve el avance del timer. ¿Alguna idea?
Gracias y un saludo
Manuel |
oJump for Antonio | Antonio, you set oJump after one navigation to this control to NIL, but if going again to the same control now the oJump is no further functioning as it is NIL!?
[code=fw:3mufbbn8]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">METHOD</span> ForWhen<span style="color: #000000;">&... |
oJump for Antonio | Günther
I deleted my post after re-reading your initial post about oBtn ... here is the code I deleted that pertained to the oJump method ..
[code=fw:15kt2f4o]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #0000ff;">REDEFINE</span> <span style="color: #0000ff;">GET</span> oPositi... |
oJump y los buttons | Antonio,
Pongo aca el código asi me explico mejor. aca los oJump funcionan, pero no puedo hacer click en los button. en este caso, como hago para que funcione el oJump y a parte el click del button?
Gracias
[code:1vnxb0ou]FUNCTION main()
LOCAL oDlg, ;
oDatos := Array( 10 ), ;
... |
oJump y los buttons | Prueba a usar la cláusula CANCEL en los buttons |
oJump y los buttons | [quote="Antonio Linares":1zt2te09]Prueba a usar la cláusula CANCEL en los buttons[/quote:1zt2te09]
Al hacer esto, luego ya deja de funcionar el jump... aclaro con el mouse, con el teclado funciona. |
oJump y los buttons | ¿Ya probaste a poner un mensaje en el action del botón?. Pregunto por que no veo que tenga un action entonces.... simplemente no hace nada.
REDEFINE BUTTON oBtns[1] ID 301 OF oDlg ;
ACTION Hola()
static function Hola()
?"Si aparece este mensaje. Si funciona"
return nil |
oLbx:bKeyDown:= {|nK| if( nK==VK_RETURN oDlg:End() ) } | Amigos:
No me funciona en los Browses esta funcion que si me funcionada antes.
Alguna sugerencia?
Saludos y gracias
Ruben Fernandez
FWH 2.7, Harbour |
oLbx:bKeyDown:= {|nK| if( nK==VK_RETURN oDlg:End() ) } | Ruben,
Este ejemplo funciona con el build 2.7 de marzo:
[code:3uhpses0]
#include "Fivewin.ch"
FUNCTION MAIN()
LOCAL oDlg, oBrw
DEFINE DIALOG oDlg
@ 1, 1 LISTBOX oBrw FIELDS SIZE 100, 30
oBrw:bKeyDown:= {|nK| if( nK==VK_RETURN, ( MsgInfo(), oDlg:En... |
oLbx:bKeyDown:= {|nK| if( nK==VK_RETURN oDlg:End() ) } | Gracias Maestro:
Aparentemente tenía declarado nk:=LastKey()
y esto era lo que me complicaba.
Gracias y saludos.
Ruben Fernandez. |
oLbx:cSeek fwh1903 | Antonio,
estou tendo problema com cseek em xbrowse
faço o filtro e fecho a tela do xbrowse, quando chamo a tela do xbrowse novamente continua com o filtro
com fwh1801 trabalha normal |
oLbx:cSeek fwh1903 | SELECT( DBCADCLIEN )
GO TOP
DBPESQ := ALIAS()
Haga el filtro...
Faça o filtro...
...
CLOSE( DBPESQ ) // CLOSE FILTER - FECHE FILTRO DA XBROWSE()
USE CADCLIEN INDEX CADCLIEN ALIAS CADCLIEN NEW SHARED
SET ORDER TO 01
GO TOP
...
Abs. |
oLbx:cSeek fwh1903 | kapiaba o problema ta na pesquisa do xbrowsw cSeek
peguei o xbrowse da versao anterior fwh1801 e tb não funcionou
oLbx:lIncrFilter := .t.
@ 8, 340 SAY oLbx:oSeek PROMPT oLbx:cSeek ..... .... ..
eu fecho a tela do xbrowse e a tabela também, quando chamo a tela do xbrowse novamente continua com o ultimo f... |
oLbx:cSeek fwh1903 | Eu faço com múltipla escolah e funciona bem com FWH1701, veja:
[img:ebm3lbhw]https://i.imgur.com/RLr2Y5j.png[/img:ebm3lbhw]
Vou postar o fonte para você.
Abs |
oLbx:cSeek fwh1903 | [code=fw:odrdtqzo]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">// BUSCA DO CLIENTE</span><br /><span style="color: #00C800;">FUNCTION</span> BUSCA_NOME_CLIENTE<span style="color: #000000;">(</span> aGet, DeOndeVem <span style="color: #000000;">)</span><br /><br /... |
oLbx:cSeek fwh1903 | kapiaba qual a versão do fwh vc usa?
na versão 1801 que eu usava funcionava perfeitamente
na versao fwh1903 é que não funciona, to achando que é por conta do SQLRDD |
oLbx:cSeek fwh1903 | FWH1701 com DBF/CDX. |
oLbx:cSeek fwh1903 | [code=fw:1ik3dqvq]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">Function</span> PesqProd<span style="color: #000000;">(</span> oGet1, oText1, cFam_Prod, lEsto, lEntr <span style="color: #000000;">)</span><br /> <span style="color: #00C800;">Local</span> oFontB, oFontH, ... |
oLbx:cSeek fwh1903 | Intente asi:
Tente assim:
[code=fw:36hjn2st]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> oLbxPePd:<span style="color: #000000;">lIncrFilter</span> := .T.<br /> oLbxPePd:<span style="color: #000000;">lSeekWild</span> &n... |
oLbx:cSeek fwh1903 | kapiaba coloquei o oLbxPePd:lSeekWild := .t., continua a mesma coisa
veja:
fwh1801
<!-- m --><a class="postlink" href="https://youtu.be/VZ0O2P_XXnQ">https://youtu.be/VZ0O2P_XXnQ</a><!-- m -->
fwh1903
<!-- m --><a class="postlink" href="https://youtu.be/M2RH_9uuLKA">https://youtu.be/M2RH_9uuLKA</a><!-- m --> |
oLbx:cSeek fwh1903 | descobri uma coisa, acho bom o nageswaragunupudi ficar sabendo
no windows 7 esta funcionando perfeitamente a versao fwh1903
estou usando o Windows 10 Enterprise LTSC 1809 x64_PT-br
e agora? |
oLbx:cSeek fwh1903 | vale ressaltar que a versão 1801 funciona tanto no windows 7 como no windows 10 LTCS mencionado acima
a versão 1903 funciona no windows 7 e NÂO funciona no windows 10 LTCS |
oLbx:cSeek fwh1903 | pessoal esquece tudo que eu disse, erro meu <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" alt=":lol:" title="Laughing" /><!-- s:lol: --> |
oLbx:cSeek fwh1903 | oLbxPePd:Seek("")
ACTIVATE DIALOG oDlgPePd CENTERED ON INIT (oLbxPePd:Seek(""), DlgPePd2(oDlgPePd, oLbxPePd, oGet1, oText1) ) |
oLbx:cSeek fwh1903 | Very good. |
oLbx:cSeek fwh1903 | [quote="Sistem":3gswilzn]pessoal esquece tudo que eu disse, erro meu <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" alt=":lol:" title="Laughing" /><!-- s:lol: -->[/quote:3gswilzn]
Glad to know.
I can stop breaking my head. |
oMETER EN CELDAS DE xBROWSE | Saludos, quiero contruir para respaldo de datos un xBrowse que contenga todas las tablas de una database(mysql) en una celda y que en otra celda haya un oMeter indicando el porcentaje de registros respaldo de la tabla que se este procesando y que al finalizar pase al proximo registro y asi sucesivamente hasta que respa... |
oMETER EN CELDAS DE xBROWSE | Esto graficamente es lo que me gustaria hacer o no se si ya existe en algun sample, saludos, gracias... <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" title="Shocked" /><!-- s:shock: -->
[img]
[url=http://subefotos.com/ver/?4c08c4bda9ceb5519821e56c4f75f227o.jpg:2btrrn0c][img:2btrrn0... |
oMETER EN CELDAS DE xBROWSE | Hi Jose,
Look at \fwh\samples\xbrprogb.prg . |
oMETER EN CELDAS DE xBROWSE | [quote="vilian":18m7kidh]Hi Jose,
Look at \fwh\samples\xbrprogb.prg .[/quote:18m7kidh]
Vilian, buscando en el foro fue el primer sample que vi, pero no veo como funciona ya que parece los valores son staticos tomados de una DBF, lo que quiero es que mientras se ejecuta el BACKUP el oMeter en la celda se vaya actuali... |
oMETER EN CELDAS DE xBROWSE | Jose Luis, en ese ejemplo
[code=fw:20qxdoye]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> :<span style="color: #000000;">SetProgBar</span><span style="color: #000000;">(</span> <span style="color: #000000;">{</span> || nMaxSal <span style="color: #000000;">}</span>,, <span style="col... |
oMETER EN CELDAS DE xBROWSE | [quote="cnavarro":lut7b4nc]Jose Luis, en ese ejemplo
[code=fw:lut7b4nc]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> :<span style="color: #000000;">SetProgBar</span><span style="color: #000000;">(</span> <span style="color: #000000;">{</span> || nMaxSal <span style="color: #000000;">}... |
oMETER EN CELDAS DE xBROWSE | Please try this sample and adopt to your situation
[code=fw:35y6y78g]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">'fivewin.ch'</span><br /><br /><span style="color: #B900B9;">//------------------------------------------------------... |
oMETER EN CELDAS DE xBROWSE | [quote="nageswaragunupudi":39l7p2to]Please try this sample and adopt to your situation
[code=fw:39l7p2to]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">'fivewin.ch'</span><br /><br /><span style="color: #B900B9;">//------------------... |
oMail:HTMLBody problem | Hi,
I have a very strange problem with oMail:HTMLBody
I allways used it without any problem.
I have a customer that runs my program on a network.
On 2 PC it's working fine, but on one PC the body is empty.
All 3 PC's run the same EXE-file from the same SQL-database. All 3 PC's have the same outlook 365.
The email-adre... |
oMail:HTMLBody problem | [code=fw:2zbu45uu]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">FUNCTION</span> CDOSendMail<span style="color: #000000;">(</span> aTabMail <span style="color: #000000;">)</span><br /><br /> <span style="color: #00C800;">LOCAL</span> oEmailCfg, oEmailMs... |
oMail:HTMLBody problem | [code=fw:3j75j73v]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">// Enviando email com HARBOUR 3.2 by Rubens MDV Informatica e papelaria</span><br /><span style="color: #B900B9;">// Modificado Por: Joao Santos em: 12/12/2017 - Many Thanks Rubens.</span><br /><br /><span st... |
oMail:HTMLBody problem | [code=fw:16jv9aaj]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">// Exemplo de como se usa outlook do windows.</span><br /><br /><span style="color: #00D7D7;">#Include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><br /><span style="color: #00C800;">FUNCTIO... |
oMail:HTMLBody problem | [url:9amdgdwo]http://fivewin.com.br/index.php?/topic/24468-falta-pouco-para-o-email-ficar-legal-alguem-ajuda/#comment-273115[/url:9amdgdwo]
Regards. |
oMail:HTMLBody problem | The problem is solved, after updating Windows <!-- s8) --><img src="{SMILIES_PATH}/icon_cool.gif" alt="8)" title="Cool" /><!-- s8) --> |
oMenu acts differently in February build | Antonio,
it seems the menu items move a little to the right when there is a submenu attached to it, is this intentionally?
Saludos,
John. |
oMenu acts differently in February build | John,
It is a side effect caused by a recent change.
Please search for this code in classes\menu.prg and change it as shown:
( /* .f. .and. */ IsWinNT() .and. ! lRoot .and. ! ::lSysMenu ),; |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.