Hi,
I started programming with Lite-C two days ago trying Workshop tutorials. I wanted to create a PANEL as run-time like this:
----------------------------------------------
PANEL* panel_for_3d; // defination
..................
...................
if we press on a button, following code is activated in programme
------------------------------------------
panel_for_3d=pan_create("bmap=main2.pcx",4);
panel_for_3d.pos_x=560;
panel_for_3d.pos_y=420;
panel_for_3d.flags= SHOW;
---------------------------------------------
It works very well.. No problem. But then, I wanted to put a vertical slider on this panel using "vslider". But I got complier error message.. I couldn't find
any way to put vslider on this panel. For example, following code was useless:
panel_for_3d.vslider (16, 71, 90, "slider.pcx", 20, 100, slider_var);
Can anyone help me please? I like this enginee very much but I think, It should have more information for beginners. Thanks in advence..