topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
redirecting index.prg | [url:wbg1tlf5]https://css-tricks.com/snippets/html/meta-refresh/[/url:wbg1tlf5]
Very nice to find that there is a lot of interest for mod_harbour from our Chinese brothers <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
redirecting index.prg | [quote="ssbbs":x89fj8sb]You can use WYSIWYG web design software to design your website and embedded into prg code like PHP in general.
but save file name is .prg not .php
open browser and open the .prg
This is the closest web design mode![/quote:x89fj8sb]
We do appreciate if you could post here some screenshots. It se... |
redirecting index.prg | *2021.08.21: fix
1. Fix: If there is no'<?prg' and '?>' in the entire webpage, it will cause a failure error message.
2. New addition: <?php ... ?> and <?prg ... ?> can be executed simultaneously in HTML.
Description: The execution order: first execute PHP code before execution PRG code.
This function cannot be execut... |
reduce an image to a fixed size | Good Morning,
Can someone please help me with some source code on how to reduce an image to a fixed size.
Many thanks in advance
Otto |
reduce an image to a fixed size | ResizeBitmap( hBitmap, nWidth, nHeight ) --> hResizedBmp |
reduce an image to a fixed size | Dear Mr. Rao,
Thank you. Would you be so kind as to show me the best way to get the handle and how to save the new BMP.
Best regards,
Otto |
reduce an image to a fixed size | local hBmp
local hDib := DibFromBitmap( hBmp := ResizeBitmap( hBitmap, nWidth, nHeight ) )
DibWrite( cFileName, hDib )
GloBalFree( hDib )
DeleteObject( hBmp ) |
reduce an image to a fixed size | Dear Antonio,
Thank you.
In my case, the image is now saved with 96 dpi and a bit depth of 32. The size of the picture is
1,920 KB.
If I do the whole thing with PAINT, I get a picture that
226 KB, DPI 72, and bit depth 24.
How can I reduce the DPIs and the color depth with FIVEWIN.
Thank you in advance
Otto |
reduce an image to a fixed size | Dear Otto,
It seems as we need to use the function SetDIBColorTable()
[url:2lza5q5g]https://docs.microsoft.com/en-us/windows/win32/api/wingdi/nf-wingdi-setdibcolortable[/url:2lza5q5g]
Maybe there is a simpler way using GDI+ |
reduce an image to a fixed size | Dear Antonio,
I tried with
[code=fw:1jgvfrv0]<div class="fw" id="{CB}" style="font-family: monospace;"> oImage := GdiBmp<span style="color: #000000;">(</span><span style="color: #000000;">)</span>:<span style="color: #00C800;">New</span><span style="color: #000000;">(</span> <span style="color: ... |
reduce an image to a fixed size | Hello,
Now I can resize all my images in a quick and easy batch mode for WINDOWS QR.
This is a web page I made with [b:10vold6e]mod harbour[/b:10vold6e].
The small images are loaded first and the large ones asynchronously.
As soon as a large picture is loaded, the small one will be replaced.
With this method, the we... |
reduce an image to a fixed size | Interesting !!
Will this keep a good quality of jpg's ??
I use folowing technic for my update of webshop pictures.
With Fw I select and create my menu and the products inside the menu.
Than I copy from source jpg's (all random size i got from manufacturers) to a picture folder and use nConvert with a .bat file to co... |
reduce an image to a fixed size | Dear Otto,
many thanks for sharing your solution <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
reemplazar un valor en una cadena caracteres | Compañeros, buenas tardes:
¿Sabeis la función que reemplaza un valor dentro de una cadena de caracteres?
Tengo una DBF con el campo NOMBRE,C,40
pero necesito hacer un barrido y cambiar todas las "A" del campo NOMBRE por "C"
algo así como
remplezar(nombre,"A","C")
Mil gracias.
LORENZO. |
reemplazar un valor en una cadena caracteres | Lorenzo, si usas harbour tienes que enlazar hbct.lib
La funcion es Charrepl()
te dejo debajo como funciona
Saludos
/*
* $Id: charrepl.txt 15102 2010-07-14 12:48:39Z vszakats $
*/
/* $DOC$
* $FUNCNAME$
* CHARREPL()
* $CATEGORY$
* CT3 string functions
* $ONELINER$
* Replacement of characters
... |
reemplazar un valor en una cadena caracteres | Gracias Ruben, pero utilizo xHarbour |
reemplazar un valor en una cadena caracteres | <!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=3&t=30053&start=0&hilit=strtran">viewtopic.php?f=3&t=30053&start=0&hilit=strtran</a><!-- l --> |
reemplazar un valor en una cadena caracteres | Lorenzo, tambien esta en xHarbour.
Saludos
Ruben Dario Fernandez |
reemplazar un valor en una cadena caracteres | Holas.... revisen esto:
cXx := "AHAHAHSHAHAHAH"
cXx := STRTRAN(cXx, "A", "C") // REEMPLAZA LA "A" POR LA "C"
? cXx -> CHCHCHSHCHCHCH
sALU2 |
reemplazar un valor en una cadena caracteres | Como dice Willi, StrTran() |
referencia catasral - latinoamerica | Necesitaria hacerme con un recibo de contribución de finca urbana o rústica que llevase la referencia catastral, de cualkquier paisa como chile, aregentinao méjico.. alguien me puede ayudar ? |
refill a bitmap | If I have a bitmap showed on a dialog
[b:2imvpmus]sample [/b:2imvpmus]
[img:2imvpmus]http://img51.imageshack.us/img51/4844/slightleft1.png[/img:2imvpmus]
can I refill only the black arrow with a different color ( RED, BLU,YELLOW) ?
I wish that the arrow must be refilled by end user with the mou... |
refill a bitmap | It must be the same BMP ( size ) but with a red Arrow. A BMP for each color.
You can replace the BMP with the black Arrow with the one with the red Arrow.
// from File
// REDEFINE BITMAP oBmp1 ID 100 OF oDlg FILENAME Black.bmp"
// from resource
REDEFINE BITMAP oBMP1 ID 100 ADJUST RESOURCE "Black" OF oDlg
oBMP1:b... |
refill a bitmap | sorry But I found the function FloodFill
I think it can be done calculating the coors the bitmaps
FloodFill(hCDC, x,y , CLR_BLACK, nColor)
but I not Know How Found the coors of the bitmap |
refrescar fold.... | Hola a todos...
Tengo el siguiente codigo que funciona bien pero tengo un problemilla. El tema es que me he creado una pantalla de configuracion con varias 'pestañas'. El problema es que tengo dos check que dependiendo del valor que tengan me debe mostrar o no otros dos check mas... Es decir, que si pulso en uno me mu... |
refrescar fold.... | Elías,
Para ocultar un control se hace oControl:Hide() y para mostrarlo oControl:Show()
La idea es que los crees todos, y que en tiempo de ejecución los ocultes ó los muestres llamando a ese método |
refrescar la barra de mesajes | Hola a todos:Como puedo refrescar la barra de mensajes de la ventana principal.Por ejemplo pongo set menssage of oVentPrinc to "activa" + onombdespues cambio onomb con otro nombrey con que instruccion refresco la ventana para que a partir de ahora coja el nuevo nombre.Yo vuelvo a poner set menssage ... pero cuando pas... |
refrescar la barra de mesajes | oMsgBar:SetMsg("test") |
refrescar menu | Estimados;
Tengo un menu textual en ventana con opciones por ej. Agregar, Edita, Elimina
La ventana contiene un browse de registros de DBF
De manera que defino: MENUITEM "Editar datos de "+field->APELLIDO
La consulta es: Se puede refrescar oMenu para que esta opcion me muestre el registro actual?
muchas gracias |
refrescar menu | Trata con:
oWnd:oMenu:initiate()
oWnd:oMenu:refresh() |
refrescar menu | Gracias por responder
Me falto la consulta mas importante. Desde donde controlo el evento.
De puro ignorante probé con:
oWnd:bLClicked:= {|| oWndPI:Initiate(), oWndPI:oMenu:Refresh() }
pero al parecer por ahí no es la cosa <!-- s:oops: --><img src="{SMILIES_PATH}/icon_redface.gif" alt=":oops:" title="Embarassed" /><!... |
refrescar menu | Se me ocurre que debes hacer una función, pasando como parámetros los objetos oWnd, oMenu.
Dicha función se debe ejecutar cada vez que te muevas de registro de la tabla |
refrescar xbrowse de un array | Hola amigos,
Tengo un xBrowse de un array.
Actualizo el array y después llamo a oBrowse:Refresh() pero no se actualiza.
¿Qué hago mal?.
Gracias! |
refrescar xbrowse de un array | Hola
Intenta con oBrw:SetArray( aList ) |
refrescar xbrowse de un array | Funcionó, muchas gracias!. |
refresh a get with when | I have a combobox and I wish refresh some gets
I wish enable the aget[10] and aget[11] only if the aTipoOp=1
local lTutteOp := .t.
local aTipoOp := {"Entrate","Uscite"}
local cTipoOp := aTipoOp[1]
Local lTClienti := .t.
Local cClienti := ''"
Local aClienti := {"Cliente1","Cliente2","Cliente3}
DEFINE DI... |
refresh a get with when | silvio se me ocurre asi:
[code=fw:2mowj3dc]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br />@ <span style="color: #000000;">58</span>, <span style="color: #000000;">56</span> <span style="color: #0000ff;">CHECKBOX</span> aGet<span style="color: #000000;">[</span><span style="color: #000000;">8... |
refresh a get with when | Silvio:
Or this way
[code=fw:2741wim2]<div class="fw" id="{CB}" style="font-family: monospace;"><br />@ <span style="color: #000000;">58</span>, <span style="color: #000000;">56</span> <span style="color: #0000ff;">CHECKBOX</span> aGet<span style="color: #000000;">[</span><span style="color: #000000;">8</span><sp... |
refresh a get with when | Hi Silvio,
Combobox's bChange is evaluated when the control changes, but that doen't means that the new value is assigned to the var.
In you example you can check what I mean, adding a MsgInfo() or another way to inspect the cTipoOp value:
[code=fw:1je9z2st]<div class="fw" id="{CB}" style="font-family: monospace;"><b... |
refresh a get with when | [quote="Armando":gkkkn9d6]Silvio:
Or this way
[code=fw:gkkkn9d6]<div class="fw" id="{CB}" style="font-family: monospace;"><br />@ <span style="color: #000000;">58</span>, <span style="color: #000000;">56</span> <span style="color: #0000ff;">CHECKBOX</span> aGet<span style="color: #000000;">[</span><span style="co... |
refresh a get with when | Dear Friends ,
I tried but here not run ok
i made a tet sample to try
[code=fw:96zq2g0k]<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: #ff00... |
refresh a get with when | Perfect!
Just add the following line:
[code=fw:sgffwdjx]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> @ <span style="color: #000000;">58</span>, <span style="color: #000000;">145</span> <span style="color: #0000ff;">COMBOBOX</span> aGet<span style="color: #000000;">[</span><span style="color... |
refresh a get with when | it seem to run
but if you select before the second element of the first combo and the press the checkbox of the third line and then reselect the first element the first combo the checkbox the third line is allway .f. |
refresh a get with when | Silvio,
Don't get you. Do you mean that, when you return the focus to the first combo and select the first one the third control set is .f. ?
May be there is a problem in your logic: If the first combo has the value "clients", ANY VALUE for the third set of vars have NO MEANING. As a rule of thumb, if a control has it'... |
refresh a get with when | I explain you
[img:383b7848]http://www.eoeo.it/wp-content/uploads/2015/09/err.jpg[/img:383b7848]
I put also word on espana language to understood the problem
On My archive I have a filed called MvTipo the value can be E or U ( Ingreso or Gastos)
If is E the user can insert Customers and ca... |
refresh a get with when | Silvio,
I don't speak italian, but for an spanish speaker italian is more or less 'understable'. I can run your code and it runs fine, activating and deactivating the controls as spected, that's why i told you i don't understand.
If the dialog is not easy to understand FOR THE USER, it's a different issue.
May I suge... |
refresh MESSAGE | How may I refresh xMESSAGE in MESSAGE mainly msc_m and rok_m ?
best regards
kajot
//----------------------------------------------------------------------------//
function Main()
SET _3DLOOK ON
public oApp, oMsgBar
MSC_M:=1
ROK_M:=2016
SET _3DLOOK ON // Microsoft 3D L... |
refresh MESSAGE | [code=fw:3fz7blj3]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br /> <span style="color: #0000ff;">DEFINE</span> MSGBAR oMsgBar <span style="color: #0000ff;">OF</span> oWnd ;<br /> <span style="color: #0000ff;">PROMPT</span> <span style="color: #ff0000;">"[ Fivetech S... |
refresh MESSAGE | a thousand thanks |
refresh a btnbmp on line | I have a btnbmp with a prompt with a number
then the user press the button and the procedure must assign the new prompt with the new number
why not refresh() ?
nNumber:= 8
@ 233, 118 BTNBMP oBtnAllegati OF oDlgTest ;
SIZE 55, 14 PIXEL 2007 ;
BORDER LEFT ROUND ;
PROMP... |
refresh a btnbmp on line | Silvio,
ACTION (nNumber [color=#FF0000:29ajqkrn]:=[/color:29ajqkrn] test(),oBtnAllegati:refresh() ) |
refresh a btnbmp on line | sorry,
On the night I am very tired and perhaps I am ...old!!! |
refresh a filtered TXbrowse | Listbox is refreshed after set filter command by :
[code:oizl0s3p]
oLbx:upstable()
oLbx:Refresh()
[/code:oizl0s3p]
TXBROWSE is not refreshed after filter command by the same way :
[code:oizl0s3p]
ACTIVATE DIALOG oDlgn ON INIT (oBrw:SetSize( 800,
600 ),oBrw:Refres... |
refresh a filtered TXbrowse | Try refresh(.t.)
Shuming Wang |
refresh a filtered TXbrowse | refresh(.t.) does not do any difference . My problem is :
Only the first Record appeared in the Txbrowse does not belong to the condition of set filter and when I do through the records using the cursor the non-belong record disappeared . |
refresh a filtered TXbrowse | Try GO TOP just after SET FILTER command.
EMG |
refresh a filtered TXbrowse | I already aware of that point but no effects
[code:1xm6m34n]
SELECT 4
use mete
SET index TO mete2
DBSETFILTER(&bFilter,cFilter)
4->(DBGOTOP())
[/code:1xm6m34n] |
refresh a filtered TXbrowse | Try this :-
select('youralias')
set filter to &cYourFilter
go top
oLbx:gotop()
oLbx:upstable()
oLbx:refresh() |
refresh a filtered TXbrowse | Sorry I using Txbrowse so I am using RDD server . so no syntax for set filter but my code must be the following :
[code:3b7tm9tf]
SELECT 4
use mete
SET index TO mete2
DBSETFILTER(&bFilter,cFilter)
4->(DBGOTOP())
[/code:3b7tm9tf] |
refresh a ribbonbar on line | I have a ribbonbar
[img:yabei62u]https://i.postimg.cc/3wmLvSNy/hh.jpg[/img:yabei62u]
on tab 1
I have a group only when lShowMenuVeloci is true
IF oThis:lShowMenuVeloci
ADD GROUP ::oGrMenuVeloci RIBBON ::oRebar TO OPTION 1 WIDTH 130 PROMPT "menu veloci"
Endif
this group is on I draw a red ... |
refresh a ribbonbar on line | Any solution Pls ? |
refresh a ribbonbar on line | Dear Silvio,
Have you tried with ::oRebar:Refresh() ? |
refresh a ribbonbar on line | [quote="Antonio Linares":316sc294]Dear Silvio,
Have you tried with ::oRebar:Refresh() ?[/quote:316sc294]
oThis:oReBar:refresh()
and
oThis:oReBar:aDialogs[1]:refresh()
I'm trying a little test to make you understand the problem
SENT |
refresh btnbmp on a Panelscroll - RESOLVED | Please change this
[quote:71cesxr8]IF oCombolistino !=NIL
oCombolistino:select(nListino)
eval(oCombolistino:bchange)
endif[/quote:71cesxr8]
as
[code=fw:71cesxr8]<div class="fw" id="{CB}" style="font-family: monospace;"> <span style="color: #00C800;">IF</span> oCombolistino !=<span style="color: #... |
refresh btnbmp on a Panelscroll - RESOLVED | [quote="nageswaragunupudi":c8spud62]Please change this
[quote:c8spud62]IF oCombolistino !=NIL
oCombolistino:select(nListino)
eval(oCombolistino:bchange)
endif[/quote:c8spud62]
as
[code=fw:c8spud62]<div class="fw" id="{CB}" style="font-family: monospace;"> <span style="color: #00C800;">IF</span> oCombolistino !=... |
refresh btnbmp on a Panelscroll - RESOLVED | This is working fine here.
[url=https://imageshack.com/i/poqklRqjg:b8ss27ac][img:b8ss27ac]https://imagizer.imageshack.com/img924/7899/qklRqj.gif[/img:b8ss27ac][/url:b8ss27ac] |
refresh btnbmp on a Panelscroll - RESOLVED | Nages,
Ok It was the "set " of combobox
Thanks |
refresh btnbmp on a Panelscroll - RESOLVED | Antonio, any solution Please, I sent you the test
I explain to you,
exactly when the user selects a date range automatically calculates the number of the price list to be displayed (nListino) and changes the item in the combobox;
the buttons inside the panelscroll are set so that for each price list (High season, Lo... |
refresh btnbmp on a Panelscroll - RESOLVED | [img:2z8eyltd]https://i.postimg.cc/bvq62q3D/mm.png[/img:2z8eyltd]
when I change the dates, through a function the item (nListino) of the combobox changes
IF oCombolistino !=NIL
[b:2z8eyltd] oCombolistino:select(nListino)[/b:2z8eyltd]
eval(oCombolistino:bchange)
endif
... |
refresh msgitem | I have a Main Window where i insert this comand to create a msgiten on msgbar: DEFINE MSGITEM ::oMsgItem2; OF ::oWndMain:oMsgBar ; BITMAP "D_CAL" ; TOOLTIP " " + i18n("Data di lavoro.") + " "; ACTION Set_Date()On a procedure I open a dialog and I want modify the ::omsgitem2 and i ma... |
refresh msgitem | [quote="Silvio":3f6ebfel]I have a Main Window where i insert this comand to create a msgiten on msgbar:
DEFINE MSGITEM ::oMsgItem2;
OF ::oWndMain:oMsgBar ;
BITMAP "D_CAL" ;
TOOLTIP " " + i18n("Data di lavoro.") + " ";
ACTION Set_Date()
On a procedure I open a dialog and I wa... |
refresh on get | I not found the error for this simply test
I want refresh the oget[1]
but it make error
[code=fw:1t7l9kwl]<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 /><span style... |
refresh on get | Dear Silvio,
You must define array for aGet , like :
local aGet := array(2)
regards,
Kok Joek Hoa |
refresh on get | Silvio...
Genera_Password(nLunghezza,cPassw,[color=#FF0000:3642a40g][size=150:3642a40g]aGet[/size:3642a40g][/color:3642a40g])
or this way
[color=#FF0000:3642a40g][size=150:3642a40g]aGet[/size:3642a40g][/color:3642a40g]:cText :=alltrim( cPass)
[color=#FF0000:3642a40g][size=150:3642a40g]aGet[/size:3642a40g][/color:364... |
refresh on get | thanks sorry
I made a mistake
it was Genera_Password(nLunghezza,cPassw,aGet)
and then aget[1]:ctext...
here is too hot , my head explodes sometime especially when I'm at school with my pupils |
refresh say object | How can I refresh the say object in variable oSay_acct down in the code
I am getting data from combpbox and then serach() the data to get display say variable
[code:2497j76i]
@ 1,1 SAY "&Account Name" OF oDlg PIXEL
@ 1,50 SAY ":" OF oDlg PIXEL
@ 1,60 COMBOBOX V_CU_NAME ITEMS aBase1(1,"cust",256,"cu_nam... |
refresh say object | Try
[code:2p97e8xl]
function search(variable,field,filename)
//--------------------------------------
use (filename)
locate for (alltrim(variable) == alltrim((filename)->(field)))
if found()
(variable):=((filename)->(field... |
refresh say object | program does not the search function . How can I involve a function into on change clause ?
Any other ideas about how can I reach my result ?
ON CHANGE (function_call,("V_CU_NAME","cu_name","cust"),oSay_acct:Refresh(),oDlg:Refresh()) |
refresh say object | You need this
Run a app TEST4.EXE and click in the button search.
<!-- m --><a class="postlink" href="http://www.shoppmarketing.com/forum/ehab.zip">http://www.shoppmarketing.com/forum/ehab.zip</a><!-- m --> |
refresh xbrowse | I wish insert vertical separators into a xbrowse on action and use a checkbox to select it
@ 150, 95 CHECKBOX oChk[3] VAR lSeparatoriV Prompt "show vertical separator" SIZE 80, 10 PIXEL OF oFld:aDialogs[1];
ON CHANGE;
( IIF(lSeparatoriV ,oBrowse:nColDividerStyle :=... |
refresh xbrowse | Any solution ? |
refreshing on a get | I have a strange error or I not remeber as refresh a numeric get control after I insert another get
I wish refresh the second get with the value of first get , any help please ?
[b:252dsbko]the minimal test[/b:252dsbko]
[code=fw:252dsbko]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span sty... |
refreshing on a get | Excuse, i dont speake english, try again use UPDATE en los GET...
REDEFINE GET aGet[2] VAR aVar[2] ID 102 OF oDlg UPDATE READONLY // NOMB.CLIENTE
saludos... <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" title="Shocked" /><!-- s:shock: --> |
refreshing on a get | NOT RUN OK |
refreshing on a get | [code=fw:2z827sgw]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #0000ff;">ON</span> <span style="color: #0000ff;">CHANGE</span> <span style="color: #000000;">(</span>aGet<span style="color: #000000;">[</span><span style="color: #000000;">8</span><span style="color: #000000;... |
refreshing on a get | Silvio, because you do not use the valid
@ 90, 56 GET aGet[8] VAR nApimpneto OF oDlg SIZE 40, 10 RIGHT PIXEL PICTURE "@E999,999.99" FONT oFont ;
valid( iif( nApimpneto > o, ( nApimptotal := nApimpneto, aGet[13]:refresh(), .t. ), .f. ) )
saludos... <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shoc... |
refreshing on a get | [quote="Enrico Maria Giordano":ino8s8hf][code=fw:ino8s8hf]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #0000ff;">ON</span> <span style="color: #0000ff;">CHANGE</span> <span style="color: #000000;">(</span>aGet<span style="color: #000000;">[</span><span style="color: #000000;">8... |
refreshing on a get | Enrico,
[quote:3n2oodq1]aGet[8]:Assign()[/quote:3n2oodq1]
what is this method for ? |
refreshing on a get | It assigns what you see in the edit buffer to the GET variable.
EMG |
refreshing on a get | thanks |
regardless screen resolution | I am suffering from porting side defects of my application from diferrent resolutions . I need the optimim (best) to avoid modifying my screen size for each resolution I face.
What make my application compatible with all sizes and sreen resolutions
Thanks |
regardless screen resolution | Ehab,
This is my simple modify sample:
dialog.prg
METHOD Autoresize(ntop,nleft)
local i,rsl0,rsl1,oCtrol,aRect
DEFAULT ntop:=0
DEFAULT nleft:=0
rsl0:=getsysmetrics(0)/800
if rsl0<=1; return ; end //<=800*600, not needed
rsl1:=getsysmetrics(1)/600
for i:=1 TO LEN(::acontrols)
oCtrol... |
regardless screen resolution | Hi ShumingWang ,good job .
This is the solution what my customers ask me .
Did you finish all the objects of Dialog ?
I test what you paste , but not work , (1027x768 Chinese big5 font ).
Would you share it to me ?
--
Best Regards
kokoo |
regardless screen resolution | kokoo,
In your app.prg
activate dialog odlg on int (odlg:autoresize())
Notice, child dialog not work.
Regards!
Shuming Wang |
regardless screen resolution | hi ShumingWang :
[quote:3k74wbui]
modifying my screen size for each resolution I face.
[/quote:3k74wbui]
include font size ?
Any passable for a resource Dialog , there is some objects not define only display.
kokoo |
regardless screen resolution | kokoo,
I do not change font size,so if at high resolution,browse could show more columns and rows.
-1 id in resource ,must rewrite with >0 an redefine in your prg .
Regards.
Shuming Wang |
register callback func to be exec from inside c VM harbour | Hello everyone;
I'm looking to register a callback function so that I may show some message while something is happening inside a VM c harbour function. For example to show a progress bar while the Harbour VM c function is inside a for loop.
For example:
[code=fw:2ya6qgjh]<div class="fw" id="{CB}" style="font-famil... |
register callback func to be exec from inside c VM harbour | Dear Reinaldo,
You may try with:
hb_idleAdd( {|n| ::ShowProgress(n) } ) |
register callback func to be exec from inside c VM harbour | Saludos maestro y gracias por la sugerencia.
I'm sorry I wasn't more specific.
Consider this declaration:
[code=fw:1xmlphbw]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #B900B9;">//-------------------------------------------------------------------------------</span><br /><span style=... |
registradora | alguien tiene un ejemplo de la caja registradora virtual? |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.