topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
resize a column to multiline in xbrowse | Rao,
When I try your XbrColMaxHeight() function, I always get 1 for DrawTextEx( hDC, cData, aRect, nOr( DT_CALCRECT, DT_WORDBREAK ) ) eventhough cData does contains varying length of strings. How to fix this? |
resize a column to multiline in xbrowse | Just before using DrawTextEx() function write to log file values of hDC, cData and aRect and verify if they are valid values.
You may use
FWLOG hDC, cData, aRect
You can see the results in <exename>.log |
resize a column to multiline in xbrowse | This is what I got Rao,
[code=fw:2gk4r828]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #000000;">09</span>/<span style="color: #000000;">03</span>/<span style="color: #000000;">2015</span> <span style="color: #000000;">16</span>:<span style="color: #000000;">45</span>:<span style=... |
resize a column to multiline in xbrowse | Ok Thanks.
In the code above, please see the line
[code=fw:dn2m1rab]<div class="fw" id="{CB}" style="font-family: monospace;"> aRect := oBrw:<span style="color: #000000;">DataRect</span><span style="color: #000000;">(</span><span style="color: #000000;">)</span>... |
resize a column to multiline in xbrowse | Rao,
aRect now has an array of coordinates but nMaxHeight is not adequate to show more than 1 line
[code=fw:27wjao3h]<div class="fw" id="{CB}" style="font-family: monospace;">XBRCOLMAXHEIGHT<span style="color: #000000;">(</span> <span style="color: #000000;">843</span> <span style="color: #000000;">)</spa... |
resize a column to multiline in xbrowse | Can you please add another line of code to log the result of nMaxHeight after calling the drawtestex(...) |
resize a column to multiline in xbrowse | Here you go Rao,
[code=fw:1odbllmn]<div class="fw" id="{CB}" style="font-family: monospace;">XBRCOLMAXHEIGHT<span style="color: #000000;">(</span> <span style="color: #000000;">845</span> <span style="color: #000000;">)</span> hDC = <span style="color: #000000;">1224811279</span> cData = <span style="color: ... |
resize a column to multiline in xbrowse | I need to see the full code. |
resize a column to multiline in xbrowse | Ok Rao. I'll try to build a self contained example. |
resize a column to multiline in xbrowse | Rao, here is the self-contained example
PRG
[code=fw:pe7zy93k]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"fivewin.ch"</span><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"xbrowse.ch"</span><br... |
resize a column to multiline in xbrowse | Any solution Rao? |
resize a column to multiline in xbrowse | I could not look into this due to other preoccupations. I shall get back to you soon. |
resize a column to multiline in xbrowse | Ok. No problem Rao <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> |
resize a dialog from resources | To All
I have been asked to allow my dialog embeded with 2 xbrowses from resource to be able to maximize.
Is there a way to auto-resize the dialog and the elements within the resource ?
Thanks
Rick Lipkin
[url=http://imageshack.us/photo/my-images/683/rick1p.jpg/:f460eyzf][img:f460eyzf]http://img683... |
resize a dialog from resources | Rick,
You have to do it programmatically:
[code=fw:1fk3xpys]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br /> oDlg:<span style="color: #000000;">bResized</span> = <span style="color: #000000;">{</span> | nSizeType, nWidth, nHeight | ResizeControls<span style="color: #000000;">... |
resize a dialog from resources | Antonio
Thanks for your help .. I searched for bResized in the \samples folder and found several examples .. will try to work my way through the code.
Appreciate your quick response.
Rick Lipkin |
resize a get field on GotFocus | Hello,
How can I resize a get field on GotFocus?
I want to change font on GotFocus – this is working.
But with the bigger font I would need a larger get field.
I tried with: oGetKonto7:Resize( 0, 200, 50 )
But this does not work.
Best regards,
Otto
oGetKonto7:bGotFocus = { || oGetKonto7:Resize( 0, 200, 50 ), oGetKo... |
resize a get field on GotFocus | Otto,
[quote:3ijutyjb]oGetKonto7:bGotFocus = { || oGetKonto7:Resize( 0, 200, 50 ), ;
oGetKonto7:SetFont(Setup():oFntMetroFLATBTN ) ,;
oGetKonto7:nClrText( CLR_BLACK ),oGetKonto7:paint() } [/quote:3ijutyjb]
[color=#0000FF:3ijutyjb][b:3ijutyjb]oGetKonto7:bGotFocus = { || oGetKonto7:nWidth := 200, oGetKonto7:nHeight := ... |
resize a get field on GotFocus | Hallo Uwe,
vielen Dank. Funktioniert super.
Danke und liebe Grüße
Otto |
resize a get field on GotFocus | [quote="Otto":mfgmbac0]I tried with: oGetKonto7:Resize( 0, 200, 50 )
But this does not work.[/quote:mfgmbac0]
[code=fw:mfgmbac0]<div class="fw" id="{CB}" style="font-family: monospace;">oGetKonto7:<span style="color: #000000;">SetSize</span><span style="color: #000000;">(</span> <span style="color: #000000;">200<... |
resize a get field on GotFocus | Hello Enrico,
Using resize for lostFocus does not clear the background.
2nd codeblock is working.
oGetKonto5:nWidth := 55
Thanks in advance
Otto
oGetKonto5:bLostFocus = { || oGetKonto5:SetSize( 55, 32 ),;
oGetKonto5:SetFont(oFont ),;
oGetKonto5:nClrText( CLR_OLIVE ),;
oGetKonto... |
resize a get field on GotFocus | [quote="Otto":3k9y9krg]Hello Enrico,
Using resize for lostFocus does not clear the background.[/quote:3k9y9krg]
Try
[code=fw:3k9y9krg]<div class="fw" id="{CB}" style="font-family: monospace;">oGetKonto7:<span style="color: #000000;">SetSize</span><span style="color: #000000;">(</span> <span style="color: #000000;... |
resize a get field on GotFocus | Enrico,
thank you. This is working.
Best regards,
Otto |
resize a get field on GotFocus | [img:1uk96s57]http://www.atzwanger-software.com/fw/resize.jpg[/img:1uk96s57]
Enrico,
maybe you can help me too how to paint over the other get in the srceen.
I mean the resized Get should overwrite the other one.
Best regards,
Otto |
resize a get field on GotFocus | Otto,
can you show me a reduced and self-contained sample showing the problem?
EMG |
resize a position with fw_drawimage | I use for bpainted a image (first) on another image( second) this function
FW_DrawImage( hDC, "BTN_PNG_DAY", { 0, -3, 20, 20 } )
If the first Image is resize (more big or more small) how I can recalculate the position of the second image ?
I 'mtrying...
Local arrayBtn:= GetClientRect (oBtn)
FW_DrawImage( hDC,... |
resize a position with fw_drawimage | any solution please ? |
resize a position with fw_drawimage | SIlvio,
there are different possible situations :
resizing inside a group or just 2 images next each other ( see inside circle )
using a fixed space or calculated in relation to the zoom-factor
I prefer using GDIPLUS because of possible exact calculations ( works great ). <!-- s:!: --><img src="{SMILIES_PATH}/icon_ex... |
resize a position with fw_drawimage | Uwe,
I need another situation
Uwe I have a btnbmp with a Png and up this some symbols also png
when I resize the dialog the btnbmp are resized and the symbol are moved on another position
for a sample look this image
[img:1ukpwxcc]https://i.postimg.cc/BQpYWThV/yy.png[/img:1ukpwxcc]
I need to in... |
resize a position with fw_drawimage | I think the wanted solution
3 embedded images inside the main-image
everything zoomed and unzoomed keeping the exact positions.
The same logic like used for windows but a dialog
[img:lt57zkc5]http://www.pflegeplus.com/IMAGES/Zoom23.jpg[/img:lt57zkc5]
[b:lt57zkc5]Only a few lines of code [/b:lt57zkc5] ... |
resize a position with fw_drawimage | CAn run ok also with btnbmp control ? |
resize a position with fw_drawimage | Silvio,
with Btnbmp it is not possible to place sub-images
on any position inside the button. <!-- s:( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":(" title="Sad" /><!-- s:( -->
Maybe it is possible to add [color=#0000FF:cuvry2d2][b:cuvry2d2]clicked[/b:cuvry2d2][/color:cuvry2d2] like in TImage
METHOD New( nTop... |
resize a position with fw_drawimage | [quote="ukoenig":39wwcmdl]Silvio,
with Btnbmp it is not possible to place sub-images
on any position inside the button. <!-- s:( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":(" title="Sad" /><!-- s:( -->
Maybe it is possible to add [color=#0000FF:39wwcmdl][b:39wwcmdl]clicked[/b:39wwcmdl][/color:39wwcmdl] like in... |
resize a position with fw_drawimage | Silvio,
I know with using FW_DrawImage is OK.
What I mean is : the calculations are done using [color=#0000FF:b9d19v33][b:b9d19v33]GDIPLUS[/b:b9d19v33][/color:b9d19v33]
I didn't test if it is possible to change from < FW_DrawImage > to < GDIPLUS >
I will have a look at it.
regards
Uwe <!-- s:D --><img src="{SMILIES_P... |
resize a position with fw_drawimage | Silvio just as a information of the calculation logic.
I'm using a resize-factor for zoom / unzoom
First I have to detect if horizontal or vertical is resized
resize-factor < 1 > belongs to the basic dialog-size.
[code=fw:36ckucnk]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #000... |
resize a position with fw_drawimage | Silvio,
zooming buttons works
but there is a problem ;
images are not adjusted to the new burttonsize <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: -->
borders and spaces are working
[img:gumc4t6g]http://www.pflegeplus.com/IMAGES/Btnzoom1.jpg[/img:gu... |
resize a position with fw_drawimage | How I can have the width and the Height of a btnbmp ? |
resize a position with fw_drawimage | //------------- BMP-Brush -----------
FUNCTION DRAW_BMP( hDC, oBitmap, aColors, nColorSel )
LOCAL oBMPBrush, aGrad
LOCAL [color=#0000FF:1bka0t46][b:1bka0t46]aRect := GETCLIENTRECT( oBitmap:hWnd )[/b:1bka0t46][/color:1bka0t46]
IF nColorSel = 1
aGrad := { { .5, CLR_WHITE, aColors[2] }, { .5, aColors[2], CLR_BLACK } }... |
resize browse when click maximized dialog | hi,
I would like to maximized my browse when I click maximized on my dialog but dialog maximized and browse not...
[code=fw:2ocwln05]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> <span style="color: #0000ff;">DEFINE</span> <span style="color: #0000ff;">DIALOG</span> oDlg2 <span style="color: #0000... |
resize browse when click maximized dialog | [code=fw:3krb7t77]<div class="fw" id="{CB}" style="font-family: monospace;">oBrw:<span style="color: #000000;">nRightMargin</span> := <span style="color: #000000;">20</span><br />oBrw:<span style="color: #000000;">nBottomMargin</span> := <span style="color: #000000;">40</span> <span style="color: #B900B9;">// or ... |
resize browse when click maximized dialog | hi Mr Rao, it work!
now I have another problem, when I maximized the dialog, browse is ok but BTNBMP buttons remain in their posizion overlapping to the browse.
ciao
Damiano |
resize browse when click maximized dialog | You need to move them with code in the ON RESIZE clause of the Dialog.
Best way to have fully flexible dialogs is to create from source code and not with resources.
OT:
We recommend creating xbrowse as below and not to use ADD TO oBrw
[code=fw:1k64prt3]<div class="fw" id="{CB}" style="font-family: monospace;"><span st... |
resize browse when click maximized dialog | thank you!!! |
resize browse when click maximized dialog | This is an example of resizable dialog with adjusting controls when resized.
[code=fw:24hc7yd5]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">function</span> RcBrowse<br /><br /> <span style="color: #00C800;">local</span> oDlg, oBrw, oBtn1, oBtn2, oRect<br /><br />&n... |
resize browse when click maximized dialog | very good mr rao
but I have FWH 12.01 and TRUEPIXEL do not work
ciao
Damiano |
resize browse when click maximized dialog | Without TRUEPIXEL clause:
[code=fw:1v22rf5v]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"fivewin.ch"</span><br /><br /><span style="color: #00C800;">function</span> Main<span style="color: #000000;">(</span><span style="... |
resize browse when click maximized dialog | thank you Mr Rao
ciao
Damiano |
resize browse when click maximized dialog | [quote="nageswaragunupudi":1vwhke0a]This is an example of resizable dialog with adjusting controls when resized.
[code=fw:1vwhke0a]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">function</span> RcBrowse<br /><br /> <span style="color: #00C800;">local</span> oDlg, oBrw, oBtn1, ... |
resize columnas xbrowse | Hola foro
Quiero en un xbrowse que no se pueda modificar el ancho de la columna con el raton al posicionar el puntero en la linea que divide las columnas, he visto la clase, pero no he encontrado la data para ese dato,
alguien sabra como evitar esto?
salu2
paco |
resize columnas xbrowse | No recuerdo muy bien, pero creo que es:
[code=fw:291blcb7]<div class="fw" id="{CB}" style="font-family: monospace;">AEval<span style="color: #000000;">(</span> oBrw:<span style="color: #000000;">aCols</span>, <span style="color: #000000;">{</span> |o| o:<span style="color: #000000;">lAllowSizing</span> := .f.... |
resize columnas xbrowse | Gracias Byron funcionó,
yo lo estaba probando
oBrw:lAllowSizing := .f. y asi no funciona
salu2
paco |
resize16 dentro de un dialog en un folder | Estoy iniciando la migracion de una aplicación de 16 a 32 bits, dentro de los problemas que me han sucedido y viendo las respuestas en el foro, hasta ahora va todo relativamente bien, el tema es que los tamaños de los dialogs junto con los controles incluidos en los mismos se achican en la aplicacion de 32 bits, pero u... |
resizing dialog defined from resource | Hello there!This is my first post here so please be gentle with your replies... <!-- s8) --><img src="{SMILIES_PATH}/icon_cool.gif" alt="8)" title="Cool" /><!-- s8) --> I defined a dialog from workshop that looks like this:......CBS_DETAIL DIALOG 1, 1, 100, 100STYLE WS_CHILD | WS_BORDERFONT 10, "Courier"{}......then ... |
resizing dialog defined from resource | Was able to SOLVED IT!I add this:oRect := oChildWnd:oWndClient:GETCLIRECT()....and this:ACTIVATE WINDOW oChildWnd; ON INIT ( oDlg:Move( 1,1,oRect:nRight, oRect:nBottom, .T.) ....I hope this works with other controls too like oFolder define within dialog (as resource)....Is there better coding for this ... |
resizing dialog defined from resource | It is fine <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->You can also use oDlg:SetSize( nWidth, nHeight, lRepaint ) instead of Move() |
resizing dialog defined from resource | Thanks so much senior Linares! <!-- s8) --><img src="{SMILIES_PATH}/icon_cool.gif" alt="8)" title="Cool" /><!-- s8) --> I also use oDlg:Resize(...) when I only need the dialog/object to expand.My best regards,Mr. Frances A. PadillaInternational Elevator & Equipment, Inc.<!-- w --><a class="postlink" href="http://www.i... |
resizing images | Hello Antonio,
I have used the new function SaveImageFromImage() and it works perfect. Here is the code I used.
[code=fw:vp95qhsa]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">FUNCTION</span> RK_SelectFoto<span style="color: #000000;">(</span>nPlantnum<span style="color: #... |
resizing images | Glad to know that it is working fine
many thanks for your great feedback <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
resizing window and image control | Hello,
I have a function that shows a bigger image in a window. With the older libs (date 23-03-2018) it worked fine when I use the next code:
[code=fw:djjo9zzs]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">FUNCTION</span> RK_FotoGroot<span style="color: #000000;">(</... |
resizing window and image control | [quote:271sjdy5]
If I look in the source of Windows.prg there si something strnage too?[/quote:271sjdy5]
Yes, I detect this , It would be easy to change it, but we would lose the retro compatibility in old programs ...
I have seen the problem of the photos, is the new setsize method that overwrites setsize Tcontrol Me... |
resizing window and image control | Hello Manuel,
Thanks for these new libs, the resizing is working OK now. |
resolution of a JPG | Hello friends,
How can I get the resolution of a JPG?
I want to remember that I read here that it can be done without opening and reading the photo.
Best regards,
Otto |
resolution of a JPG | Maybe this post ?
[url:38jts0rr]http://forums.fivetechsupport.com/viewtopic.php?f=3&t=16312&hilit=jpg+resolution&sid=3c21fef10f4377eed5600cb7087a1afd[/url:38jts0rr] |
resolution of a JPG | Hello Marc,
Thanks. With the help of your link, I remembered that I already solved the problem with modHarbour and a JS LIB.
Thanks again.
Should also work with WEBVIEW2.
Here is the link to the library:
[url:7h3708va]https://github.com/exif-js/exif-js[/url:7h3708va]
Best regards,
Otto
PS: That's where forens... |
resolution of a JPG | Hello Marc,
now I remember.
I wanted to program a working time recording.
A display shows a clock with a QR code that changes every 10 sec.
When an employee scans the QR code and follows the link, the photo is sent to the server and the metadata is read out.
If the picture is older than e.g. 10 sec. then the server r... |
resolution of a JPG | ...
The program is still working:
[url:2cnkv5z6]https://winhotel.space/qrcodejs-master/index-svg.prg[/url:2cnkv5z6]
Best regards,
Otto |
resolution of a JPG | Great ! |
resolution of a JPG | Great ! |
resolution of a JPG | Dear Mr. Rao,
Hearing that from you means a lot to me.
Have a nice Sunday.
Best regards,
Otto |
resolution of a JPG | [quote="Otto":kx5ruguh]Hello friends,
How can I get the resolution of a JPG?
I want to remember that I read here that it can be done without opening and reading the photo.
Best regards,
Otto[/quote:kx5ruguh]
FWH function
[code=fw:kx5ruguh]<div class="fw" id="{CB}" style="font-family: monospace;">JpegDim<span style="... |
resolution of a JPG | hi Otto,
for Desktop App you can get Information of JPG File this Way
[code=fw:185uvvh7]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"fivewin.CH"</span><br />PROCEDURE MAIN<br /> <span style="color: #0000ff;">MsgInfo</span><span... |
resource consumption | Hello FiveWinners.
Is there any way to know that the application is consuming resources or resources are not releasing?
regards |
resource consumption | before to quit my application i have
FERASE("CHECKRES.TXT")
CHECKRES()
i get a checkres.txt file showing the pending resources (if any and where it comes from)
Hth |
resource consumption | And besides what Richard has explained you, at the beginning of your app call SetResDebug( .T. ) |
resource error | [url=http://img59.imageshack.us/my.php?image=errorepu3.png:e7gml5tw][img:e7gml5tw]http://img59.imageshack.us/img59/7813/errorepu3.th.png[/img:e7gml5tw][/url:e7gml5tw]
I use workshop borland.
Why in some gets there is border : on the top there is a get with the same option but i... |
resource error | Silvio,
the border wiil disappear if you "redefine" every control in your source.
Stefan |
resource error | why it non make error for the first get ? |
resource error | I don´t know, I had this error only, if I did not redefine the get. Maybe the folder has something to do with it. The first get is not in a folder.
Stefan |
resource error | if you create a dialog
then you create a test programredefine dialog resource"test" and activate dialog you must see all the fields
it has been always therefore because now is different? |
resource workshop windows seven | Hello
Has anyone succeeded installing Borland resource workshop under windows seven ?
Thanks for your help,
Richard |
resource workshop windows seven | Richard,
Here it works fine, just copying the installed files.
Is you Windows 7 32 bits ? It will not run under 64 bits |
resource workshop windows seven | Antonio
unfortunately it is a 64 bits
wonder why it does not run under vista or xp compatibility...
gotta find a way to make it run or find a good replacement
Thanks for the help, |
resource workshop windows seven | Richard,
16 bits applications are not supported in Windows 64 bits
Its a pity, but it is this way. |
resource workshop windows seven | Antonio
It is not clear to me.
If i right click on computer, properties , it tells me system type 64 bits, so i guess it is a 64 bits version of seven , is there another way to make sure ?
When i execute a very old version of my software (16 bits) it runs ok
what am i missing ?
Richard |
resource workshop windows seven | Richard,
Open the Windows Tasks Manager. If you see some of the running apps with a * (star) on the right side, then it means that you are using Windows 64 and those star marked apps are 32 bits ones |
resource workshop windows seven | Antonio
It is a 64 bits version
The app i was trying to execute was 32 bits (though 7 years old), time passes by quickly.
The only remaining option is to find a good replacement to borland Resource workshop
I will go through the topic in this forum and probably ask what was the best choice for those who were in a s... |
resource workshop windows seven | Richard
Give PELLES C a try. Is an excellent Resource Editor
Last Version ( 6.0 ) works with no problem in Win7 64 Bits. I finished migrating all my Rc files to Pelles C, now I use it in Win7, Vista 64 bits and XP 32 Bits.
Download it from here
<!-- m --><a class="postlink" href="http://www.smorgasbordet.com/pellesc/... |
resource workshop windows seven | Adolfo
Thanks for the hint, i will give it a try
What do you mean by migrating RC files to Pelles C ?
Is there anything special that has to be done in order to use existing resources with pelles C
Thanks for your help
Richard |
resource workshop windows seven | [quote="Richard Chidiak":2tjno3nv]
What do you mean by migrating RC files to Pelles C ?
[/quote:2tjno3nv]
Richard...
By migrating.. I mean "opening" and reviewing, so far I didn't have any kind of problem with almost 50 different RC's created by Workshop.
If yoiu need any help.. just contact me.
From Chile
Adolfo |
resource workshop windows seven | Adolfo
I have migrated to pelles c for my resources
I have one problem inside folders, i can not highlight or select any field with the mouse, tabs or keyboard is OK
Outside folders everything is OK
I have looked into the properties , they seem ok,
Have you been through a similar problem ?
Thanks for the help,
... |
resource workshop windows seven | Richard
Here you have an example..
The Container
[code=fw:2ae2sfiw]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #0000ff;">FOLDER</span> <span style="color: #0000ff;">DIALOG</span> DISCARDABLE <span style="color: #000000;">45</span>, <span style="color: #000000;">20</span>, <span style... |
resource workshop windows seven | Adolfo,
My resource look quite the same except i do not have a xbrowse inside but common controls get..etc
on all folders (i have several in my app) , the mouse is inactive on all controls inside folders ! Very strange
Do you have a folder with standard controls (like get) where you can check if you have mouse contr... |
resource workshop windows seven | Richard
Here you have one with gets, says.. etc
[code=fw:3cbln4jd]<div class="fw" id="{CB}" style="font-family: monospace;">FOLUSU1 <span style="color: #0000ff;">DIALOG</span> DISCARDABLE <span style="color: #000000;">108</span>, <span style="color: #000000;">49</span>, <span style="color: #000000;">394</span>, <span... |
resource workshop windows seven | Adolfo
same version of pelles c as yours 6.00.4 version 32 bits , windows seven 64 bits
Can you please compile the following test and let me know if you can select any get field with the mouse ?
Same code work Ok with BRW
Thanks for your help,
Richard
[code=fw:j5rhuayc]<div class="fw" id="{CB}" style="font-fam... |
resource workshop windows seven | Richard,
Just remove the WS_CAPTION style from the child dialogs:
STYLE WS_CHILD|DS_ABSALIGN|DS_3DLOOK // | WS_CAPTION
with that change here it works fine <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
resource workshop windows seven | Antonio
Thank you, it works now
Pelles C is adding the caption to the child dialogs by default ...
Thanks for the help,
Richard |
resource workshop windows seven | Richard,
Yes, that was the problem <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
Good to know is fine now |
resources or commands | Which is better programming and faster using :
External resources or xbase commands?
Which is usable ,better and faster using DLL or RC?
Thanks in advance . |
resources or commands | They are different techniques for different situations. There is nothing like "one is better than the other". You have to use the one that better fits your needs.
EMG |
resources or commands | For me the fastest way are resources in RC files then linked into the EXE.
I've been working this way for years.... no complain. |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.