topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
oReport con Landscape() | Hola a todos:
Tengo la necesidad de hacer un reporte de forma horizontal "LandScape() ", pero tengo algunas dudas:
por default el "FOOTER" esta en una posicion para Formato Vertical, Como cambio eso ???.
Como controlo el cambio de pagina en landscape() ?, es decir el numero de renglones por pagina.
Gracias por todo.... |
oReport con Landscape() | Hola de nuevo Yadira:
Si usas TReport y Tprinter:
[code=fw:2xa2kgrq]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oReporte:<span style="color: #000000;">SetLandscape</span><span style="color: #000000;">(</span><span style="color: #000000;">)</span> <span style="color: #B900B9;">//Impresión ... |
oReport:DelColumn() | Amigos:
Estoy tratando, "desde hace rato", eliminar columnas del reporte, cuando este ya ha sido creado.
[code=fw:1bic69sy]<div class="fw" id="{CB}" style="font-family: monospace;"> <span style="color: #00C800;">IF</span> oReport:<span style="color: #000000;">lCreated</span><br /> <span style="color: #00C800;... |
oReport:DelColumn() | Has probado a llamar tu function de borrado de columnas en el ::bInit del ACTIVATE REPORT y probar a llamar después de nuevo al método Stabilize (quizás no haga falta) |
oReport:DelColumn() | Cristóbal, gracias por contestar, sigue sin funcionar.
[code=fw:154cuzkh]<div class="fw" id="{CB}" style="font-family: monospace;"> oReport:<span style="color: #000000;">bInit</span> := <span style="color: #000000;">{</span>|| BorrColumnas<span style="color: #000000;">(</span>oReport<span style=... |
oReport:DelColumn() | Es un poco absurdo lo que voy a decir, pero sin ver el codigo lo unico que se me ocurre es que cambies
[code=fw:2nx71ug1]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">if</span> oReport:<span style="color: #000000;">aColumns</span><span style="color: #000000;">[</span>... |
oReport:DelColumn() | Ya lo habia intentado de esa forma, y nada.
Lo que trato de hacer es no presentar en el reporte, las columnas que tengan nTotal en 0.
Lo que he notado es que solo con el :bEnd se puede capturar los nTotal de cada columna. Ej:
[code=fw:3h1czgl5]<div class="fw" id="{CB}" style="font-family: monospace;"> oReport:<span ... |
oReport:DelColumn() | [quote="FranciscoA":3g0x3vfv]Ya lo habia intentado de esa forma, y nada.
Lo que trato de hacer es no presentar en el reporte, las columnas que tengan nTotal en 0.
Lo que he notado es que solo con el :bEnd se puede capturar los nTotal de cada columna. Ej:
[code=fw:3g0x3vfv]<div class="fw" id="{CB}" style="font-family: m... |
oReport:DelColumn() | Cristobal, gracias por tu tiempo e interes.
Precisamente como indicas, asi lo estoy haciendo:
//Las 2 maneras trabajan bien, pero como no se puede capturar nTotal con :lCreated
//borra todas las columnas porque las toma como 0, y con :bEnd borra solo en la
//linea de totales.
[code=fw:1rghykje]<div class="fw" id="{CB}"... |
oReport:Say() en REPEXCEL [II] | Hola, sigo con la misma cosa...
Bueno, definitivamente no hay manera de hacer un reporte con SAY(), para luego volcarlo a Excel (a través del Preview). La unica forma que encontre es declarando una variable, desde el principio, que me indique a la REPEXCEL, que se quiere llevar la salida a Excel. Asi, que las cosas ... |
oReport:Say() en REPEXCEL [II] | Julio,
Podrías probar a hacer:
REPORT oReport ... PREVIEW
De esa forma solo tendrías que cerrar la ventana del preview.
Tal vez te sirva. |
oReport:Say() en REPEXCEL [II] | Hola Antonio,
Pues la verdad que ya lo había probado, y así sí funciona...
Lo único es que no me parece muy "elegante" que digamos. Solo quiero saber si pueda haber otra opción...
Abrazos, |
oReport:SetCopies No funciona | Hola Fivewinners...
eso.. oReport:SetCopies() no funciona, y PrnSetCopies() llamado desde dentro del report oRpt...activate tampoco.
Alguna idea o workaround.
Saludos
Desde Chile
Adolfo |
oReport:SetCopies No funciona | Mira se ayuda:
[url:bcrujdkf]http://forums.fivetechsupport.com/viewtopic.php?f=6&t=21761&p=115815&hilit=setcopies#p115815[/url:bcrujdkf]
Saludos. |
oReport:ToExcel() somente cabeçalho | Bom dia
Estou utilizando o método ToExcel, mas quando visualizo a planilha somenete é feito o cabeçalho, os dados não são colocados na planilha.
O relatório está certo, apresenta todos os dados de forma correta.
Att
João Bosco |
oReport:ToExcel() somente cabeçalho | Hola, prueba con:
oReport:bInit := { || dbGoTop() }
Saludos. |
oReport:ToExcel() somente cabeçalho | Francisco
Obrigado funcionou perfeitamente.
Att
João Bosco |
oRs:EditBaseRecord | Hi Mr. Rao,
I have a similiar function in my program using DBF files. I have searched the "EditBaseRecord" function but I can't found in source of fwh directory. I think it is one of the hidden functions.
Can you please share part of how to call "EditBaseRecord" with parameters. in order to change my function at pres... |
oRs:EditBaseRecord | May be this can help you:
oRs:EditBaseRecord(NIL,.T.,{|oRec| MyFunc(oRec)}, oLbx) |
oRs:EditBaseRecord | [quote="vilian":17bgute0]May be this can help you:
oRs:EditBaseRecord(NIL,.T.,{|oRec| MyFunc(oRec)}, oLbx)[/quote:17bgute0]
How Can I create oRec? (I don't use editbaserecord, I want to convert my function) Is it oRs?
Thanks, |
oRs:EditBaseRecord | Hi,
oRs is a rowset object, that you can create doing something like this:
oRs := oBD:Query("SELECT * FROM customers")
I'm using editbaserecord, oRec AND oRs with FWHMYSQL. [b:3ldqwae2]oBD [/b:3ldqwae2]IS a conecction WIth a MySql Server. |
oRs:EditBaseRecord | Hi Villian,
I have finally modified my code to use EditBaseRecord method. It works good. I can add, update or delete records.
Thank you very much. |
oRs:EditBaseRecord oRec:Save() problem | I have explained the problem step by step as below:
Please, run the mariainv example of Mr. Rao
1. Open items and position the cursor on an item
2. Press the edit button and open the edit dialog
3. Now, when we are waiting here, another user has deleted the record that we are editing.
4. Edit the record. (Modify the ... |
oRs:EditBaseRecord oRec:Save() problem | We are looking into this. |
oRs:EditBaseRecord oRec:Save() problem | Can you please make this modification in \fwh\source\classes\datarow.prg and test?
Please locate the following lines towards the end of method SaveOBJ()
[code=fw:18x0gd8k]<div class="fw" id="{CB}" style="font-family: monospace;"> <span style="color: #00C800;">if</span> !lSaved<br /> &n... |
oRs:EditBaseRecord oRec:Save() problem | Dear Rao,
The problem described in the link below came back
<!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=3&t=33908&start=15#p201244">viewtopic.php?f=3&t=33908&start=15#p201244</a><!-- l --> |
oRs:EditBaseRecord oRec:Save() problem | Thanks for the feedback.
Now, please change the entire method SaveOBJ() in datarow.prg with this new method.
[code=fw:9my0dcw7]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">METHOD</span> SaveOBJ<span style="color: #000000;">(</span><span style="color: #000000;">)</span... |
oRs:EditBaseRecord oRec:Save() problem | The record pointer goes to the first record and changes all of the fields of oRec with the values of first record and I loose everything that I have typed. |
oRs:EditBaseRecord oRec:Save() problem | This is what is happening in my tests:
If the save fails due to some reason like duplicated unique field, the record pointer does not change and edited values are not lost. They are retained.
If the save fails because the record is deleted by another user on the network, then the record pointer is moved to the next r... |
oRs:EditBaseRecord oRec:Save() problem | Mr. Rao, since the oRec:Save() returns false the execution waits in the edit dialog.
In this case there is nothing to do in the edit dialog.
Instead of waiting in the edit dialog, may be we have to show an error message that says record has been deleted by another user and go back to browse. |
oRs:EditBaseRecord oRec:Save() problem | I have made the following change in the EditItems function.
Instead of using oRec:Save() directly, I have add another function ItemSaved() and Ithink the problem solved.
I have used the original datarow.prg.
Of course some more lines like oRsItems:ReSync(), oBrw:RefreshCurrent() is needed.
[code=fw:1a6padyt]<div class... |
oRs:Find | Ciao a tutti,
ho provato questo codice per una ricerca in un file MDB:
cFind:="K"
oRs:MoveFirst()
Reg:=oRs:Find("Campo1='"+cFind+"'")
msginfo(Reg)
oRs:Absoluteposition:=Reg
il valore restituito in Reg è uguale a nil
dove sbaglio?
Grazie |
oRs:Find | Sample code :
[code=fw:1srd9kr1]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oRs:<span style="color: #000000;">Find</span><span style="color: #000000;">(</span> cSeekExpr, <span style="color: #000000;">0</span>, <span style="color: #000000;">1</span>, <span style="color: #000000;">1</span><span s... |
oRs:Find | Lisa:
Try this way
Reg:=oRs:Find("Campo1= " + "'" + cFind + "'")
Regards |
oRs:Find | Reg restituisce sempre NIL |
oRs:Find | if !oRs:eof() la ricerca ha esito positivo...
nTessera:="0100141411283"
oRs:MoveFirst()
oRs:Find( "CODTES='"+nTessera+"'", 0, 1, 1)
if !oRs:eof()
msginfo(oRs:Fields("CodTes"):Value)
endif
Grazie del suggerimento |
oRs:Find | oRs:Sort :="CodTes"
da errore
Help me |
oRs:Find | Lisa:
Please review my spanish blog.
<!-- m --><a class="postlink" href="http://sqlcmd.blogspot.com/">http://sqlcmd.blogspot.com/</a><!-- m -->
All about ADO & MySql.
Regards |
oRs:Find | >
oRs:Sort :="CodTes"
>
This is correct. Please check your spellings and make sure the field name exists in the recordset.
what error are you getting ? |
oRt:Say() en REP-EXCEL | Hola a todos,
He tenido una experiencia con REP-EXCEL que comento, a ver si alguien paso por la misma y ha solucionado esto:
La clase es FANTASTICA... me soluciona uno de los grandes dolores de cabeza que es la generacion de informes en Excel, que muchos clientes ya me solicitaban, y aunque podia generarlos en archiv... |
oSay background | Is such a background possible with pure FIVEWIN code.
[img:gnr5wfjd]http://www.atzwanger.com/fw/saystyle.jpg[/img:gnr5wfjd] |
oSay background | Yes, using a brush |
oSay background | Thank you.
Excuse my ignorance. But if I tried with brush I always have full color.
This seems to be gradient.
Best regards,
Otto |
oSay background | You have to create a brush from a bitmap, and the bitmap has the painted gradient <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
DEFINE BRUSH oBrush RESOURCE <cBmpResName>
or
DEFINE BRUSH oBrush FILENAME <cBmpFileName> |
oSay background | Is this the right way to make such a outlook:
Paint a rectangle with
FillRect(oWnd:hDc,aRect1,oBrush:hBrush)
And then paint the text with oWnd:Say
oWnd:say( nRow, nCol, text ,"W",::nClrBack,oFont,.T.,.t.)
Thanks in advance
Otto |
oSay background | Otto,
There are two ways to paint a text:
1. Use the oWnd:Say(), as you have done
2. Use a SAY control: @ ..., ... SAY ...
The advantage of using the 2) is that you don't have to repaint it. The control automatically paints itself. With 1) you have to paint the text everytime the window is repainted
My advice is t... |
oSay background | >My advice is to use a SAY control that uses a brush with a gradient
I don't know how to do this?
Would you be so kind to show some code.
Thanks in advance
Otto |
oSay background | Otto,
Its a simple solution, though we could improve it:
<!-- m --><a class="postlink" href="http://www.hotshare.net/file/24901-201766470d.html">http://www.hotshare.net/file/24901-201766470d.html</a><!-- m -->
[url=http://imageshack.us:zztw1k74][img:zztw1k74]http://img89.imageshack.us/img89/6757/o... |
oSay:SetText no muestra todo el contenido. | En el ejemplo tutor12 los objetos SAY salen con muy pocos carracteres, en el codigo siguiente en la linea say de mensajes solo me sale "Accid". Es normal (por ser limitacion de wince) o se modifica en algun sitio ?
[code:2vzbz9vq]
@ 10, 90 BTNBMP FILE CurDir() + "\cars.bmp" ;
SIZE 60, 60 ;
ACTI... |
oSay:SetText no muestra todo el contenido. | Hola,
Declara un tamaño del SAY
@ 12, 17 SAY oSay PROMPT "Accidentes de Trafico" SIZE 200, 20
Siau.
C. |
oSay:SetText no muestra todo el contenido. | Gracies Carles...
En que estaria yo pensando.....
Saludos. |
oSay:bKeyDown fiveres | Hello Antonio,
Does say class support keydown method.
fiveres sample
Can you please show how to move the controls with the arrow keys.
Thank in adance
Otto |
oSefl vs. :: | What is the difference between oSefl and :: ?
Can someone please explain why oSelf is working and :: fails?
[code=fw:3erq2ogz]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> <span style="color: #00C800;">local</span> oSelf := <span style="color: #00C800;">SELF</span><br />@ <span style=... |
oSefl vs. :: | Otto,
When we use: ... BTNBMP ... ACTION ...
ACTION ... gets preprocessed into:
[{|Self|<uAction>}]
But that "Self" will be provided to the codeblock as a parameter and it is not ::
So when we do local oSelf := Self
and then we use oSelf from the codeblock, we are using oSelf and not the provided parameter self
L... |
oServer:setRequestHeader | Dear, good afternoon!
I need an aid in the following situation:
When sending the oServer:setRequestHeader("Content-Type", "text/plain; charset=UTF-8" ) command to the server, it does not recognize some accents as ã and õ.
Is there a command to be given before sending?
I thank you for your help.
Att.,
Oliveiros J... |
oSheet:Columns() range question | Hi,
Now I'm using
[code=fw:3no2msa5]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #000000;">[</span>code<span style="color: #000000;">]</span>oSheet:<span style="color: #000000;">Columns</span><span style="color: #000000;">(</span> <span style="color: #ff0000;">"A:ZZ"</span... |
oSheet:Columns() range question | [quote="Marc Vanzegbroeck":apl8xuh5]Hi,
Now I'm using
[code=fw:apl8xuh5]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #000000;">[</span>code<span style="color: #000000;">]</span>oSheet:<span style="color: #000000;">Columns</span><span style="color: #000000;">(</span> <span ... |
oSheet:Columns() range question | Jimmy,
Thank you for your answer.
Indeed, I can use oSheet:EntireColumn:AutoFit() for the complete excel, but what If I want to do it for column 1 to 30?
Another example is if I want to set the cell-format for only column 1 to 30
[code=fw:2s6z30yi]<div class="fw" id="{CB}" style="font-family: monospace;">oSheet:<span... |
oSheet:Columns() range question | Ok, I found a solution for it with the range() object.
Thanks
[quote="Marc Vanzegbroeck":2pvu1iqu]Jimmy,
Thank you for your answer.
Indeed, I can use oSheet:EntireColumn:AutoFit() for the complete excel, but what If I want to do it for column 1 to 30?
Another example is if I want to set the cell-format for only col... |
oTabs:nHeight | Is there a way to cange the Height of a Tab control???? |
oTabs:nHeight | Hello Bayron,
a placed Tab is moved and resized.
[img:329gv1g7]http://www.pflegeplus.com/pictures/tabmove.jpg[/img:329gv1g7]
Best Regards
Uwe <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" alt=":lol:" title="Laughing" /><!-- s:lol: --> |
oTabs:nHeight | Cool Uwe, Thanks.... |
oTabs:nHeight | Uwe, even that approach did not work on FWH 10.2
[url:264ig0gl]http://forums.fivetechsupport.com/viewtopic.php?f=3&t=20903#p110993[/url:264ig0gl] |
oTimer:Deactivate() | Amigos,
Tengo esto:
[code:2lq0m7yp] oDlg:= oDlgEnlace( @oBrw, oTextos, oBtns, oBmp )
//----------( Acción del botón )----------
oBtns[1]: bAction:={|| oTimer:deactivate() }
oBtns[2]: bAction:={|| oTimer:activate() &... |
oTimer:Deactivate() | Goos,
Parece ser que oTimer no está iniciado, al no iniciarse no hay metodo activate() o deactivate(); hay que checar si se activa el timer o no.
Will Morales
[quote="goosfancito":2j926esf]Amigos,
Tengo esto:
[code:2j926esf] oDlg:= oDlgEnlace( @oBrw, oTextos, oBtns, oBmp )
//----------( Acción... |
oTimer:Deactivate() | Amigo,
si, el timer esta en funcionamiento, lo activo desde aca:
[code:2ttn8gqo] ACTIVATE DIALOG oDlg CENTERED ON init (;
BuildTimer( @oBrw, aConfiguracion, aProductos, aSurtidores, aIdVentas, oTimer, oDlg ),;
oBrw: SetFocus(),;
oBrw: ResetBarPos(),;
oBrw&... |
oTimer:Deactivate() | [quote="goosfancito":rbxxk147]Amigo,
si, el timer esta en funcionamiento, lo activo desde aca:
[code:rbxxk147] ACTIVATE DIALOG oDlg CENTERED ON init (;
BuildTimer( @oBrw, aConfiguracion, aProductos, aSurtidores, aIdVentas, oTimer, oDlg ),;
oBrw: SetFocus(),;
oBrw: Reset... |
oTimer:Deactivate() | [quote="FiveWiDi":3ixfnzuk][quote="goosfancito":3ixfnzuk]Amigo,
si, el timer esta en funcionamiento, lo activo desde aca:
[code:3ixfnzuk] ACTIVATE DIALOG oDlg CENTERED ON init (;
BuildTimer( @oBrw, aConfiguracion, aProductos, aSurtidores, aIdVentas, oTimer, oDlg ),;
oBrw: SetFocus(&#... |
oToolbar:nWidth no me funciona en folders | Amigos:
Alguna idea?
Cuando pongo oToolbar:nWidth = 300 en un folder
no respeta el tamaño.
Estoy tratando de poner una toolbar en una pestaña del folder.
Saludos y gracias.
Ruben Fernandez. |
oToolbar:nWidth no me funciona en folders | Ruben,
FWH por defecto asigna el dato ::oTop del contenedor igual a la toolbar, por lo que esta ocupará todo el ancho del contenedor.
Prueba a hacer oWnd:oTop := nil y así no redimensionará la toolbar automaticamente. |
oToolbar:nWidth no me funciona en folders | Ruben,
Tuve la misma necesidad que tu, tengo un folder con varias pestañas y cada pestaña tiene su propia toolbar ya que los botones son diferenets opciones, pero no he logrado que la toolbar se ajuste al tamaño del folder, esta se sale un poco y se ve mal, como le hiciste?
[url=http://imageshack.us:138azor4][i... |
oToolbar:nWidth no me funciona en folders | Paco,
oToolBar:oWnd:oTop = nil
oToolBar:nWidth -= ... |
oToolbar:nWidth no me funciona en folders | Despues de definir la Toolbar y todos sus botones
oFld:nOption:Resize() |
oToolbar:nWidth no me funciona en folders | Gracias por su ayuda, pero fijate Antonio que no he podido acomodarlo,
tengo un dialogo desde recurso con el folder y en la parte del activate on init uso una funcion para crear la toolbar, que estoy haciendo mal? pongo parte del codigo.
ACTIVATE DIALOG oDlg CENTERED VALID lEnd ;
ON INIT ( crea_barra(oDlg,oFld,... |
oToolbar:nWidth no me funciona en folders | Paco:
No lo tengo solucionado.
Lamentablemente saque la toolbar y puse botones
Saludos
Ruben Fernandez. |
oToolbar:nWidth no me funciona en folders | Paco,
Cambiale el ancho a la rebar:
oRebar:nWidth := ... |
oToolbar:nWidth no me funciona en folders | Antonio y Paco:
Funciono perfecto.
Además se le puede cambiar el color
oRebar:SetColor(CLR_WHITE) // por ejemplo
Gracias Maestro.
Ruben Fernandez. |
oToolbar:nWidth no me funciona en folders | Gracias a ambos,
funciono ok., una pregunta mas antonio,
como hago para en la toolbar posicionar un boton hasta la parte derecha de la barra?, ya que quedaria un espacio grande entre el penultimo y utlimo boton, y la clase los pone seguidos..
salu2
paco |
oToolbar:nWidth no me funciona en folders | Paco,
No me suena que el control ToolBar permita hacer eso.
Habría que buscar en google... |
oToolbar:nWidth no me funciona en folders | Bien, gracias Antonio
Paco |
oTop oLeft oBottom oRight oClient para redimensionar ?? | HolaMe podrian orientar para saber como se usan los oTop, oLeft, oBottom, oRight , oClient para redimensionar automaticamente lo que se tenga dentro de una windowstengo el problema, donde usaran la aplicacion que estoy haciendo tienen monitores desde 14 pulgadas en adelante y en esos monitores se pierde el contenido. ... |
oTop oLeft oBottom oRight oClient para redimensionar ?? | Aida, creo el problema no es de oTop y demas cosas.. te recomiendo trabajes con una resolucion minima para diseño de tu sistemas, normalmente uso 1024 x 768 pixel, asi puedes adaptar tus sistema a todo tipo d monitor. es solo una idea...que estes bien..saludos.... <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif"... |
oTop oLeft oBottom oRight oClient para redimensionar ?? | Tengo que rehacer todo otra vez?? <!-- s:cry: --><img src="{SMILIES_PATH}/icon_cry.gif" alt=":cry:" title="Crying or Very sad" /><!-- s:cry: --> |
oTop oLeft oBottom oRight oClient para redimensionar ?? | [quote="AIDA":lly2sn2g]Tengo que rehacer todo otra vez?? <!-- s:cry: --><img src="{SMILIES_PATH}/icon_cry.gif" alt=":cry:" title="Crying or Very sad" /><!-- s:cry: -->[/quote:lly2sn2g]No aida, solo cuando programes coloca la resolucion de tu monitor en 1024x768 para que tus DLG y FLD veas como se adaptaran a la ventana... |
oTop oLeft oBottom oRight oClient para redimensionar ?? | Hice lo que dijiste y ahora en un monitor de 17 pulgadas todo queda más chico y un espacio vacío dentro de la windows cuando está llenando el monitor, ahora el problema es al revés <!-- s:cry: --><img src="{SMILIES_PATH}/icon_cry.gif" alt=":cry:" title="Crying or Very sad" /><!-- s:cry: --> SaludosAida |
oTop oLeft oBottom oRight oClient para redimensionar ?? | Aida,Puedes poner una imagen de tu pantalla aqui ? graciasUsa <!-- w --><a class="postlink" href="http://www.imageshack.us">www.imageshack.us</a><!-- w --> |
oTop oLeft oBottom oRight oClient para redimensionar ?? | Hola Antonio <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> aqui esta un ejemplo en la primera imagen es como se ve en un monitor de 17 pulgadas[img:247j9pc2]http://img243.imageshack.us/img243/6668/monitor17aj9.jpg[/img:247j9pc2]en la segunda imagen e... |
oTop oLeft oBottom oRight oClient para redimensionar ?? | use de ejemplo testspl5.prgya me funciono ajustar los SPLITTER pero cuando es con el xbrowse me tira un error , que me faltara?SaludosAida[code:1u2omx9f]
Error description: Error BASE/1004 Message not found: TMDIFRAME:ADJCLIENT
Stack Calls
===========
Called from: source\rtl\tobject.prg => T... |
oTop oLeft oBottom oRight oClient para redimensionar ?? | Si aún no has resuelto el problema, te comento como lo hago:1) Con recursos, aplicando al ACTIVATE la función AUTRESIZ de Fivewidi, a la que he hecho algunas modificaciones.2) Con código, multiplicando los valores de los nCol, nFila, nAncho y nAlto por los siguientes coeficientes: nRancho := GetSysMetrics(0)/800 nRal... |
oTop oLeft oBottom oRight oClient para redimensionar ?? | Hola Manuel <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> Gracias por tu nota pero que es el Fivewidi <!-- s:oops: --><img src="{SMILIES_PATH}/icon_redface.gif" alt=":oops:" title="Embarassed" /><!-- s:oops: --> SaludosAida |
oTop oLeft oBottom oRight oClient para redimensionar ?? | [quote="AIDA":3c7rushl]que es el Fivewidi[/quote:3c7rushl]Fivewidi es un colega que publicó la funcion AUTRESIZE en este foro al que de nuevo le doy las gracias por la misma. Si la buscas en el foro, la encontrarás. En base a dicha función, he creado la función Auto800() que es la que utilizo con éxito:///////////////... |
oTop oLeft oBottom oRight oClient para redimensionar ?? | Hola Manuel <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) --> Gracias <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> por tu ayuda me pondre a leer con cuidado lo que me diste para poder aplicarlo espero que me funcione ya me si... |
oTop oLeft oBottom oRight oClient para redimensionar ?? | Sr. Manuel,Como fazer para esta função aplicar tambem a GROUP BOX ? <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) --> |
oTop oLeft oBottom oRight oClient para redimensionar ?? | [quote="SGS":2obtafn1]Como fazer para esta função aplicar tambem a GROUP BOX ?[/quote:2obtafn1]La única condición es que hay siempre que REDEFINE el grupo (o cualquier otro objeto) en nuestro código:REDEFINE GROUP oGrupo ID 14 OF oDlg TRANSPARENT..........REDEFINE SAY oSay2 VAR cM[7] ID 9 OF oDlgACTIVATE DIALOG oDlg CE... |
oTop oLeft oBottom oRight oClient para redimensionar ?? | Sr. Manuel,Funciona perfeitamente com GROUP BOX. <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) --> Tentei fazer funcionar com TXBROWSE e TCBROWSE, não obtive exito: <!-- s:( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":(" title="Sad" /><!-- s:( --> ElseIF oWnd:Classname() ==... |
oTop oLeft oBottom oRight oClient para redimensionar ?? | [quote="SGS":1px1cof9]seria possível com estes dois browses?[/quote:1px1cof9]Me imagino que si. Pero yo opero solo con wBrowse y ese es el objeto que he implementado.No puedo hacer pruebas con xBrowse porque no lo utilizo.Desconozco si Fivewidi, colega del foro, podria ayudarte en algo, |
oTop oLeft oBottom oRight oClient para redimensionar ?? | muito obrigado Sr. Manuel. |
oTop oLeft oBottom oRight oClient para redimensionar ?? | NO funciona con xbrowse <!-- s:cry: --><img src="{SMILIES_PATH}/icon_cry.gif" alt=":cry:" title="Crying or Very sad" /><!-- s:cry: -->
ahora si toy atorada con eso
hise lo que me dijeron de poner mi monitor en 1024 x 768 pixel pero cuando el programa esta en un monitor de 1880 x 1024
el windos lo maximisan y to... |
oTop oLeft oBottom oRight oClient para redimensionar ?? | Hola Aida , cómo estás??
Por qué no pruebas hacer en vez de dos programas enlazar dos archivos de recuros??
O si no otra alternativa es usar dos archivos DLL de recursos, o las que sean necesarias, y en tu main() del sistema haces lo siguiente:
[code:3mkodzxj]
#include "FiveWin.ch"
Function Main()
Local ResH,ResV... |
oTop oLeft oBottom oRight oClient para redimensionar ?? | Hola
el problema que tengo no es con los recursos es con el windows principal
Gracias de todas maneras <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
Aida |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.