vcrl

vcrl

Postby driessen » Thu Apr 08, 2010 7:40 am

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.
Regards,

Michel D.
Genk (Belgium)
_____________________________________________________________________________________________
I use : FiveWin for (x)Harbour v. 24.02 - Harbour 3.2.0 (February 2024) - xHarbour Builder (January 2020) - Bcc77
User avatar
driessen
 
Posts: 1399
Joined: Mon Oct 10, 2005 11:26 am
Location: Genk, Belgium

Re: V I A C O R A L

Postby Antonio Linares » Thu Apr 08, 2010 10:32 am

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
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
 
Posts: 41366
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: V I A C O R A L

Postby driessen » Thu Apr 08, 2010 10:33 am

Antonio,

Thanks for the information.
Regards,

Michel D.
Genk (Belgium)
_____________________________________________________________________________________________
I use : FiveWin for (x)Harbour v. 24.02 - Harbour 3.2.0 (February 2024) - xHarbour Builder (January 2020) - Bcc77
User avatar
driessen
 
Posts: 1399
Joined: Mon Oct 10, 2005 11:26 am
Location: Genk, Belgium

Re: V I A C O R A L

Postby mgsoft » Fri Apr 09, 2010 5:40 pm

Antonio,

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

Eduardo
User avatar
mgsoft
 
Posts: 422
Joined: Mon Aug 17, 2009 12:18 pm
Location: España

Re: V I A C O R A L

Postby Antonio Linares » Fri Apr 09, 2010 6:41 pm

What visual effects do you mean ?

Transparency, shadows, etc ?
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
 
Posts: 41366
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: V I A C O R A L

Postby driessen » Fri Apr 09, 2010 7:27 pm

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.
Regards,

Michel D.
Genk (Belgium)
_____________________________________________________________________________________________
I use : FiveWin for (x)Harbour v. 24.02 - Harbour 3.2.0 (February 2024) - xHarbour Builder (January 2020) - Bcc77
User avatar
driessen
 
Posts: 1399
Joined: Mon Oct 10, 2005 11:26 am
Location: Genk, Belgium

Re: V I A C O R A L

Postby mgsoft » Sun Apr 11, 2010 1:54 pm

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
Saludos,

Eduardo
User avatar
mgsoft
 
Posts: 422
Joined: Mon Aug 17, 2009 12:18 pm
Location: España

Re: V I A C O R A L

Postby nageswaragunupudi » Sun Apr 11, 2010 1:56 pm

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
Regards

G. N. Rao.
Hyderabad, India
User avatar
nageswaragunupudi
 
Posts: 10295
Joined: Sun Nov 19, 2006 5:22 am
Location: India

Re: V I A C O R A L

Postby Daniel Garcia-Gil » Sun Apr 11, 2010 2:48 pm

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)
User avatar
Daniel Garcia-Gil
 
Posts: 2365
Joined: Wed Nov 02, 2005 11:46 pm
Location: Isla de Margarita

Re: V I A C O R A L

Postby Otto » Sun Apr 11, 2010 5:29 pm

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
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org
https://www.facebook.com/groups/modharbour.club
********************************************************************
User avatar
Otto
 
Posts: 6045
Joined: Fri Oct 07, 2005 7:07 pm

Re: V I A C O R A L

Postby hag » Sun Apr 11, 2010 6:14 pm

I agree with OTTO.
Thank you
Harvey
hag
 
Posts: 598
Joined: Tue Apr 15, 2008 4:51 pm
Location: LOs Angeles, California

Re: V I A C O R A L

Postby richard-service » Mon Apr 12, 2010 2:21 am

Yes, I think so.
But how about TGet Chinese( 2 bytes ) within Winxp Theme and Unicode problem?
Best Regards,

Richard

Harbour 3.2.0dev (r2402101027) => Borland C++ v7.7 32bit
MySQL v5.7 /ADS v10
Harbour 3.2.0dev (r2011030937) => Borland C++ v7.4 64bit
User avatar
richard-service
 
Posts: 771
Joined: Tue Oct 16, 2007 8:57 am
Location: New Taipei City, Taiwan

Re: V I A C O R A L

Postby Antonio Linares » Mon Apr 12, 2010 8:21 am

We will announce it when it gets ready
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
 
Posts: 41366
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: V I A C O R A L

Postby mgsoft » Mon Apr 12, 2010 10:02 am

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
Saludos,

Eduardo
User avatar
mgsoft
 
Posts: 422
Joined: Mon Aug 17, 2009 12:18 pm
Location: España

Re: V I A C O R A L

Postby nageswaragunupudi » Mon Apr 12, 2010 2:16 pm

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?
Regards

G. N. Rao.
Hyderabad, India
User avatar
nageswaragunupudi
 
Posts: 10295
Joined: Sun Nov 19, 2006 5:22 am
Location: India

Next

Return to FiveWin for Harbour/xHarbour

Who is online

Users browsing this forum: Maurizio and 32 guests