Displaying images without stopping

This forum is for eXpress++ general support.
Post Reply
Message
Author
User avatar
Eugene Lutsenko
Posts: 1649
Joined: Sat Feb 04, 2012 2:23 am
Location: Russia, Southern federal district, city of Krasnodar
Contact:

Displaying images without stopping

#1 Post by Eugene Lutsenko »

I output images using the function:

Code: Select all

@ 2,1 DCSTATIC TYPE XBPSTATIC_TYPE_RECESSEDBOX SIZE X_MaxW, Y_MaxW PIXEL OBJECT oStatic
       DCREAD GUI FIT EVAL {||_PresSpace4223(oStatic )} ;
       TITLE L('4.2.2.3. Агломеративная древовидная кластеризация классов.   (C) Универсальная когнитивная аналитическая система "ЭЙДОС-X++"')
the Disadvantage is that after each image is output, you have to click on the Esc to continue. The images a lot. Is there no way to output images non-stop without having to press a key?

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

Re: Displaying images without stopping

#2 Post by rdonnay »

Is there no way to output images non-stop without having to press a key?
What do you mean by output?

Try this:

DCREAD GUI FIT EVAL {||_PresSpace4223(oStatic ), DC_ReadGuiEvent(DCGUI_EXIT_ABORT,GetList)} ;
The eXpress train is coming - and it has more cars.

User avatar
Eugene Lutsenko
Posts: 1649
Joined: Sat Feb 04, 2012 2:23 am
Location: Russia, Southern federal district, city of Krasnodar
Contact:

Re: Displaying images without stopping

#3 Post by Eugene Lutsenko »

I would like to not have to press ESC to continue

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

Re: Displaying images without stopping

#4 Post by rdonnay »

DCREAD GUI FIT EVAL {||_PresSpace4223(oStatic ), DC_ReadGuiEvent(DCGUI_EXIT_ABORT,GetList)} ;

or

DCREAD GUI FIT EVAL {|oDlg|_PresSpace4223(oStatic ), PostAppEvent(xbeP_Keyboard,xbeK_ESC,,oDlg)} ;
The eXpress train is coming - and it has more cars.

User avatar
Eugene Lutsenko
Posts: 1649
Joined: Sat Feb 04, 2012 2:23 am
Location: Russia, Southern federal district, city of Krasnodar
Contact:

Re: Displaying images without stopping

#5 Post by Eugene Lutsenko »

Thanks, Roger!

I did everything like in your graphics test where you demonstrated GetPixel() and other features. Everything turned out well. Many thanks! Well, when you helps master!

Post Reply