topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
radio button en recursos | No comprendo. Porque hacer asi? Porque no dejar todos en el mismo grupo? separado solo en el resource(recurso). |
radio button en recursos | porque asi deben ser |
radio button en recursos | En el recurso, en el control ID 127, debes marcarlo como grupo |
radio button en recursos | Perfecto!
solucionado.
Gracias. |
radio y bChange | Hola.
Que estoy haciendo mal en este codigo que el bChange cuando compilo me dice que no existe.
[code=fw:23uov6ev]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #0000ff;">redefine</span> <span style="color: #0000ff;">radio</span> oRAdio <span style="color: #0000ff;">id</span> <span styl... |
radio y bChange | Try this:
[code=fw:nytua5bn]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #0000ff;">redefine</span> <span style="color: #0000ff;">radio</span> oRAdio <span style="color: #0000ff;">var</span> nVar ...</div>[/code:nytua5bn]
If you omit the VAR clause, oRadio is the radio variable and not... |
radio y bChange | gracias!
funciono |
radios en folder sera bug? | el enter en el radio button dentro de folder no funciona, no cambia de controla, alguna solucion?
gracias
Paco |
radios en tu ppc | hola a todos
en esta pagina he anotado unos cuantos links de radios por internet
<!-- m --><a class="postlink" href="http://www.arrakis.es/~canal_five/radios.htm">http://www.arrakis.es/~canal_five/radios.htm</a><!-- m -->
Un saludo |
rando color | I have an archive where I put a field ncolor ( numeric) to show a color but when I insert a record it is allways black because the fields is empty (0) .
How I can to rando a color different every time I insert a new record ?
Any nice solution ?
I made this
[code=fw:fa0ilm2z]<div class="fw" id="{CB}" style="font... |
rando color | Try with
[code=fw:2eslng90]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> ? Int<span style="color: #000000;">(</span> <span style="color: #000000;">255</span> * hb_Random<span style="color: #000000;">(</span> <span style="color: #000000;">0</span>, <span style="color: #000000;">1<... |
rando color | seem run ok I add the search in archive to dbseek any clone |
random problem in xBrowse Problem BASE/1004 There is no meth | Hello,
Some customers report me this error:
Problem BASE/1004 There is no method: ISKINDOF
Args:
[ 1] = U
[ 2] = C TMULTIGET
Stack Calls
===========
Called from: => ISKINDOF( 0 )
Called from: .\source\classes\XBROWSE.PRG => EDITGETKEYDOWN( 15132 )
Offending line:
[code=fw:1949fart]<div class="fw" id="{CB}" style=... |
random problem in xBrowse Problem BASE/1004 There is no meth | The above error means that oCol:oEditGet is NIL when the function is called.
But this is how this function is used
[code=fw:3hefswys]<div class="fw" id="{CB}" style="font-family: monospace;"> ::<span style="color: #000000;">oEditGet</span>:<span style="color: #000000;">bKeyDown</span> := <span style="col... |
random problem in xBrowse Problem BASE/1004 There is no meth | For now, please try making this change in xbrowse.prg
for the lines
[code=fw:gcmqtnor]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">static</span> <span style="color: #00C800;">function</span> EditGetkeyDown<span style="color: #000000;">(</span> <span style="color: #00C800;... |
random problem in xBrowse Problem BASE/1004 There is no meth | Thank you very much! |
random sentences generator | Inspired in the idea of AI large languages models, this is a very simple and easy to understand sentences generator, quite funny <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
The more sentences that you provide to it, the more "inspired" that it will be <!-- s:-D --><img... |
random sentences generator | In this example we load all William Shakespeare's books into memory:
[url:knwe62dm]https://www.fivetechsoft.com/files/shakespeare.txt[/url:knwe62dm]
[code=fw:knwe62dm]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"... |
random sentences generator | Dear Antonio,
thank you very much.
I added
#xtranslate hb_HHasKey( [<x,...>] ) => HHasKey( <x> )
and translated:
Tokenizer("The tomcat climbed the tree and meowed until the firefighter arrived.")
Tokenizer("I like learning new things every day.")
Tokenizer("The sky is blue and the sun is shining.")
Tokenizer("Music i... |
random sentences generator | Dear Otto,
When you call function Generate( <cInitialWord> ) you have to provide an initial word that exists in your sentences,
in your case:
? Generate( "the" ) |
random sentences generator | Dear Otto,
In this example you can visually review how we organize the tokens, so its easier to understand how it works <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
llml.prg
[code=fw:3bbtlabz]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color:... |
random sentences generator | You can use chatGPT to generate the sentences for you:
[quote:2gcgjc7r]write 50 simple sentences to feed artificial intelligence using the format Tokenizer( sentence ) [/quote:2gcgjc7r]
[quote:2gcgjc7r]Tokenizer("The sun rises in the east.")
Tokenizer("Cats are furry animals.")
Tokenizer("Water freezes at zero degrees... |
random sentences generator | Dear Antonio,
Thank you, it works.
And thank you very much for your research and development work and for exploring new techniques for us.
Best regards,
Otto |
random with a dbf | I have a dbf where there is a field ( codice)
how I can load an random number to load a record
Regards |
random with a dbf | You may use nRandom( <nRange> ) --> nValue to create random numbers. |
random with a dbf | thanks antonio
but this func is of fw or harbour ? |
random with a dbf | FW/FWH |
random with a dbf | Silvio
Try the folowing:
[code:28n4g6lo]
FUNCTION Unique()
LOCAL cNumeric:= STR (HB_RANDOMINT(1,10000) ,5)
// You may use any number instand of 10000
cNumeric := STRTRAN (cNumeric ," ","0")
RETURN( cNumeric)
[/code:28n4g6lo]
Regards
Dionisis |
random with a dbf | thanks but I must create a random number from a file dbf
on the file dbf i have a numeric field ( codice) :
use IMG alias IMG
totale:= img->(reccount())
Number:=nRnadom(totale)
Go Number
have you another idea ? |
random with a dbf | Hello Silvio again
Try the following :
[code:1wzjs16i]
FUNCTION Unique(nTotale)
RETURN( HB_RANDOMINT(1,nTotale))
[/code:1wzjs16i]
Regards
Dionisis |
random with a dbf | thanks to all |
range date : the return !!! | To james and Otto specially,
There is an error on dbfilter when we made the dbfilter to search the init date and final date :
You be careful with my reasons
A Hotel Ask to chalet :
2 umbrellas for the weekend from 11.07 to 12.07 ( the hotel wants the number 1 and 2)
1 umbrella forse the weekend from 18.07 to 19.07... |
range date : the return !!! | Silvio,
I guess I don't really understand what you are trying to do.
I thought that the start and end dates you were entering into the filter was the date range that the user wished to reserve. For example the dates entered are 01.06.09 - 05.06.09 would mean that the customer wanted to reserve all the days between th... |
range date : the return !!! | Hello james,
>I have never seen a beach with reserved umbrellas here in the US
The high beach culture beside the friendly people is the reason for the success of the Adriatic tourism.
As far as I know usually one “bagno” has up to around 150 umbrellas. This “square mile” normally gives work to a whole family. Every d... |
range date : the return !!! | Otto,
150 umbrelas ?
I saw on my town 1200, 1600 , 3000 ...5000 umbrellas not 150 ....!!!
If you search with google map this location "Roseto degli Abruzzi" you can see all beaches
James,
Many chalet reserve many umbrellas for the hotels
Hotels ask to chalet 60/70 umbrellas for a specific period
this umb... |
range date : the return !!! | james,
>I thought that the start and end dates you were entering into the filter was the date range that the user wished to reserve. For >example the dates entered are 01.06.09 - 05.06.09 would mean that the customer wanted to reserve all the days between those >dates
[b:2gpcz2bb]yes [/b:2gpcz2bb]
>Are you needing... |
range date : the return !!! | Hello Silvio,
I read that in Emilia Romagna (110km coast) are 252.800 umbrellas which are divided into 1426 “bagni” which is ca. 180 per "bagno".
Maybe it is different where you are. But the typical Adriatic beach around Rimini should be like that.
This is my experience too spending my holiday on the Adriatic sea s... |
range date : the return !!! | Hello Silvio,
we use a so called “Dispo-sheet” where we have the room categories and show the vacancies for each day.
Maybe you can do it like that.
Best regards,
Otto
[img:31li4oe6]http://www.atzwanger-software.com/fw/dispo.jpg[/img:31li4oe6] |
range date : the return !!! | Otto,
>>>I have never seen a beach with reserved umbrellas here in the US
I hope you didn't take my comment that I was being critical--it sounds a lot nicer than having to lug your own umbrella and chairs to the beach as we do here. And the older I get, the nicer that sounds!
Differences in culture are what make tra... |
range date : the return !!! | Silvio,
[quote:91dl1625]I thought that the start and end dates you were entering into the filter was the date range that the user wished to reserve. For >example the dates entered are 01.06.09 - 05.06.09 would mean that the customer wanted to reserve all the days between those >dates
yes
>Are you needing to actuall... |
range date : the return !!! | James,
I think I cannot create thi control because is too hard
We can think to another solution
Perhaps if I create a new father dbf where I can insert the number of umbrellas and all dates from May to September ( this is the period of summer booking from 17.05 to 12.09) when I insert a booking order I can save th... |
range date : the return !!! | Otto,
How I can make to show on YOUR CLASS datepick FROM JANNUARY TO DECEMBER WHEN A UMBRELLAS IS FREE OR NOT ? |
range date : the return !!! | Silvio,
>I think I cannot create thi control because is too hard
Yes you can! You just have to define the solution you want, then start working on it a step at a time.
[i:3btdj32h]A journey of a thousand miles begins with a single step. -Lao-tzu[/i:3btdj32h]
You have lots of friends here to help.
The step you nee... |
range date : the return !!! | Silvio,
Here I have made a work flow diagram for the problem. Now all you have to do is write the code.
[url:2s9638k4]http://blueballfixed.ytmnd.com[/url:2s9638k4]
James |
range date : the return !!! | I undestand there are many factor to create a funcionally power control of date.
On Hotel application it can be easy because we can see day by day but for the night of each days ther eI can use Tplan to create a easy tableau
Instead on Beach application I have many factors : One day , Morning, Afternoon, ....
I... |
range date : the return !!! | Silvio,
[quote:2ojwpuoa]It is so Hard and for each umbrellas there many orders : for sample I can have a umbrellas with 127 orders different if we think only to the morning order ( 254 if we think for the morning and afternoon, only 127 for the normal day) because there are 127 day on summer period ( from 16.05 to 12s... |
range date : the return !!! | Silvio,
Could you try this code ?
It should be a good starting
[code=fw:13baq033]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">function</span> Main<span style="color: #000000;">(</span><span style="color: #000000;">)</span><br /><br /><span style="color: #00C800... |
range date : the return !!! | Silvio,
I was looking at your problem again.
What is the fieldname for the umbrella number? Is it CAMERA? Literally translated it seems to be "room" in English.
If not, then also what is the CAMERA field for?
James |
range date : the return !!! | yes |
range date : the return !!! | Ok, then I wonder why there are multiple reservations for the same date range for the same umbrella? In some cases, I see three records for the same date range. I know you mentioned morning and afternoon reservations, but that would account for only two.
Is there a field for morning, afternoon?
How did the sample d... |
rango dates | I insert on a dialog two control datepick to select two dates
one initial and the second the end date
Now I want to control on an archive if there is a booking order for that period of dates
I have [b:vf5agrum]test->dal [/b:vf5agrum]( initial date) and [b:vf5agrum]test->al [/b:vf5agrum]end date
How I can make ... |
rango dates | Silvio,
maybe you can try like this:
[code=fw:3ug4as4c]<div class="fw" id="{CB}" style="font-family: monospace;"><br />initialdate < test->da .AND. end > test->dal<br /> </div>[/code:3ug4as4c] |
rango dates | Otto not is easy,
On booking reservation I have two field cotiza->dal and COtiza ->al
If the user select the initial date and the end date
I want show all umbrellas and each umbrellas must check into booking archive if have a reservation
I made a test sample but it not run
[code=fw:qkeg46ix]<div class="fw" id="{... |
rango dates | I try also with this :
IF alltrim(COTIZA->tipoattrez)=XTIPO .AND. COTIZA->CAMERA=n ;
.AND. COTIZA->DAL<=(dDataIniziale) .AND. COTIZA->AL>=(dDataFinale) .or. ;
alltrim(COTIZA->tipoattrez)=XTIPO .AND. COTIZA->CAMERA=n .AND. ;
dDataIniziale<= COTIZA->DAL .AND. COTIZA->AL<= dDataFinale
... |
rango dates | Try this:
[code=fw:2ofsfohc]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">IF</span> alltrim<span style="color: #000000;">(</span>COTIZA->tipoattrez<span style="color: #000000;">)</span>=XTIPO .AND. COTIZA->CAMERA=n ;<br />.AND. COTIZA->DAL<=<span style="color: #000000;... |
rango dates | Actually, this would be better:
[code=fw:2rdp3p7r]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">IF</span> alltrim<span style="color: #000000;">(</span>COTIZA->tipoattrez<span style="color: #000000;">)</span>=XTIPO .AND. COTIZA->CAMERA=n .AND.;<br /> <span style="color... |
rango dates | good Now It seem go good |
rango dates | Glad to hear it.
You can still speed it up considerably by designing the proper index and using it to filter out some of the records before doing your date range test.
James |
rango dates | SORRY,
I WRITE WRONG ..
IT NOT RUN GOOD |
rango dates | Hello Silvio
have you tried my code. This is the code for occuied:
initialdate < test->da .AND. end > test->dal
You should use it like that:
if initialdate < test->da .AND. end > test->dal
else
here are your add's
endif
What is the result?
Regards,
Otto |
rango dates | Otto,
>if initialdate < test->da .AND. end > test->dal
It is more complicated than that. He needs to know if the new date range overlaps any existing date range by one or more days. I thought the one I posted would do it, but I haven't tested it. Silvio says it still isn't working. I will test it here.
Regards,
Jame... |
rango dates | james I sent yesterday the test files to YOU |
rango dates | Otto and James I explain the code :
[code=fw:1irw2l72]<div class="fw" id="{CB}" style="font-family: monospace;"> <br /><br /><span style="color: #00C800;">If</span> aData<span style="color: #000000;">[</span>nY,nX<span style="color: #000000;">]</span>== <span style="color: #ff0000;">"O"</span><... |
rango dates | Silvio,
This sample code seems to be working fine. There is one matching record:
Record no. 7, DAL=06/13/2009, AL=06/14/2009
James
[code=fw:3kwwahgy]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"fivewin.ch"</span><br /><br />re... |
rango dates | My previous code was using the American date format. Here it is using the Italian date format.
Regards,
James
[code=fw:3honaq0j]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"fivewin.ch"</span><br /><br />request dbfcdx<br />REQUE... |
rango dates | Hello James,
with your filter you are testing if there is a booking exactly in this period.
If you change for example the booking
00002 Cliente H 3 1 01-01-2009 31-12-2009 .F. 1 0434 A 24-07-2002 GIOVANNI BIANCHI to a whole year booking your code still returns 1... |
rango dates | Otto,
>with your filter you are testing if there is a booking exactly in this period.
No, I am testing to see if the new date range overlaps any existing date range.
>If you change for example the booking
>00002 Cliente H 3 1 01-01-2009 31-12-2009 .F. 1 0434 A 24-07-2002 GIOVANNI BIANCHI to a whole >year booking yo... |
rango dates | Jamse,
[quote:1f57m92e]>00002 Cliente H 3 1 01-01-2009 31-12-2009 .F. 1 0434 A 24-07-2002 GIOVANNI BIANCHI to a whole >year booking your code still returns 1.
As it should. There is one record that overlaps the new range.
[/quote:1f57m92e]
but if you change this record to a booking over the whole season shouldn'd th... |
rango dates | Otto,
>but if you change this record to a booking over the whole season shouldn'd there then be 2:
>the whole season booking and the booking from 14-15.6.2009
Other than the dates, there are two other criteria which that record (recno 2) doesn't meet.
>I am not clear what the msginfo should report: the free places o... |
rango dates | Hello james,
I try to understand the conditions.
( DAL >= dIniziale .AND. DAL <= dFinale ) .OR. ( AL >= dIniziale .AND. AL <= dFinale )
Here a little graphic showing what I mean:
[img:2uv71mu2]http://www.atzwanger-software.com/fw/james.jpg[/img:2uv71mu2]
FALSE ( DAL >= dIniziale .AND. D... |
rango dates | James ,
I try with this :
[code=fw:rv3a6e8e]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br /> <span style="color: #00C800;">If</span> aData<span style="color: #000000;">[</span>nY,nX<span style="color: #000000;">]</span>== <span style="color: #ff0000;">"O"</span><br /> ... |
rango dates | Otto,
How You control if a room is free in your Whotel application ?
I want a room from 16.08.2009 to 20.08.2009 : your application not control it ? |
rango dates | Otto,
>Both parts of the condition return false but the period is occupied.
While trying to fall asleep last night, I realized that my previous filter was not covering all conditions. You have pointed out one of those conditions and you are correct. There are more conditions also.
I am going to think about this some... |
rango dates | Silvio and Otto,
OK, after one cup of coffee (but no testing), I think this filter covers all conditions:
[code=fw:19qz70d1]<div class="fw" id="{CB}" style="font-family: monospace;"> set filter <span style="color: #0000ff;">to</span> alltrim<span style="color: #000000;">(</span>tipoattrez<span style="color: #00... |
rango dates | OK, testing seems to confirm that the filter is working. If you use these test dates:
dIniziale:= ctod("14/01/2009")
dFinale := ctod("15/12/2009")
You will get nRecs=6 which is all records in the database that also meet the first two criteria (the non-date criteria). Before adding Otto's filter, nRecs would ha... |
rango dates | Otto,
>Here a little graphic showing what I mean:
>FALSE ( DAL >= dIniziale .AND. DAL <= dFinale )
>FALSE ( AL >= dIniziale .AND. AL <= dFinale )
>Both parts of the condition return false but the period is occupied.
You are referring to my first filter, note that I changed it later to:
[code=fw:24kr12j6]<div clas... |
rango dates | Hello James,
why do you think that the condition I posted should not work?
Best regards,
Otto |
rango dates | Otto,
>why do you think that the condition I posted should not work?
>( dIniziale < AL .AND. dFinale > DAL )
Well because I tested it and it didn't as I pointed out in a previous message.
I have looked at it again and I realized that I was not seeing it properly. I was confusing DAL and AL. What I was thinking you ... |
rango dates | Hello James,
thank you for your answer.
> I was confusing DAL and AL.
James, therefore I ask what you show in the msginfo.
It was not clear from the question Silvio posted what he really wants:
the free umbrellas or the occupied.
This with the equal signs is much depending of the purpose.
Silvio needs free umbrellas ... |
rango dates | Otto,
>> I was confusing DAL and AL.
>James, therefore I ask what you show in the msginfo.
>It was not clear from the question Silvio posted what he really wants:
>the free umbrellas or the occupied.
It appears that he was looking to tell if an umbrella was reserved for a date range. However, it would seem to be a be... |
rango dates | JAMES,
set filter to alltrim((oDPre)->tipoattrez)) == cTipoAttrez .AND. (oDPre)->CAMERA == n ;
.AND. ;
(;
( dDataIniziale >= (oDPre)->DAL .AND. dDataIniziale <= (oDPre)->AL ) .OR. ;
( dDataFinale >= (oDPre)->DAL .AND. dDataFinale <= (oDPre)->AL ) .OR. ;
... |
rango dates | I call oDpre because
oDPre:=Open_Dbf("Cotiza")
I use this function from 7 year |
rango dates | James,
this is the last ?
set filter to alltrim((oDPre)->tipoattrez)) == cTipoAttrez .AND. (oDPre)->CAMERA == n ;
.AND. ;
(;
( dDataIniziale >= (oDPre)->DAL .AND. dDataIniziale <= (oDPre)->AL ) .OR.;
( dDataFinale >= (oDPre)->DAL .AND. dDataFinale <= (oDPre)->AL ) .OR. ;
( dDataInizia... |
rango dates | Silvio,
I don't see the error, but use the simpler filter like this:
set filter to alltrim((oDPre)->tipoattrez)) == cTipoAttrez .AND. (oDPre)->CAMERA == n ;
.AND. ( dIniziale <= (oDPre)->AL .AND. dFinale >= (oDPre)->DAL )
and see if the error goes away.
However, if I may make another suggestion. You are using this ... |
rango dates | Silvio,
[quote:1g7i6akz]I call oDpre because
oDPre:=Open_Dbf("Cotiza")
I use this function from 7 year.[/quote:1g7i6akz]
I understand, I was just pointing out that the name "oDPre" signifies that it is an object and you are returning a character data type from the function, not an object. So, oDPre should really be c... |
rango dates | I made :
set filter to alltrim((oDPre)->tipoattrez)) == cTipoAttrez .AND. (oDPre)->CAMERA == n ;
.AND. ( dDataIniziale <= (oDPre)->AL .AND. dDataFinale >= (oDPre)->DAL )
[b:2mo0bw95]Compiling 'source\RIV220.prg'...
source\RIV220.prg(261) Error E0030 Syntax error: "syntax error at 'FILTER'"[/b:2mo0bw95] |
rango dates | Silvio,
You have an extra paren (shown in red).
set filter to alltrim((oDPre)->tipoattrez)[color=#FF0000:1ulwglfp])[/color:1ulwglfp] == cTipoAttrez .AND. (oDPre)->CAMERA == n ;
.AND. ( dDataIniziale <= (oDPre)->AL .AND. dDataFinale >= (oDPre)->DAL )
James |
rango dates | sorry... thanks..here there is very hot....
but I want understand
On a dialog I have a similar problem :
to insert a new order I want to control for sample
if the umbrella number 264 have an order on period date I want found
I know and the user insert this data :
the number of umbrellas (n)
the type of umb... |
rango dates | perhaps I found the solution :
Function Isfree(dData1,dData2,n,type)
Local lvalue:=.f.
(oDPre)->(OrdSetFocus(3)) // order on umbrellas numbers
(oDPre)->(DbGoTop())
DO WHILE !(oDPre)->(EoF())
IF alltrim((oDPre)->tipoattrez) == type .AND. (oDPre)->CAMERA == n ;
.AND. ( dData1 <= (oDPre)->AL .AND. dData2 >= (oDPre... |
rango dates | Silvio,
this is the solution, I have shown You in Your other post.
But don't do DBGOTOP. Use DBSEEK, because there is a index and EXIT the loop after Number-change.
Look at Your other post !
Best Regards
Uwe <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" alt=":lol:" title="Laughing" /><!-- s:lol: --> |
rango dates | james,Otto,
I try to use your code and run ok but I'm afraid that not all cases have been closed
is OK for some case but not all cases, and I fear that the end user will have problems when he 'll use my application |
rango dates | Hello Silvio,
Please post some screen shots what you really want to reach and a test program with the current source.
Best regards,
Otto |
rango dates | Silvio,
[quote:shjrt4sr]I try to use your code and run ok but I'm afraid that not all cases have been closed
is OK for some case but not all cases[/quote:shjrt4sr]
We need an example of a case where it doesn't work.
James |
rango dates | Silvio,
Try this:
[code=fw:15mq8g3t]<div class="fw" id="{CB}" style="font-family: monospace;"> SET FILTER ...<br /> <span style="color: #000000;">(</span>oDPre<span style="color: #000000;">)</span>-><span style="color: #000000;">(</span>DbGoTop<span style="color: #000000;">(</span><span style="c... |
rao - xbrowse with nMarqueeStyle 7 | Rao, using the mouse scrolling in a browse with nMarqueeStyle 7 (win7 bar)
the border of cursorof row move correct, but the color background no.
[img:3pobvk2t]http://i.imgur.com/O9oh7UA.png[/img:3pobvk2t]
[code=fw:3pobvk2t]<div class="fw" id="{CB}" style="font-family: monospace;"> <span style="color:... |
rao - xbrowse with nMarqueeStyle 7 | If you are not using a very old version of FWH. it is not necessary to use oCol:bPaintText for display of Win7bars. It is enough if you specify the MarqueeStyle.
bPaintText was recommended before we included painting of win7bars within xbrowse.
Please try removing bPaintText and see if your version supports it. Also... |
raro error con radio button | buenos días
comento mi problema ya que sin ningún cambio de código lo empezó a hacer
al clickear sobre el radio elegido, desaparece el texto
alguna idea del origen del problema?
el unico cambio fue que pasé de compilar con fwh612 a fwh1101
gracias de antemano
Pablo |
raro error con radio button | hola, mira se ayuda:
<!-- m --><a class="postlink" href="http://www.fivewin.com.br/forum/topic.asp?TOPIC_ID=18815">http://www.fivewin.com.br/forum/topic.a ... C_ID=18815</a><!-- m --> |
raro error con radio button | Gracias
ya logré solucionarlo con la informacion del post |
raro funcionamiento de la tecla escape | Hola,En el ejemplo que muestro mas abajo se define una ventana mdi child y dentro de ella incrustado una barra de botones, una barra outlook 2003, un splitter y un dialogo.El problema viene a al pulsar la tecla "ESC", esta hace que se evalue 2 veces el valid de la ventana mdi child.En el dialogo hay un get:[code:3vd3k5... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.