topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
Change focus | Hi !
There are several controls of the type TGET, when you press the up and down arrow keys, the focus changes. Can I prevent the focus from changing when these keys are pressed ? |
Change focus | If I understood the question...
[code=fw:2dr5ob97]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> <span style="color: #00C800;">IF</span> GETASYNCKEY<span style="color: #000000;">(</span> VK_UP <span style="color: #000000;">)</span> <span style="color: #B900B9;">// in vkey.ch... |
Change focus | Thanks for your help !
And what the ReadKey() function does not work ? |
Change fonts on wbrowse & xbrowse | Hello,
Can anyone give me an example how to change font in sàome rows in a wbrowse / xbrowse?
I know how change color for each line, but did'n found an example for changing fonts.
Thanks,
Marc |
Change fonts on wbrowse & xbrowse | Marc,
e.g:[code=fw:2s2217yk]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #0000ff;">DEFINE</span> <span style="color: #0000ff;">FONT</span> oFont <span style="color: #0000ff;">NAME</span> <span style="color: #ff0000;">"Arial"</span> <span style="color: #0000ff;">SIZE</span> <span style=... |
Change fonts on wbrowse & xbrowse | Thanks Frank,
Regards,
Marc |
Change headers in xbrowse | Hi,
How can I change the Headers in xBrowse while it is displayed?
Thanks,
Marc |
Change headers in xbrowse | Hello Marc,
Change and Test all xBrowse-Settings at Runtime ( Header, Footer, Fonts, Background, Cells .... :
I think, You want to set new values for the header on Button-click ?.
Can You tell me the values, You want to change ?
Download :
<!-- m --><a class="postlink" href="http://www.pflegeplus.com/fw_downloads/BRW... |
Change headers in xbrowse | Uwe,
I want the customer to be able to change the header of the xBrowse.
In this example 'Marc' or 'Jan'
[img:2ym0kjbb]http://www.vms.be/FWTest/xbrowseHeader.jpg[/img:2ym0kjbb]
In tsbrowse I did something like this:
[code:2ym0kjbb]oBrw:SetHeaders( , , ahoofding, , , , )
oBrw:DrawHeaders()
[... |
Change headers in xbrowse | [code:nwqlotxd]
oBrw:Jan:cHeader := 'cChangedJan'
oBrw:Refresh()
[/code:nwqlotxd] |
Change headers in xbrowse | NageswaraRao,
This is not working. Jan is the text that is in this sample in the cHeader of the 2e row. It's not a variable.
Regards,
Marc |
Change headers in xbrowse | Hello Marc,
any selected Mouse-Clicks inside the xBrowse, will change the Header-Text
Choose one, to do the defined Column-Title-Change ( You can use also VAR'S ).
Another option could be, to change the Head-color as well.
[code:2k0ylfkb]
// Old Column-Titles
// ------------------------
oLbx:aCols[ 1 ]... |
Change headers in xbrowse | Thank you Uwe,
It's working very nice now!! <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" alt=":lol:" title="Laughing" /><!-- s:lol: -->
Regards,
Marc |
Change htaccess for access to 1 folder | I once changed my htaccess file in order to forward ALL link, access and calls to the oldsite to the new site.
I have a FIVEWIN folder on it in order to upload images to post insite the forum here, but that also forward all pictures to the new index of the new domain.
My hosting says to look at the internet for a samp... |
Change htaccess for access to 1 folder | Dear Marc,
With mod_harbour CGI version we do it this way:
[code=fw:1bnjgc24]<div class="fw" id="{CB}" style="font-family: monospace;"><Directory C:/xampp/htdocs><br /> RewriteEngine <span style="color: #0000ff;">on</span><br /> RewriteRule ^<span style="color: #000000;">(</span><span style="color: #000000;">	... |
Change oBrw:aSelected outsite xbrowse | Can we change the status of aSelected?
The idea is that I call several functions (one by one) with a different ordscope() selection. The result records of that selection should be set to .t. in de aSelected
Next again a ordscope with other results, but these also need to be set .t. in aselected.
etc...
Finaly all s... |
Change oBrw:aSelected outsite xbrowse | Purpose of oBrw:aSelected is totally different.
What you want is you prepare an array of record numbers, which you want to show in xbrowse.
In this sample, aRecs represent the array aSelected you are referring to:
[code=fw:31h355qz]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;... |
Change oBrw:aSelected outsite xbrowse | Thanks for sending me in the correct direction !!
In every lookup function (afther selection)
I will add records to the array with a dbeval(....aadd()..) |
Change of control owner | Hi,
There are 2 controls on the window - a [b:1e4txqrl]Tbutton[/b:1e4txqrl] and a [b:1e4txqrl]TPanel[/b:1e4txqrl]. I need to tell the [b:1e4txqrl]TButton[/b:1e4txqrl] that it belongs to the [b:1e4txqrl]TPanel[/b:1e4txqrl]. How can this problem be solved ? |
Change of control owner | Dear Yuri,
When you create the TButton you use .. OF <TPanelObject>
Another way is to use Windows API function SetParent()
[url:1y3waedg]https://learn.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-setparent[/url:1y3waedg] |
Change of structure during development | Hey,
Every couple of day, while my program grows, I have to change (add) more fields into the online database
Now I go into my phpMyadmin and change the structure and continue.
I've seen that there are functions to change it from FWH.
What approach do you mostly take ? |
Change of structure during development | Hi Marc
Sorry for my bad english, i use this code for add columns
if fieldpos("c_emdirec") < 1
gci_sqlexe("ALTER TABLE gci_empresas ADD c_emdirec CHAR(60) DEFAULT '' NOT NULL AFTER c_emname2")
gci_sqlexe("ALTER TABLE vcnewbos ADD tas_detrac NUMERIC(5,2) DEFAULT '0.00' NOT NULL AFTER des_newbos")
end... |
Change of structure during development | FWH implementation
Examples:
Adding a numeric column
[code=fw:wkr8jdlx]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oCn:<span style="color: #000000;">AddColumn</span><span style="color: #000000;">(</span> <span style="color: #ff0000;">"mytale"</span>, <span style="color: #000000;">{</span>... |
Change of structure during development | Exactly what I needed. Thanks all. |
Change on Vertical show with xbrowse | Antonio publishes on Topic Utilitades/planitllas this sample to show vertical a record on xbrowse
[code=fw:1nfo3uj0]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><span style="color: #00D7D7;">#... |
Change on Vertical show with xbrowse | If you want just the same functionality of the above sample, i.e, without editing and navigation of dbf, this simple function works for you.
[code=fw:xxx5nyvp]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.Ch"</span><br /><s... |
Change on Vertical show with xbrowse | I suggest you first compile and test the code above.
Here I am posting a more elaborate function. This function provides
(1) editing the field
(2) buttons to navigate the dbf
(3) resizes the dialog to fit the contents of the browse.
[code=fw:2u15cv5m]<div class="fw" id="{CB}" style="font-family: monospace;"><span sty... |
Change on Vertical show with xbrowse | Thanks Mr. Rao, this is that I mean! |
Change on Vertical show with xbrowse | I made some modifies : I insert a buttonbar and insert your buttons and get....[b:2nfhbeqr]only the say is not transparent [/b:2nfhbeqr] ( Isaw on rpreview but not run ok)
[img:2nfhbeqr]http://img507.imageshack.us/img507/1643/vertg.jpg[/img:2nfhbeqr]
[code=fw:2nfhbeqr]<div class="fw" id="{CB}" st... |
Change on Vertical show with xbrowse | [img:1kvqcpyy]http://img33.imageshack.us/img33/9710/vertjo.jpg[/img:1kvqcpyy]
I made ( but it run bad)
oBrowse is the main xbrowse table
[code=fw:1kvqcpyy]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br /><span style="color: #00C800;">Function</span> testsilvio<span style... |
Change parent | Hi all !I want to take MDICHILD dialog(from external MDI application) and change him parent on my window. It's OK. But I not chage size or move this MDICHILD dialog - error external MDI application.What's that ? |
Change parent | Natter,Please provide a small and self contained PRG to reproduce the error, thanks |
Change parent | How may know list name styles of external application window ? |
Change position of Modal Dialog? | Hi my friends!
How I can change the position ( Top and Left ) of a modal dialog at runtime?
It's possible?
Thanks for all! |
Change position of Modal Dialog? | Julio,
oDlg:nTop = ...
oDlg:nLeft = ... |
Change position of Modal Dialog? | [quote="Antonio Linares":1z27jg6e]Julio,
oDlg:nTop = ...
oDlg:nLeft = ...[/quote:1z27jg6e]
First, thanks Antonio...
This is my situation:
[code:1z27jg6e]
DEFINE DIALOG oDlg RESOURCE "GRID_SELECTION" OF oDlgP
...
ACTIVATE DIALOG oDlg ON INIT ( oDlg:move( oDlgP:nTop, oDlgP:n... |
Change position of Modal Dialog? | Try with functions WndTop(oDlgp:hWnd) and WndLeft(oDlgp:hWnd) |
Change position of Modal Dialog? | [quote="Biel EA6DD":1j5neruu]Try with functions WndTop(oDlgp:hWnd) and WndLeft(oDlgp:hWnd)[/quote:1j5neruu]
Gabriel.... this not fun! <!-- s:( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":(" title="Sad" /><!-- s:( --> |
Change position of Modal Dialog? | Hello Cesar,
maybe you can try with
oDlg:Move(20,20,700,800,.t.)
Regards,
Otto
[code:k3s2qaeb] //
//DEFINE DIALOG oDlg RESOURCE "GRID_SELECTION" OF oDlgP
//...
//ACTIVATE DIALOG oDlg ON INIT ( oDlg:move( oDlgP:nTop, oDlgP:nLeft,,, .T. ) )
//EMG
... |
Change position of Modal Dialog? | [quote="Otto":2z09x1p5]Hello Cesar,
maybe you can try with
oDlg:Move(20,20,700,800,.t.)
Regards,
Otto
[code:2z09x1p5] //
//DEFINE DIALOG oDlg RESOURCE "GRID_SELECTION" OF oDlgP
//...
//ACTIVATE DIALOG oDlg ON INIT ( oDlg:move( oDlgP:nTop, oDlgP:nLeft,,, .T.... |
Change position of Modal Dialog? | Julio,
You need to turn absolute coordinates into relative ones.
Please review function ScreenToClient()
Please make a search for ScreenToClient in these forums. There are several examples of its use |
Change position of Modal Dialog? | Cesar,
I think you are right. There is no function opposite to the SetWindowPos = GetWindowPos in FIVEWIN.
oDlg:nTop() returns 0 in my tests
@ 3, 16 BUTTON "Top" SIZE 40, 12 ACTION msginfo(oDlg:nTop())
Maybe you can store the nTop of the first DIALOG in a STATIC and then use this STATIC for the second DIALOG. If y... |
Change position of Modal Dialog? | As Biel pointed, WndTop( oDlg:hWnd [,nNewTop] ) should work similar to oDlg:nTop |
Change position of Modal Dialog? | Antonio, where do you get nNewTop from?
Regards,
Otto |
Change position of Modal Dialog? | Otto,
Its a new value for nTop.
oWnd:nTop is equivalent to WndTop( oWnd:hWnd )
and
oWnd:nTop := 5 is equivalent to WndTop( oWnd:hWnd, 5 ) |
Change position of Modal Dialog? | Cesar,
maybe this is what you need.
Regards,
Otto
[code:3mbfaxds]#include "fivewin.ch"
STATIC nTop, nLeft
STATIC oWnd
function main()
local oWnd
DEFINE WINDOW oWnd TITLE "oWnd1" ;
FROM 5, 5 TO 24, 64
ACTIVATE WINDOW oWnd on Init f_dlg()
return nil
func f_dlg
local oDlg, oIc... |
Change position of Modal Dialog? | [quote="Antonio Linares":d5tvhl0b]Julio,
You need to turn absolute coordinates into relative ones.
Please review function ScreenToClient()
Please make a search for ScreenToClient in these forums. There are several examples of its use[/quote:d5tvhl0b]
Yes Antonio.... with ScreenToClient() , It's work fine!
Otto, tha... |
Change size on a Ribbon Group | I must change the size of a group of a Tab of RibbonBar
MENUITEM "Change Size" ACTION ( nwidthnew:= ChangeSize(oGrp:nWidth,"Change the size to group "+" ["+oGrp:cCaption+"]"),;
oGrp:End(),oGrp:=( oRBar:AddGroup(nwidthnew,cCaption,nGroup)),;
... |
Change size on a Ribbon Group | With the first Release of the Ribbonbar-Class < 08.2009 >
I started with a Painter, but stopped the work on it.
[color=#4000FF:1j8kw8z7]I understood I must destroy the group and add a new group with the same nIndex ( number of Goup)
oGrp:End(),oGrp:=( oRBar:AddGroup(nwidthnew,cCaption,nGroup)),;
but
with oGrp:End() ... |
Change size on a Ribbon Group | UWE not use prg extern...
ogrp:SETSIZE (..) [b:2p08xmtb]...not run[/b:2p08xmtb]
ogrp:Move() [b:2p08xmtb] not run[/b:2p08xmtb]
Also I reaprint the orbar with ::calcpos(),::display() but not run !!
try to set before 200 to nwidth of a group then try to insert a button ( trbtn ) and create an action
ACTIO... |
Change size to dialog during execution program | Hello,
I have a browse and four buttoms inside of a dialog and I need to expand the dialog and browse to adjust to screen resolution and move the buttons to other position.
Does somebody know as doing it?
Regards, |
Change size to dialog during execution program | oDialog:nWidth = ...
oDialog:nHeight = ...
<oControl>:nTop = ...
<oControl>:nLeft ...
<oControl>:nWidth = ...
<oControl>:nHeight = ... |
Change size to dialog during execution program | Hi,
CLASS TDialog FROM TWindow
METHOD Autoresize(ntop,nleft)
METHOD Autoresize(ntop,nleft)
local i,rsl0,rsl1
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 = ::a... |
Change size to dialog during execution program | Thanks for your reply.
But I have a problem, the fix text or literals in a dialog are not resized. Do you know how can I manage it to resize it?
Thanks in advance,
Jose Alfonso |
Change size to dialog during execution program | So far,-1 Id not support yet.
You could change like this:
redefine say prompt ' ... ...' of odlg id 111
Regards
Shuming Wang |
Change sort order on browse when clicking on header | How do I interchange between a descending and ascending sort order in a Xbrowse?
[code=fw:3p0ci2hb]<div class="fw" id="{CB}" style="font-family: monospace;"> <span style="color: #0000ff;">SELECT</span> myfile<br /> DATABASE oDbfG<br /> <span style="color: #B900B9;">//create temporary index</span><br /> oDbfG:<spa... |
Change sort order on browse when clicking on header | Please try this sample. Click on header toggles ascending and descending orders.
That is the default behavior, if not modified in the application program.
Sample code:
[code=fw:234awvzb]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;... |
Change sort order on browse when clicking on header | As always, right on the point. Everything back to normal when changing FIELDS to COLUMNS. <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
My final example (in case someone is stuck):
[code=fw:b6i257l6]<div class="fw" id="{CB}" style="font-family: monospace;"> <span... |
Change sort order on browse when clicking on header | Why show_bar() function ON INIT?
We can now create buttonbars for dialogs also just like in windows. |
Change sort order on browse when clicking on header | You are right again. But in this particular case is because this depends on 3 different scenarios that I did not include on the sample:
In my program it something like this:
[code=fw:18mfqg9t]<div class="fw" id="{CB}" style="font-family: monospace;">Show_Bar<span style="color: #000000;">(</span>aryFile,oShow,oBrw... |
Change style of a dialog or window ( Solved ) | Define window ownd;
STYLE ( WS_POPUP )
CAn i make it outside this call ?
i want make as:
oWnd:Style( WS_POPUP )
y tryed this:
oWnd:nStyle:= nOr (WS_POPUP) ( no show error ) more no work how is when i do it in define window .... |
Change style of a dialog or window ( Solved ) | lailton,
oWnd: nStyle -= WS_POPUP
[quote="lailton.webmaster"]Define window ownd;
STYLE ( WS_POPUP )
CAn i make it outside this call ?
i want make as:
oWnd:Style( WS_POPUP )
y tryed this:
oWnd:nStyle:= nOr (WS_POPUP) ( no show error ) more no work how is when i do it in define window ....[/quote] |
Change style of a dialog or window ( Solved ) | Thanks more yet continue.
it´s no work to me. |
Change style of a dialog or window ( Solved ) | Lailton,
[code=fw:2shxbw3w]<div class="fw" id="{CB}" style="font-family: monospace;">oWnd:<span style="color: #000000;">nStyle</span> := nOr <span style="color: #000000;">(</span>oWnd:<span style="color: #000000;">nStyle</span>, WS_POPUP<span style="color: #000000;">)</span></div>[/code:2shxbw3w] |
Change style of a dialog or window ( Solved ) | Hello Lailton:
You should use SetWindowLong function to change the window's style. The WS_POPUP style shouldn't be used alone but combined with at least another one eg WS_VISIBLE.
Try this sample:[code=fw:3stv7p0k]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> ... |
Change style of a dialog or window ( Solved ) | mmercado and StefanHaupt,
it´s work fine !!
Thanks so much... <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" alt=":lol:" title="Laughing" /><!-- s:lol: --> |
Change style's to DATA | I'm with a trouble to change a Buttombmp style(especificaly WS_TABSTOP) and a LOT of good programmers don't know how to change the style in execution...
I think that change the nStyle for logical Data will solve all this troubles...
[code:fbni0hos]
Ex.: Redefine ButtonBMP oBtn;
ID 100
P... |
Change style's to DATA | You can use:
SetWindowLong( oBtn:hWnd, GWL_STYLE, nXor( GetWindowLong( oBtn:hWnd, GWL_STYLE ), WS_TABSTOP ) ) |
Change style's to DATA | Thanks Linares, I already discover how to change <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> but it's difficult to understand. |
Change style's to DATA | Windows API's rules <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
Change style's to DATA | [quote="Antonio Linares":xcendhtc]Windows API's rules <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->[/quote:xcendhtc]
Where I can find these rules?
PS.: If it was in portuguese is better for me... |
Change style's to DATA | On MSDN.
EMG |
Change style's to DATA | Samir,
<!-- m --><a class="postlink" href="http://msdn.microsoft.com/en-us/library/ms633591(VS.85">http://msdn.microsoft.com/en-us/library/ms633591(VS.85</a><!-- m -->).aspx
<!-- m --><a class="postlink" href="http://msdn.microsoft.com/en-us/library/ms633584(VS.85">http://msdn.microsoft.com/en-us/library/ms633584(VS.... |
Change style's to DATA | Thanks, I will take a look <!-- s:wink: --><img src="{SMILIES_PATH}/icon_wink.gif" alt=":wink:" title="Wink" /><!-- s:wink: --> |
Change system colors - 2007/2010 style | <!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=3&t=21910">viewtopic.php?f=3&t=21910</a><!-- l -->
That would be wonderfull if we can change the color of 2007 clause and change the color of all system with that... |
Change te picture of a get according the contents | Hello,
A Belgium bank nr always have the same picture.
999-9999999-99
Sometimes the client is from another country and has a bank nr with another picture.
How can I change the picture of the field when the window is running.
The idea is to start all nrs with "BE"
So the picture will be :
"!!-999-9999999-99"
whe... |
Change te picture of a get according the contents | You could try using ON CHANGE and changing the picture (oGet:oGet:cPicture).
But I would just let the user type in whatever they want, then post process it to put it in the correct format and put it back into the GET. If it doesn't appear to be valid data, then you can turn the background a different color to signify... |
Change te picture of a get according the contents | Thanks James,
I have tried it this way, and indeed this is a better way.
Thanks for the advice.
Willy. |
Change te picture of a get according the contents | Maybe you should use ComboBox (or other control) to let a user select approciated picture format himself?
Vladimir Grigoriev |
Change te picture of a get according the contents | Vladimir:
You can change the get picture whenever you want with:
IF CRUB==1
oPuni:oGet:Picture:='999,999.9999'
oPuni:Refresh()
ELSE
oPuni:oGet:Picture:='999,999.99'
oPuni:Refresh()
ENDIF
Regards, |
Change text button Toolbar | Hi,
how is possible to change the text of a button in a toolbar?
Thank you |
Change text button Toolbar | Have you tried: oBtn:setText("New Text")? |
Change text button Toolbar | Riccardo,
You have to add this method to Class TToolBar:
[code:1sebn8sr]
METHOD SetText( nButton, cText ) INLINE TBSetText( ::hWnd, nButton, cText )
[/code:1sebn8sr]
And this code to your app:
[code:1sebn8sr]
#pragma BEGINDUMP
#include <hbapi.h>
#include <Window... |
Change text button Toolbar | Antonio,
thank you, works fine.
I've modify the Method Commad of the TToolBar to have the nId of the buttom when pressed:
Eval( bAction, Self ) -> Eval( bAction, Self, nID )
Bye
Riccardo |
Change text button Toolbar | Riccardo,
> Eval( bAction, Self ) -> Eval( bAction, Self, nID )
Ok, we have also modified it here, though we may finally create a new Class TTBButton and the TBButton object will be supplied instead of nID. |
Change text color and background of tRadio | I do like this:
[code=fw:3ubew6jg]<div class="fw" id="{CB}" style="font-family: monospace;"> <span style="color: #0000ff;">Redefine</span> <span style="color: #0000ff;">RADIO</span> ::<span style="color: #000000;">oRad760_DadosCobranca</span> ;<br /> <span style="color: #0000ff;">VAR</span> ::<span style="color: #... |
Change text color and background of tRadio | As far as I know it is a problem to have active themes (also for checkboxes).
This may work although for me it has never been a good solution.
[code=fw:qapv5kuz]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> SetWindowTheme<span style="color: #000000;">(</span> ::<span style="co... |
Change text color and background of tRadio | When executing I get the message:
[code=fw:1rgevfb7]<div class="fw" id="{CB}" style="font-family: monospace;">Error description: <span style="color: #000000;">Error</span> BASE/<span style="color: #000000;">1004</span> <span style="color: #0000ff;">Message</span> not found: <span style="color: #000000;">TRADMENU<... |
Change text color and background of tRadio | Sorry, try
[code=fw:3umasqj0]<div class="fw" id="{CB}" style="font-family: monospace;"><br />SetWindowTheme<span style="color: #000000;">(</span> ::<span style="color: #000000;">oRad760_DadosCobranca</span>:<span style="color: #000000;">aItems</span><span style="color: #000000;">[</span> <span style="color: #... |
Change text color and background of tRadio | Thanks, it worked.
I better change the tRadio class so I don't have to mess with the whole system.
I am creating a kind of Dark Theme, and if I could not change certain controls, it would not work.
[code=fw:x837ev5i]<div class="fw" id="{CB}" style="font-family: monospace;"> ::<span style="color: #000000;">oDlgCadastr... |
Change text color and background of tRadio | Ok, but I don't like the 3dlook style
Try using also this and tell me if it works with redefined controls
[code=fw:26w3sr9a]<div class="fw" id="{CB}" style="font-family: monospace;"><br />Ctl3DLook<span style="color: #000000;">(</span> <yourobjectcontrol>:<span style="color: #000000;">hWnd</span>, .F. <span style=... |
Change text color and background of tRadio | Giovany, Your design is very good, congratulations |
Change text color and background of tRadio | I thought the [b:8wlbr73c]Set3DLook(.F.)[/b:8wlbr73c] function would solve this question |
Change text color and background of tRadio | [quote="cnavarro":1xstv44c]Giovany, Your design is very good, congratulations[/quote:1xstv44c]
Thank you Navarro. We have to show that Fivewin is beyond what we think we can do.
Via Activex Integration
[img:1xstv44c]https://i.postimg.cc/nhcZb3mB/SH-25-Nov-20-13-03.jpg[/img:1xstv44c]
Other controls
[im... |
Change text color and background of tRadio | [quote="Giovany Vecchi":wqrs4a61][quote="cnavarro":wqrs4a61]Giovany, Your design is very good, congratulations[/quote:wqrs4a61]
Thank you Navarro. We have to show that Fivewin is beyond what we think we can do.
[/quote:wqrs4a61]
[b:wqrs4a61][size=150:wqrs4a61]The limit is our imagination, without any doubt[/size:wqrs... |
Change text color and background of tRadio | [quote:3v0olq0a]Have you managed to solve the 3D effect?[/quote:3v0olq0a]
I did not make it.
I noticed that even putting at the beginning of the program the option Set3dLook (.F.) OR .T., Does not change anything. |
Change the ""90% of resources"" for a REAL percentua | Antonio,
I think it would be great if you can do this for FW/FWH, because When I have problems with decreasing resources, I have no idea where to see in which percentual it is, and on Win XP the FWH always returns 90%.
Thanks,
Kleyber Derick |
Change the ""90% of resources"" for a REAL percentua | Kleyber,
Googling it, we have found this interesting page:
<!-- m --><a class="postlink" href="http://msdn.microsoft.com/msdnmag/issues/03/01/GDILeaks/default.aspx">http://msdn.microsoft.com/msdnmag/issue ... fault.aspx</a><!-- m -->
Lets see if it may help. |
Change the ""90% of resources"" for a REAL percentua | Here we can get a free GDI inspector:
<!-- m --><a class="postlink" href="http://ltearno.free.fr/dpus/">http://ltearno.free.fr/dpus/</a><!-- m --> |
Change the ""90% of resources"" for a REAL percentua | Antonio,
Very interesting... is there a chance to put this in a simpler way inside FWH?
Regards,
Kleyber Derick |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.