Search found 231 matches

by PedroAlex
Sat Jan 26, 2013 3:48 am
Forum: eXpress++ Support
Topic: Invoke a api / webservice.
Replies: 9
Views: 13041

Invoke a api / webservice.

How invoke a webservice from xBase / eXpress.

For example to invoke this webservice

http://www.nif.pt/?json=1&q=503949574

'503949574' is a Tax Number and the webservice returns company data.

Any sample helps.

Thanks in advance.
Respects.

Pedro Alex.
by PedroAlex
Wed Mar 14, 2012 5:20 am
Forum: eXpress++ Support
Topic: How control DCBROWSE Cursor Row Color
Replies: 4
Views: 8099

Re: How control DCBROWSE Cursor Row Color

Tom. Many thanks for feed Back. On Q1 your comment give me a new light for this case. but On Q2 maybe my explanation are not correct. I just need a way to disable some especific rows to be hilited by the corsor row. I just need show the line ( a dbf register or a array row ) but that row can not be ...
by PedroAlex
Tue Mar 13, 2012 5:10 am
Forum: eXpress++ Support
Topic: How control DCBROWSE Cursor Row Color
Replies: 4
Views: 8099

How control DCBROWSE Cursor Row Color

Hello! Question 1 We can define and control the dcbrowse cells and rows colors. We can set a invisible row by color{0,0} but when the CURSORMODE XBPBRW_CURSOR_ROW are over this line the characters are visible by the colors cursor row. it is possible define the cell colors when it is selected by the ...
by PedroAlex
Wed Dec 14, 2011 8:51 am
Forum: eXpress++ Support
Topic: Background Colors in Multirow Browsing
Replies: 6
Views: 10742

Re: Background Colors in Multirow Browsing

Leon.

Post your dcbrowseline code , and a picture to see the aspect.

I use this sample :
DCBROWSECOL DATA { {|| FOCAB->NOPREC }, {|| FOCAB->MATRICULA}} HEADER "Recebido/Matricula" PARENT oBrowFObra WIDTH 12 COLOR {|| { Nil, GraMakeRGBColor({173,216,230}) } }

and it works fine ..

regards
pedro
by PedroAlex
Tue Dec 13, 2011 7:53 am
Forum: eXpress++ Support
Topic: Background Colors in Multirow Browsing
Replies: 6
Views: 10742

Re: Background Colors in Multirow Browsing

Leon.

Try this

DCBROWSECOL FIELD FOCAB->NUMERO HEADER "Codigo" PARENT oBrowFObra WIDTH 4 COLOR {|| { Nil, GraMakeRGBColor({144,238,144}) } }

Regards
Pedro
by PedroAlex
Mon Dec 12, 2011 3:10 am
Forum: eXpress++ Support
Topic: Background Colors in Multirow Browsing
Replies: 6
Views: 10742

Re: Background Colors in Multirow Browsing

Leon, try this

DCBROWSECOL FIELD FOCAB->NUMERO HEADER "Codigo" PARENT oBrowFObra WIDTH 4 COLOR { Nil, GraMakeRGBColor({255,255,224}) }


Regards
Pedro
by PedroAlex
Wed Nov 09, 2011 8:41 am
Forum: eXpress++ Support
Topic: Disable Dc_Dot()
Replies: 4
Views: 8325

Re: Disable Dc_Dot()

Ok. Roger.

Thanks for the explanations..

Pedro
by PedroAlex
Mon Nov 07, 2011 4:25 am
Forum: eXpress++ Support
Topic: Disable Dc_Dot()
Replies: 4
Views: 8325

Re: Disable Dc_Dot()

Leon. Thanks for feedBack. 1 - I found DC_DotHotKey(0). Its Works!, but is this correct!? 2 - To disable the express++ runtime error messages I call my personal errorSsys() function after the firt dcread gui and it works!, but exist a way to disable the express runtime errors window!? Thanks Pedro
by PedroAlex
Mon Nov 07, 2011 3:52 am
Forum: eXpress++ Support
Topic: Disable Dc_Dot()
Replies: 4
Views: 8325

Disable Dc_Dot()

Hello!

How disable automatic functions running on app like Dc_Dot(), Dc_ErrorGui() and others..?

Thanks..
best Regards
Pedro
by PedroAlex
Fri Oct 07, 2011 10:29 am
Forum: eXpress++ Support
Topic: Display a Splash Screen
Replies: 1
Views: 4791

Display a Splash Screen

Hi, Xbase++ applications require some time to load and then initialise the runtime system before the application dialog can be displayed. A good solution is display a splashscreen to the user knows something is happening. Anybody have any experience on this process..? Any idea, comment or some sampl...