Page 1 of 2

vcrl

PostPosted: Thu Apr 08, 2010 7:40 am
by driessen
Hello,

Can anyone tell me what happened to "V I A C O R A L" and "http://www.V I A O P E N.com" ?
I noticed that this website is blocked by a username and password.

I put the name in capitals and with spaces between the letters because this word is automatically changed in "noway" if I type it in normal letters without the spaces. Never seen such a thing before (I wonder why?).

Does this add-on still exist ?

How can I reach them ?

Thank you.

Re: V I A C O R A L

PostPosted: Thu Apr 08, 2010 10:32 am
by Antonio Linares
Michel,

We blocked their name because they were not acting fair after so many time supporting and helping Fernando

We really don't know about them these days, sorry

Re: V I A C O R A L

PostPosted: Thu Apr 08, 2010 10:33 am
by driessen
Antonio,

Thanks for the information.

Re: V I A C O R A L

PostPosted: Fri Apr 09, 2010 5:40 pm
by mgsoft
Antonio,

Why Fivewin Buttons look 2007 do not look as V I A C O R A L oneĀ“s?. :D

Re: V I A C O R A L

PostPosted: Fri Apr 09, 2010 6:41 pm
by Antonio Linares
What visual effects do you mean ?

Transparency, shadows, etc ?

Re: V I A C O R A L

PostPosted: Fri Apr 09, 2010 7:27 pm
by driessen
Meanwhile I was able to contact Fernando of Via Open (Via Coral).

He was able to give me support.

Just to let you all know.

Re: V I A C O R A L

PostPosted: Sun Apr 11, 2010 1:54 pm
by mgsoft
Antonio,

The colour of the buttons:

Image

In left one, the mouse is over it. The right colour is the normal colour, but FW does not look the same.

Thanks :D

Re: V I A C O R A L

PostPosted: Sun Apr 11, 2010 1:56 pm
by nageswaragunupudi
mgsoft wrote:Antonio,

The colour of the buttons:

http://img651.imageshack.us/img651/3971/noway.png

In left one, the mouse is over it. The right colour is the normal colour, but FW does not look the same.

Thanks :D

I can not see the image

Re: V I A C O R A L

PostPosted: Sun Apr 11, 2010 2:48 pm
by Daniel Garcia-Gil
Hello mgsoft

it's a sample using 1) RBBTN, 2) BTNBMP

RBBTN
Image

BTNBMP
Image

http://www.sitasoft.net/fivewin/samples/testbtn0.rar

Code: Select all  Expand view

#include "fivewin.ch"
#include "ribbon.ch"

FUNCTION Main()
   LOCAL oWnd
   LOCAL oBtn1, oBtn2, oBtn3, oBtn4

   DEFINE WINDOW oWnd
   
   @ 30, 30  RBBTN oBtn1 PROMPT "&Aceptar" OF oWnd BORDER SIZE 100, 30 ROUND CENTER LINECOLORS RGB( 255,255,255 ), RGB( 118, 146, 184 )
   @ 30, 140 RBBTN oBtn2 PROMPT "&Cancelar" OF oWnd BORDER SIZE 100, 30 ROUND CENTER
   
   @ 70, 30 BTNBMP oBtn3 PROMPT "&Aceptar" OF oWnd 2007 SIZE 100,30 CENTER
   oBtn3:bClrGrad := { | lInvert | If( lInvert, ;
                                   { { 1/2, nRGB( 255, 255, 251 ), nRGB( 255, 237, 178 ) }, ;
                                     { 1/2, nRGB( 255, 218,  103 ), nRGB( 255, 233, 162 ) }  ;
                                   }, ;
                                   { { 1/2, nRGB( 232, 241, 252 ), nRGB(  232, 241, 252 ) }, ;
                                     { 1/2, nRGB( 210, 225, 244 ), nRGB( 235, 243, 253 ) }  ;
                                   } ) }
   oBtn3:lBoxSelect = .F.
   
   @ 70, 140 BTNBMP oBtn4 PROMPT "&Cancelar" OF oWnd 2007 SIZE 100,30 CENTER
   oBtn4:bClrGrad := { | lInvert | If( lInvert, ;
                                   { { 1/2, nRGB( 255, 255, 251 ), nRGB( 255, 237, 178 ) }, ;
                                     { 1/2, nRGB( 255, 218,  103 ), nRGB( 255, 233, 162 ) }  ;
                                   }, ;
                                   { { 1/2, nRGB( 232, 241, 252 ), nRGB(  232, 241, 252 ) }, ;
                                     { 1/2, nRGB( 210, 225, 244 ), nRGB( 235, 243, 253 ) }  ;
                                   } ) }
   oBtn4:lBoxSelect = .F.
   

   
   ACTIVATE WINDOW oWnd
   
RETURN NIL


with fivewin you always will find support, we are a good developers team, and a excelent manager, teacher and friend (antonio)

Re: V I A C O R A L

PostPosted: Sun Apr 11, 2010 5:29 pm
by Otto
with fivewin you always will find support, we are a good developers team, and a excelent manager, teacher and friend (antonio)


It's a fact. Keep up the good work.

Best regards,
Otto

Re: V I A C O R A L

PostPosted: Sun Apr 11, 2010 6:14 pm
by hag
I agree with OTTO.

Re: V I A C O R A L

PostPosted: Mon Apr 12, 2010 2:21 am
by richard-service
Yes, I think so.
But how about TGet Chinese( 2 bytes ) within Winxp Theme and Unicode problem?

Re: V I A C O R A L

PostPosted: Mon Apr 12, 2010 8:21 am
by Antonio Linares
We will announce it when it gets ready

Re: V I A C O R A L

PostPosted: Mon Apr 12, 2010 10:02 am
by mgsoft
Daniel,

What we need is that the FW 2007 Buttons (REDEFINE BUTTON) looks like the picture I put and the sample you created.

The bue you use in FW 2007 Look is different ;)

Thanks :D

Re: V I A C O R A L

PostPosted: Mon Apr 12, 2010 2:16 pm
by nageswaragunupudi
I think FWH offers great flexibility to define colors of buttons. One way is to define bClrGrad of individual buttons to suit our taste

Or just use
Code: Select all  Expand view
SkinButtons()

at the beginning of our program which effects all buttons ( button, buttonbmp, btnbmp ) used in the entire application. If we like a different color combination, we can define the colors we like at the beginning in the SkinButtons() function and thats it. All buttons in our application have the look we want. What more we need?