Screenshots requested

This forum is for eXpress++ general support.
Message
Author
User avatar
pedroah
Posts: 28
Joined: Wed Nov 05, 2014 7:15 pm
Location: Dominican Republic
Contact:

Re: Screenshots requested

#41 Post by pedroah »

Hi Skiman

Yes it is....

User avatar
rdonnay
Site Admin
Posts: 4733
Joined: Wed Jan 27, 2010 6:58 pm
Location: Boise, Idaho USA
Contact:

Re: Screenshots requested

#42 Post by rdonnay »

Pedro -

I like what you have done with the ribbon bar. It's very simple and not cluttered but elegant looking.

Do you have a small code sample?

Roger
The eXpress train is coming - and it has more cars.

Wolfgang Ciriack
Posts: 479
Joined: Wed Jan 27, 2010 10:25 pm
Location: Berlin Germany

Re: Screenshots requested

#43 Post by Wolfgang Ciriack »

I removed the Codejock ribbonbar from my app, because it slow down the app and sometimes did not react anymore.
_______________________
Best Regards
Wolfgang

Cliff Wiernik
Posts: 605
Joined: Thu Jan 28, 2010 9:11 pm
Location: Steven Point, Wisconsin USA
Contact:

Re: Screenshots requested

#44 Post by Cliff Wiernik »

What are the values of these defines:

COLOR_BLACK
BD_KEYLIME

User avatar
rdonnay
Site Admin
Posts: 4733
Joined: Wed Jan 27, 2010 6:58 pm
Location: Boise, Idaho USA
Contact:

Re: Screenshots requested

#45 Post by rdonnay »

Look in \exp19\Samples\COLORVIEW\bdcolors.ch
The eXpress train is coming - and it has more cars.

User avatar
Auge_Ohr
Posts: 1407
Joined: Wed Feb 24, 2010 3:44 pm

Re: Screenshots requested

#46 Post by Auge_Ohr »

Wolfgang Ciriack wrote:I removed the Codejock ribbonbar from my app, because it slow down the app and sometimes did not react anymore.
i did not think "Codejock" is the Problem ... it is how Alaska handle activeX which is (very) slow ... and often "block" GUI Thread.

it does happend with XbpStatusbar() or XbpToolbar() when simulate "quick click" e.g. send 1000 PostAppEvent() to those Controls which based on M$ComCtl.OCX

you can use ot4xb and DispHPR instead of Alaska activeX when not need Notify Events.
greetings by OHR
Jimmy

bwolfsohn
Posts: 649
Joined: Thu Jan 28, 2010 7:07 am
Location: Alachua, Florida USA
Contact:

Re: Screenshots requested

#47 Post by bwolfsohn »

Roger,

This is a screenshot of one of our dialogs
lotonly.jpg
lotonly.jpg (174.27 KiB) Viewed 51504 times
Each of 3 main dialogs (buyer, lot, seller) opens up from the main menu in it's own window/thread. not modal.

My staff has just asked me about the possibility of placing all these dialogs into another window inside our application thusly:
BLStabs.jpg
BLStabs.jpg (239.28 KiB) Viewed 51504 times
I'm thinking each tab would probably still need to have it's own thread, (to avoid re-writing all the logic coming from each dialogs actions) but from a U.I. POV, it would be very good for our users.

might this be possible ??
Brian Wolfsohn
Retired and traveling around the country to music festivals in my RV.
OOPS.. Corona Virus, so NOT traveling right now...
http://www.breadmanrises.com
FB travel group: The Breadman Rises

User avatar
rdonnay
Site Admin
Posts: 4733
Joined: Wed Jan 27, 2010 6:58 pm
Location: Boise, Idaho USA
Contact:

Re: Screenshots requested

#48 Post by rdonnay »

I'm thinking each tab would probably still need to have it's own thread,
(to avoid re-writing all the logic coming from each dialogs actions) but from a U.I. POV,
it would be very good for our users.

might this be possible ??
That's an interesting idea and I think it is possible.

I will work on a sample program.
The eXpress train is coming - and it has more cars.

skiman
Posts: 1185
Joined: Thu Jan 28, 2010 1:22 am
Location: Sijsele, Belgium
Contact:

Re: Screenshots requested

#49 Post by skiman »

Hi,

I thought about this some weeks ago. Using TAB pages is a nice look and feel. A problem I see is that a user can now open easily the same function/thread several times. Then he can move the dialog to the place he wants. When using tab-pages, it won't be possible to do this?

This is the look I made. I'm wondering how a user could open Customers (klanten) two times. Now it opens two dialogs in a different thread.
mainscreen.jpg
mainscreen.jpg (91.59 KiB) Viewed 51492 times
The 'tabpages' are in fact buttons on a toolbar. The height of the toolbar is 38, at row 12 I put buttons with a height of 30. This way they look as a tab.
Best regards,

Chris.
www.aboservice.be

User avatar
Auge_Ohr
Posts: 1407
Joined: Wed Feb 24, 2010 3:44 pm

Re: Screenshots requested

#50 Post by Auge_Ohr »

when start with Codejock Control we realize that Windows "real" Tabpage ist different to Alaska XbpTabpage()
Windows API does have a TabControl ( WC_TABCONTROL ) but there is no "Body" ...

we did add a XbpStatic as Parent for Xbase++ and use SetParent() API to attach it to TabControl.
TabControl just switch Tabs and Hide()/Show() "Body" so in general it is possible to use a XbpDialog instead of XbpStatic as "Body"
greetings by OHR
Jimmy

Post Reply