I'm using PFC with PB 11 I have a datawindow control with its resize service working. Now I want resize the controls within the datawindow ie columns I thought the resize service would do. But database columns does not adjust to full screen Lee Thanks Alex B.
![]() |
0 |
![]() |
Have you called of_register() to register the columns (and other DataWindow objects) with the service to "tell" it how to resize each and/or how much to resize them? -- John Strano - Sybase Technology Evangelist <Lee Sayed> wrote in message news:475b074a.2357.1681692777@sybase.com... > I'm using PFC with PB 11 > I have a datawindow control with its resize service working. > > Now I want resize the controls within the datawindow ie > columns > > I thought the resize service would do. But database columns > does not adjust to full screen > > Lee > > > > Thanks > > > > Alex B.
![]() |
0 |
![]() |
I wrote following in the window open event inv_resize.of_Register(dw_1, 0, 0, 100, 100) Do I need to register each columns? I am setting datawindow objects at runtime.Also there are tab and tabpages which are set at runtime. Thanks > Have you called of_register() to register the columns > (and other DataWindow objects) with the service to > "tell" it how to resize each and/or how much to resize > them? > > -- > John Strano - Sybase Technology Evangelist > > > <Lee Sayed> wrote in message > > news:475b074a.2357.1681692777@sybase.com... I'm using > > PFC with PB 11 I have a datawindow control with its > resize service working. > > > Now I want resize the controls within the datawindow ie > > columns > > > > I thought the resize service would do. But database > > columns does not adjust to full screen > > > > Lee > > > > > > > > Thanks > > > > > > > > Alex B. > >
![]() |
0 |
![]() |
Yes, you'll need to register the columns and any other dwobject that you'll want to "participate" in the resizing. The documentation for n_cst_dwsrv_resize will help get you started. ======================================== Examples for Syntax 1 Specify a DWObject variable and resize percentages This example calls the of_Register function: DWObject ldwo_obj ldwo_obj = this.Object.emp_lname this.inv_resize.of_Register & (ldwo_obj, inv_resize.0, 0, 50, 50) ldwo_obj = this.Object.emp_fname this.inv_resize.of_Register & (ldwo_obj, 100, 0, 50, 50) this.of_SetTransObject(SQLCA) this.of_Retrieve() ======================================== Examples for Syntax 2 Specify a DWObject variable and resize method This example calls the of_Register function: DWObject ldwo_obj ldwo_obj = this.Object.comments this.inv_resize.of_Register & (ldwo_obj, inv_resize.SCALEBOTTOM) this.of_SetTransObject(SQLCA) this.of_Retrieve() ======================================== -- John Strano - Sybase Technology Evangelist <Lee Sayed> wrote in message news:475d6330.72be.1681692777@sybase.com... >I wrote following in the window open event > inv_resize.of_Register(dw_1, 0, 0, 100, 100) > > Do I need to register each columns? > I am setting datawindow objects at runtime.Also there are > tab and tabpages which are set at runtime. > > Thanks > > >> Have you called of_register() to register the columns >> (and other DataWindow objects) with the service to >> "tell" it how to resize each and/or how much to resize >> them? >> >> -- >> John Strano - Sybase Technology Evangelist >> >> >> <Lee Sayed> wrote in message >> > news:475b074a.2357.1681692777@sybase.com... I'm using >> > PFC with PB 11 I have a datawindow control with its >> resize service working. > >> > Now I want resize the controls within the datawindow ie >> > columns >> > >> > I thought the resize service would do. But database >> > columns does not adjust to full screen >> > >> > Lee >> > >> > >> > >> > Thanks >> > >> > >> > >> > Alex B. >> >>
![]() |
0 |
![]() |
Thanks for the solution... One another problem is: I was trying to use of_resize functon of pfc_n_cst_resize. I found it is protected function. So I inherited main_n_cst_resize from pfc_n_cst_resize and used function as main_n_cst_resize.of_resize()in the open event of window. Was not able to compile,since it is protected function. How can I use that function in the window open event. Thanks > Yes, you'll need to register the columns and any other > dwobject that you'll want to "participate" in the > resizing. > > The documentation for n_cst_dwsrv_resize will help get you > started. > > ======================================== > Examples for Syntax 1 Specify a DWObject variable and > resize percentages > > > This example calls the of_Register function: > > DWObject ldwo_obj > > > > > > ldwo_obj = this.Object.emp_lname > > this.inv_resize.of_Register & > > (ldwo_obj, inv_resize.0, 0, 50, 50) > > ldwo_obj = this.Object.emp_fname > > this.inv_resize.of_Register & > > (ldwo_obj, 100, 0, 50, 50) > > this.of_SetTransObject(SQLCA) > > this.of_Retrieve() > ======================================== > > Examples for Syntax 2 Specify a DWObject variable and > resize method > > > This example calls the of_Register function: > > DWObject ldwo_obj > > > > > > ldwo_obj = this.Object.comments > > this.inv_resize.of_Register & > > (ldwo_obj, inv_resize.SCALEBOTTOM) > > this.of_SetTransObject(SQLCA) > > this.of_Retrieve() > ======================================== > > > -- > John Strano - Sybase Technology Evangelist > > > <Lee Sayed> wrote in message > news:475d6330.72be.1681692777@sybase.com... >I wrote > > following in the window open event > inv_resize.of_Register(dw_1, 0, 0, 100, 100) > > > Do I need to register each columns? > > I am setting datawindow objects at runtime.Also there > > are tab and tabpages which are set at runtime. > > > > Thanks > > > > > >> Have you called of_register() to register the columns > >> (and other DataWindow objects) with the service to > >> "tell" it how to resize each and/or how much to resize > >> them? > >> > >> -- > >> John Strano - Sybase Technology Evangelist > >> > >> > >> <Lee Sayed> wrote in message > >> > news:475b074a.2357.1681692777@sybase.com... I'm using > >> > PFC with PB 11 I have a datawindow control with its > >> resize service working. > > >> > Now I want resize the controls within the datawindow > ie >> > columns > >> > > >> > I thought the resize service would do. But database > >> > columns does not adjust to full screen > >> > > >> > Lee > >> > > >> > > >> > > >> > Thanks > >> > > >> > > >> > > >> > Alex B. > >> > >> > >
![]() |
0 |
![]() |
Are you talking about the sames service.??? n_cst_dwsrv_resize vs. n_cst_resize ( pfc_n_cst_resize ) Arnd On 10 Dec 2007 08:31:49 -0800, Lee Sayed wrote: >Thanks for the solution... > >One another problem is: > >I was trying to use of_resize functon of pfc_n_cst_resize. >I found it is protected function. >So I inherited main_n_cst_resize from pfc_n_cst_resize and >used function as main_n_cst_resize.of_resize()in the open >event of window. >Was not able to compile,since it is protected function. > >How can I use that function in the window open event. > >Thanks > > > > > >> Yes, you'll need to register the columns and any other >> dwobject that you'll want to "participate" in the >> resizing. >> >> The documentation for n_cst_dwsrv_resize will help get you >> started. >> >> ======================================== >> Examples for Syntax 1 Specify a DWObject variable and >> resize percentages >> >> >> This example calls the of_Register function: >> >> DWObject ldwo_obj >> >> >> >> >> >> ldwo_obj = this.Object.emp_lname >> >> this.inv_resize.of_Register & >> >> (ldwo_obj, inv_resize.0, 0, 50, 50) >> >> ldwo_obj = this.Object.emp_fname >> >> this.inv_resize.of_Register & >> >> (ldwo_obj, 100, 0, 50, 50) >> >> this.of_SetTransObject(SQLCA) >> >> this.of_Retrieve() >> ======================================== >> >> Examples for Syntax 2 Specify a DWObject variable and >> resize method >> >> >> This example calls the of_Register function: >> >> DWObject ldwo_obj >> >> >> >> >> >> ldwo_obj = this.Object.comments >> >> this.inv_resize.of_Register & >> >> (ldwo_obj, inv_resize.SCALEBOTTOM) >> >> this.of_SetTransObject(SQLCA) >> >> this.of_Retrieve() >> ======================================== >> >> >> -- >> John Strano - Sybase Technology Evangelist >> >> >> <Lee Sayed> wrote in message >> news:475d6330.72be.1681692777@sybase.com... >I wrote >> > following in the window open event >> inv_resize.of_Register(dw_1, 0, 0, 100, 100) > >> > Do I need to register each columns? >> > I am setting datawindow objects at runtime.Also there >> > are tab and tabpages which are set at runtime. >> > >> > Thanks >> > >> > >> >> Have you called of_register() to register the columns >> >> (and other DataWindow objects) with the service to >> >> "tell" it how to resize each and/or how much to resize >> >> them? >> >> >> >> -- >> >> John Strano - Sybase Technology Evangelist >> >> >> >> >> >> <Lee Sayed> wrote in message >> >> > news:475b074a.2357.1681692777@sybase.com... I'm using >> >> > PFC with PB 11 I have a datawindow control with its >> >> resize service working. > >> >> > Now I want resize the controls within the datawindow >> ie >> > columns >> >> > >> >> > I thought the resize service would do. But database >> >> > columns does not adjust to full screen >> >> > >> >> > Lee >> >> > >> >> > >> >> > >> >> > Thanks >> >> > >> >> > >> >> > >> >> > Alex B. >> >> >> >> >> >>
![]() |
0 |
![]() |
For n_cst_resize ( pfc_n_cst_resize )- window service Thanks > Are you talking about the sames service.??? > > n_cst_dwsrv_resize > vs. > n_cst_resize ( pfc_n_cst_resize ) > > > Arnd > > > On 10 Dec 2007 08:31:49 -0800, Lee Sayed wrote: > > >Thanks for the solution... > > > >One another problem is: > > > >I was trying to use of_resize functon of > pfc_n_cst_resize. >I found it is protected function. > >So I inherited main_n_cst_resize from pfc_n_cst_resize > and >used function as main_n_cst_resize.of_resize()in the > open >event of window. > >Was not able to compile,since it is protected function. > > > >How can I use that function in the window open event. > > > >Thanks > > > > > > > > > > > >> Yes, you'll need to register the columns and any other > >> dwobject that you'll want to "participate" in the > >> resizing. > >> > >> The documentation for n_cst_dwsrv_resize will help get > you >> started. > >> > >> ======================================== > >> Examples for Syntax 1 Specify a DWObject variable and > >> resize percentages > >> > >> > >> This example calls the of_Register function: > >> > >> DWObject ldwo_obj > >> > >> > >> > >> > >> > >> ldwo_obj = this.Object.emp_lname > >> > >> this.inv_resize.of_Register & > >> > >> (ldwo_obj, inv_resize.0, 0, 50, 50) > >> > >> ldwo_obj = this.Object.emp_fname > >> > >> this.inv_resize.of_Register & > >> > >> (ldwo_obj, 100, 0, 50, 50) > >> > >> this.of_SetTransObject(SQLCA) > >> > >> this.of_Retrieve() > >> ======================================== > >> > >> Examples for Syntax 2 Specify a DWObject variable and > >> resize method > >> > >> > >> This example calls the of_Register function: > >> > >> DWObject ldwo_obj > >> > >> > >> > >> > >> > >> ldwo_obj = this.Object.comments > >> > >> this.inv_resize.of_Register & > >> > >> (ldwo_obj, inv_resize.SCALEBOTTOM) > >> > >> this.of_SetTransObject(SQLCA) > >> > >> this.of_Retrieve() > >> ======================================== > >> > >> > >> -- > >> John Strano - Sybase Technology Evangelist > >> > >> > >> <Lee Sayed> wrote in message > >> news:475d6330.72be.1681692777@sybase.com... >I wrote > >> > following in the window open event > >> inv_resize.of_Register(dw_1, 0, 0, 100, 100) > > >> > Do I need to register each columns? > >> > I am setting datawindow objects at runtime.Also there > >> > are tab and tabpages which are set at runtime. > >> > > >> > Thanks > >> > > >> > > >> >> Have you called of_register() to register the > columns >> >> (and other DataWindow objects) with the > service to >> >> "tell" it how to resize each and/or how > much to resize >> >> them? > >> >> > >> >> -- > >> >> John Strano - Sybase Technology Evangelist > >> >> > >> >> > >> >> <Lee Sayed> wrote in message > >> >> > news:475b074a.2357.1681692777@sybase.com... I'm > using >> >> > PFC with PB 11 I have a datawindow control > with its >> >> resize service working. > > >> >> > Now I want resize the controls within the > datawindow >> ie >> > columns > >> >> > > >> >> > I thought the resize service would do. But > database >> >> > columns does not adjust to full screen > >> >> > > >> >> > Lee > >> >> > > >> >> > > >> >> > > >> >> > Thanks > >> >> > > >> >> > > >> >> > > >> >> > Alex B. > >> >> > >> >> > >> > >> >
![]() |
0 |
![]() |
can you please elaborate on that. I have a datawindow object with 5 columns.I am able to extend the datawindow comntrol to the screen resolution. But columns does not get. Can you please show me how can I register all the 5 columns. Do I need to register datawindow object too,if yes, how. Which event should I register.What argument(ie new height and width) should I pass in of_register, so that it gets fit into the changed datwindow control. I will appreciate for quick response Thanks > For n_cst_resize ( pfc_n_cst_resize )- window service > > Thanks > > > Are you talking about the sames service.??? > > > > n_cst_dwsrv_resize > > vs. > > n_cst_resize ( pfc_n_cst_resize ) > > > > > > Arnd > > > > > > On 10 Dec 2007 08:31:49 -0800, Lee Sayed wrote: > > > > >Thanks for the solution... > > > > > >One another problem is: > > > > > >I was trying to use of_resize functon of > > pfc_n_cst_resize. >I found it is protected function. > > >So I inherited main_n_cst_resize from pfc_n_cst_resize > > and >used function as main_n_cst_resize.of_resize()in > > the open >event of window. > > >Was not able to compile,since it is protected function. > > > > > >How can I use that function in the window open event. > > > > > >Thanks > > > > > > > > > > > > > > > > > >> Yes, you'll need to register the columns and any > > other >> dwobject that you'll want to "participate" in > > the >> resizing. > > >> > > >> The documentation for n_cst_dwsrv_resize will help > > get you >> started. > > >> > > >> ======================================== > > >> Examples for Syntax 1 Specify a DWObject variable and > > >> resize percentages > > >> > > >> > > >> This example calls the of_Register function: > > >> > > >> DWObject ldwo_obj > > >> > > >> > > >> > > >> > > >> > > >> ldwo_obj = this.Object.emp_lname > > >> > > >> this.inv_resize.of_Register & > > >> > > >> (ldwo_obj, inv_resize.0, 0, 50, 50) > > >> > > >> ldwo_obj = this.Object.emp_fname > > >> > > >> this.inv_resize.of_Register & > > >> > > >> (ldwo_obj, 100, 0, 50, 50) > > >> > > >> this.of_SetTransObject(SQLCA) > > >> > > >> this.of_Retrieve() > > >> ======================================== > > >> > > >> Examples for Syntax 2 Specify a DWObject variable and > > >> resize method > > >> > > >> > > >> This example calls the of_Register function: > > >> > > >> DWObject ldwo_obj > > >> > > >> > > >> > > >> > > >> > > >> ldwo_obj = this.Object.comments > > >> > > >> this.inv_resize.of_Register & > > >> > > >> (ldwo_obj, inv_resize.SCALEBOTTOM) > > >> > > >> this.of_SetTransObject(SQLCA) > > >> > > >> this.of_Retrieve() > > >> ======================================== > > >> > > >> > > >> -- > > >> John Strano - Sybase Technology Evangelist > > >> > > >> > > >> <Lee Sayed> wrote in message > > >> news:475d6330.72be.1681692777@sybase.com... >I wrote > > >> > following in the window open event > > >> inv_resize.of_Register(dw_1, 0, 0, 100, 100) > > > >> > Do I need to register each columns? > > >> > I am setting datawindow objects at runtime.Also > > there >> > are tab and tabpages which are set at > > runtime. >> > > > >> > Thanks > > >> > > > >> > > > >> >> Have you called of_register() to register the > > columns >> >> (and other DataWindow objects) with the > > service to >> >> "tell" it how to resize each and/or how > > much to resize >> >> them? > > >> >> > > >> >> -- > > >> >> John Strano - Sybase Technology Evangelist > > >> >> > > >> >> > > >> >> <Lee Sayed> wrote in message > > >> >> > news:475b074a.2357.1681692777@sybase.com... I'm > > using >> >> > PFC with PB 11 I have a datawindow control > > with its >> >> resize service working. > > > >> >> > Now I want resize the controls within the > > datawindow >> ie >> > columns > > >> >> > > > >> >> > I thought the resize service would do. But > > database >> >> > columns does not adjust to full screen > > >> >> > > > >> >> > Lee > > >> >> > > > >> >> > > > >> >> > > > >> >> > Thanks > > >> >> > > > >> >> > > > >> >> > > > >> >> > Alex B. > > >> >> > > >> >> > > >> > > >> > >
![]() |
0 |
![]() |
The documentation for the DataWindow resize service should prove helpful. Search under "n_cst_dwsrv_resize" https://pfc.codexchange.sybase.com/files/documents/257/1705/PBPFC100.zip -- John Strano - Sybase Technology Evangelist <Lee Sayed> wrote in message news:47600f8d.31ca.1681692777@sybase.com... > can you please elaborate on that. > I have a datawindow object with 5 columns.I am able to > extend the datawindow comntrol to the screen resolution. > But columns does not get. > Can you please show me how can I register all the 5 columns. > Do I need to register datawindow object too,if yes, how. > Which event should I register.What argument(ie new height > and width) should I pass in of_register, so that it gets fit > into the changed datwindow control. > > I will appreciate for quick response > > Thanks > >> For n_cst_resize ( pfc_n_cst_resize )- window service >> >> Thanks >> >> > Are you talking about the sames service.??? >> > >> > n_cst_dwsrv_resize >> > vs. >> > n_cst_resize ( pfc_n_cst_resize ) >> > >> > >> > Arnd >> > >> > >> > On 10 Dec 2007 08:31:49 -0800, Lee Sayed wrote: >> > >> > >Thanks for the solution... >> > > >> > >One another problem is: >> > > >> > >I was trying to use of_resize functon of >> > pfc_n_cst_resize. >I found it is protected function. >> > >So I inherited main_n_cst_resize from pfc_n_cst_resize >> > and >used function as main_n_cst_resize.of_resize()in >> > the open >event of window. >> > >Was not able to compile,since it is protected function. >> > > >> > >How can I use that function in the window open event. >> > > >> > >Thanks >> > > >> > > >> > > >> > > >> > > >> > >> Yes, you'll need to register the columns and any >> > other >> dwobject that you'll want to "participate" in >> > the >> resizing. >> > >> >> > >> The documentation for n_cst_dwsrv_resize will help >> > get you >> started. >> > >> >> > >> ======================================== >> > >> Examples for Syntax 1 Specify a DWObject variable and >> > >> resize percentages >> > >> >> > >> >> > >> This example calls the of_Register function: >> > >> >> > >> DWObject ldwo_obj >> > >> >> > >> >> > >> >> > >> >> > >> >> > >> ldwo_obj = this.Object.emp_lname >> > >> >> > >> this.inv_resize.of_Register & >> > >> >> > >> (ldwo_obj, inv_resize.0, 0, 50, 50) >> > >> >> > >> ldwo_obj = this.Object.emp_fname >> > >> >> > >> this.inv_resize.of_Register & >> > >> >> > >> (ldwo_obj, 100, 0, 50, 50) >> > >> >> > >> this.of_SetTransObject(SQLCA) >> > >> >> > >> this.of_Retrieve() >> > >> ======================================== >> > >> >> > >> Examples for Syntax 2 Specify a DWObject variable and >> > >> resize method >> > >> >> > >> >> > >> This example calls the of_Register function: >> > >> >> > >> DWObject ldwo_obj >> > >> >> > >> >> > >> >> > >> >> > >> >> > >> ldwo_obj = this.Object.comments >> > >> >> > >> this.inv_resize.of_Register & >> > >> >> > >> (ldwo_obj, inv_resize.SCALEBOTTOM) >> > >> >> > >> this.of_SetTransObject(SQLCA) >> > >> >> > >> this.of_Retrieve() >> > >> ======================================== >> > >> >> > >> >> > >> -- >> > >> John Strano - Sybase Technology Evangelist >> > >> >> > >> >> > >> <Lee Sayed> wrote in message >> > >> news:475d6330.72be.1681692777@sybase.com... >I wrote >> > >> > following in the window open event >> > >> inv_resize.of_Register(dw_1, 0, 0, 100, 100) > >> > >> > Do I need to register each columns? >> > >> > I am setting datawindow objects at runtime.Also >> > there >> > are tab and tabpages which are set at >> > runtime. >> > >> > >> > Thanks >> > >> > >> > >> > >> > >> >> Have you called of_register() to register the >> > columns >> >> (and other DataWindow objects) with the >> > service to >> >> "tell" it how to resize each and/or how >> > much to resize >> >> them? >> > >> >> >> > >> >> -- >> > >> >> John Strano - Sybase Technology Evangelist >> > >> >> >> > >> >> >> > >> >> <Lee Sayed> wrote in message >> > >> >> > news:475b074a.2357.1681692777@sybase.com... I'm >> > using >> >> > PFC with PB 11 I have a datawindow control >> > with its >> >> resize service working. > >> > >> >> > Now I want resize the controls within the >> > datawindow >> ie >> > columns >> > >> >> > >> > >> >> > I thought the resize service would do. But >> > database >> >> > columns does not adjust to full screen >> > >> >> > >> > >> >> > Lee >> > >> >> > >> > >> >> > >> > >> >> > >> > >> >> > Thanks >> > >> >> > >> > >> >> > >> > >> >> > >> > >> >> > Alex B. >> > >> >> >> > >> >> >> > >> >> > >> >> >
![]() |
0 |
![]() |
Hi, Found the below mentioned code on website.. //application open event //gnv_app.inv_env is a userobject holding application instance //variables How can I declare inv_env? Like we have n_cst_debug inv_debug n_cst_error inv_error Likewise ? inv_env From which user object should I declare inv_env,so that I can use with gnv_app. Thanks > The documentation for the DataWindow resize service > should prove helpful. > > Search under "n_cst_dwsrv_resize" > > https://pfc.codexchange.sybase.com/files/documents/257/1705/PBPFC100.zip > > -- > John Strano - Sybase Technology Evangelist > > > <Lee Sayed> wrote in message > > news:47600f8d.31ca.1681692777@sybase.com... can you > > please elaborate on that. I have a datawindow object > > with 5 columns.I am able to extend the datawindow > > comntrol to the screen resolution. But columns does not > > get. Can you please show me how can I register all the 5 > > columns. Do I need to register datawindow object too,if > > yes, how. Which event should I register.What argument(ie > > new height and width) should I pass in of_register, so > > that it gets fit into the changed datwindow control. > > > > I will appreciate for quick response > > > > Thanks > > > >> For n_cst_resize ( pfc_n_cst_resize )- window service > >> > >> Thanks > >> > >> > Are you talking about the sames service.??? > >> > > >> > n_cst_dwsrv_resize > >> > vs. > >> > n_cst_resize ( pfc_n_cst_resize ) > >> > > >> > > >> > Arnd > >> > > >> > > >> > On 10 Dec 2007 08:31:49 -0800, Lee Sayed wrote: > >> > > >> > >Thanks for the solution... > >> > > > >> > >One another problem is: > >> > > > >> > >I was trying to use of_resize functon of > >> > pfc_n_cst_resize. >I found it is protected function. > >> > >So I inherited main_n_cst_resize from > pfc_n_cst_resize >> > and >used function as > main_n_cst_resize.of_resize()in >> > the open >event of > window. >> > >Was not able to compile,since it is > protected function. >> > > > >> > >How can I use that function in the window open > event. >> > > > >> > >Thanks > >> > > > >> > > > >> > > > >> > > > >> > > > >> > >> Yes, you'll need to register the columns and any > >> > other >> dwobject that you'll want to "participate" > in >> > the >> resizing. > >> > >> > >> > >> The documentation for n_cst_dwsrv_resize will help > >> > get you >> started. > >> > >> > >> > >> ======================================== > >> > >> Examples for Syntax 1 Specify a DWObject variable > and >> > >> resize percentages > >> > >> > >> > >> > >> > >> This example calls the of_Register function: > >> > >> > >> > >> DWObject ldwo_obj > >> > >> > >> > >> > >> > >> > >> > >> > >> > >> > >> > >> ldwo_obj = this.Object.emp_lname > >> > >> > >> > >> this.inv_resize.of_Register & > >> > >> > >> > >> (ldwo_obj, inv_resize.0, 0, 50, 50) > >> > >> > >> > >> ldwo_obj = this.Object.emp_fname > >> > >> > >> > >> this.inv_resize.of_Register & > >> > >> > >> > >> (ldwo_obj, 100, 0, 50, 50) > >> > >> > >> > >> this.of_SetTransObject(SQLCA) > >> > >> > >> > >> this.of_Retrieve() > >> > >> ======================================== > >> > >> > >> > >> Examples for Syntax 2 Specify a DWObject variable > and >> > >> resize method > >> > >> > >> > >> > >> > >> This example calls the of_Register function: > >> > >> > >> > >> DWObject ldwo_obj > >> > >> > >> > >> > >> > >> > >> > >> > >> > >> > >> > >> ldwo_obj = this.Object.comments > >> > >> > >> > >> this.inv_resize.of_Register & > >> > >> > >> > >> (ldwo_obj, inv_resize.SCALEBOTTOM) > >> > >> > >> > >> this.of_SetTransObject(SQLCA) > >> > >> > >> > >> this.of_Retrieve() > >> > >> ======================================== > >> > >> > >> > >> > >> > >> -- > >> > >> John Strano - Sybase Technology Evangelist > >> > >> > >> > >> > >> > >> <Lee Sayed> wrote in message > >> > >> news:475d6330.72be.1681692777@sybase.com... >I > wrote >> > >> > following in the window open event > >> > >> inv_resize.of_Register(dw_1, 0, 0, 100, 100) > > >> > >> > Do I need to register each columns? > >> > >> > I am setting datawindow objects at runtime.Also > >> > there >> > are tab and tabpages which are set at > >> > runtime. >> > > >> > >> > Thanks > >> > >> > > >> > >> > > >> > >> >> Have you called of_register() to register the > >> > columns >> >> (and other DataWindow objects) with the > >> > service to >> >> "tell" it how to resize each and/or > how >> > much to resize >> >> them? > >> > >> >> > >> > >> >> -- > >> > >> >> John Strano - Sybase Technology Evangelist > >> > >> >> > >> > >> >> > >> > >> >> <Lee Sayed> wrote in message > >> > >> >> > news:475b074a.2357.1681692777@sybase.com... > I'm >> > using >> >> > PFC with PB 11 I have a datawindow > control >> > with its >> >> resize service working. > > >> > >> >> > Now I want resize the controls within the > >> > datawindow >> ie >> > columns > >> > >> >> > > >> > >> >> > I thought the resize service would do. But > >> > database >> >> > columns does not adjust to full > screen >> > >> >> > > >> > >> >> > Lee > >> > >> >> > > >> > >> >> > > >> > >> >> > > >> > >> >> > Thanks > >> > >> >> > > >> > >> >> > > >> > >> >> > > >> > >> >> > Alex B. > >> > >> >> > >> > >> >> > >> > >> > >> > >> > >> > > >
![]() |
0 |
![]() |
> From which user object should I declare inv_env,so that I > can use with gnv_app. These are generally Custom Class (NVO) instances. In this scenario, inv_env is a reference to an NVO instance declared as an instance variable of gnv_app. -- John Strano - Sybase Technology Evangelist <Lee Sayed> wrote in message news:4762a60f.6bcb.1681692777@sybase.com... > Hi, > Found the below mentioned code on website.. > //application open event > //gnv_app.inv_env is a userobject holding application > instance > //variables > > How can I declare inv_env? > Like we have > n_cst_debug inv_debug > n_cst_error inv_error > > Likewise > ? inv_env > From which user object should I declare inv_env,so that I > can use with gnv_app. > > Thanks > > > >> The documentation for the DataWindow resize service >> should prove helpful. >> >> Search under "n_cst_dwsrv_resize" >> >> > https://pfc.codexchange.sybase.com/files/documents/257/1705/PBPFC100.zip >> >> -- >> John Strano - Sybase Technology Evangelist >> >> >> <Lee Sayed> wrote in message >> > news:47600f8d.31ca.1681692777@sybase.com... can you >> > please elaborate on that. I have a datawindow object >> > with 5 columns.I am able to extend the datawindow >> > comntrol to the screen resolution. But columns does not >> > get. Can you please show me how can I register all the 5 >> > columns. Do I need to register datawindow object too,if >> > yes, how. Which event should I register.What argument(ie >> > new height and width) should I pass in of_register, so >> > that it gets fit into the changed datwindow control. >> > >> > I will appreciate for quick response >> > >> > Thanks >> > >> >> For n_cst_resize ( pfc_n_cst_resize )- window service >> >> >> >> Thanks >> >> >> >> > Are you talking about the sames service.??? >> >> > >> >> > n_cst_dwsrv_resize >> >> > vs. >> >> > n_cst_resize ( pfc_n_cst_resize ) >> >> > >> >> > >> >> > Arnd >> >> > >> >> > >> >> > On 10 Dec 2007 08:31:49 -0800, Lee Sayed wrote: >> >> > >> >> > >Thanks for the solution... >> >> > > >> >> > >One another problem is: >> >> > > >> >> > >I was trying to use of_resize functon of >> >> > pfc_n_cst_resize. >I found it is protected function. >> >> > >So I inherited main_n_cst_resize from >> pfc_n_cst_resize >> > and >used function as >> main_n_cst_resize.of_resize()in >> > the open >event of >> window. >> > >Was not able to compile,since it is >> protected function. >> > > >> >> > >How can I use that function in the window open >> event. >> > > >> >> > >Thanks >> >> > > >> >> > > >> >> > > >> >> > > >> >> > > >> >> > >> Yes, you'll need to register the columns and any >> >> > other >> dwobject that you'll want to "participate" >> in >> > the >> resizing. >> >> > >> >> >> > >> The documentation for n_cst_dwsrv_resize will help >> >> > get you >> started. >> >> > >> >> >> > >> ======================================== >> >> > >> Examples for Syntax 1 Specify a DWObject variable >> and >> > >> resize percentages >> >> > >> >> >> > >> >> >> > >> This example calls the of_Register function: >> >> > >> >> >> > >> DWObject ldwo_obj >> >> > >> >> >> > >> >> >> > >> >> >> > >> >> >> > >> >> >> > >> ldwo_obj = this.Object.emp_lname >> >> > >> >> >> > >> this.inv_resize.of_Register & >> >> > >> >> >> > >> (ldwo_obj, inv_resize.0, 0, 50, 50) >> >> > >> >> >> > >> ldwo_obj = this.Object.emp_fname >> >> > >> >> >> > >> this.inv_resize.of_Register & >> >> > >> >> >> > >> (ldwo_obj, 100, 0, 50, 50) >> >> > >> >> >> > >> this.of_SetTransObject(SQLCA) >> >> > >> >> >> > >> this.of_Retrieve() >> >> > >> ======================================== >> >> > >> >> >> > >> Examples for Syntax 2 Specify a DWObject variable >> and >> > >> resize method >> >> > >> >> >> > >> >> >> > >> This example calls the of_Register function: >> >> > >> >> >> > >> DWObject ldwo_obj >> >> > >> >> >> > >> >> >> > >> >> >> > >> >> >> > >> >> >> > >> ldwo_obj = this.Object.comments >> >> > >> >> >> > >> this.inv_resize.of_Register & >> >> > >> >> >> > >> (ldwo_obj, inv_resize.SCALEBOTTOM) >> >> > >> >> >> > >> this.of_SetTransObject(SQLCA) >> >> > >> >> >> > >> this.of_Retrieve() >> >> > >> ======================================== >> >> > >> >> >> > >> >> >> > >> -- >> >> > >> John Strano - Sybase Technology Evangelist >> >> > >> >> >> > >> >> >> > >> <Lee Sayed> wrote in message >> >> > >> news:475d6330.72be.1681692777@sybase.com... >I >> wrote >> > >> > following in the window open event >> >> > >> inv_resize.of_Register(dw_1, 0, 0, 100, 100) > >> >> > >> > Do I need to register each columns? >> >> > >> > I am setting datawindow objects at runtime.Also >> >> > there >> > are tab and tabpages which are set at >> >> > runtime. >> > >> >> > >> > Thanks >> >> > >> > >> >> > >> > >> >> > >> >> Have you called of_register() to register the >> >> > columns >> >> (and other DataWindow objects) with the >> >> > service to >> >> "tell" it how to resize each and/or >> how >> > much to resize >> >> them? >> >> > >> >> >> >> > >> >> -- >> >> > >> >> John Strano - Sybase Technology Evangelist >> >> > >> >> >> >> > >> >> >> >> > >> >> <Lee Sayed> wrote in message >> >> > >> >> > news:475b074a.2357.1681692777@sybase.com... >> I'm >> > using >> >> > PFC with PB 11 I have a datawindow >> control >> > with its >> >> resize service working. > >> >> > >> >> > Now I want resize the controls within the >> >> > datawindow >> ie >> > columns >> >> > >> >> > >> >> > >> >> > I thought the resize service would do. But >> >> > database >> >> > columns does not adjust to full >> screen >> > >> >> > >> >> > >> >> > Lee >> >> > >> >> > >> >> > >> >> > >> >> > >> >> > >> >> > >> >> > Thanks >> >> > >> >> > >> >> > >> >> > >> >> > >> >> > >> >> > >> >> > Alex B. >> >> > >> >> >> >> > >> >> >> >> > >> >> >> > >> >> >> > >> >>
![]() |
0 |
![]() |
Thanks John, Can you please give the syntax for declaring it. Following is the code where it is being used //application open event //gnv_app.inv_env is a userobject holding application instance //variables //ienv_object holds environment variables // the numbers 2401 and 3658 are the height and width that you //designed your system in GetEnvironment ( ienv_object ) gnv_app.inv_env.height = PixelsToUnits(ienv_object.ScreenHeight, YPixelsToUnits!) gnv_app.inv_env.width = PixelsToUnits(ienv_object.ScreenWidth, XPixelsToUnits!) gnv_app.inv_env.heightratio = gnv_app.inv_env.height / 2401 gnv_app.inv_env.widthratio = gnv_app.inv_env.width / 3658 Thanks > > From which user object should I declare inv_env,so that > > I can use with gnv_app. > > These are generally Custom Class (NVO) instances. > In this scenario, inv_env is a reference to an NVO > instance declared as an instance variable of gnv_app. > > -- > John Strano - Sybase Technology Evangelist > > > <Lee Sayed> wrote in message > > news:4762a60f.6bcb.1681692777@sybase.com... Hi, > > Found the below mentioned code on website.. > > //application open event > > //gnv_app.inv_env is a userobject holding application > > instance > > //variables > > > > How can I declare inv_env? > > Like we have > > n_cst_debug inv_debug > > n_cst_error inv_error > > > > Likewise > > ? inv_env > > From which user object should I declare inv_env,so that > > I can use with gnv_app. > > > > Thanks > > > > > > > >> The documentation for the DataWindow resize service > >> should prove helpful. > >> > >> Search under "n_cst_dwsrv_resize" > >> > >> > > > https://pfc.codexchange.sybase.com/files/documents/257/1705/PBPFC100.zip > >> > >> -- > >> John Strano - Sybase Technology Evangelist > >> > >> > >> <Lee Sayed> wrote in message > >> > news:47600f8d.31ca.1681692777@sybase.com... can you > >> > please elaborate on that. I have a datawindow object > >> > with 5 columns.I am able to extend the datawindow > >> > comntrol to the screen resolution. But columns does > not >> > get. Can you please show me how can I register > all the 5 >> > columns. Do I need to register datawindow > object too,if >> > yes, how. Which event should I > register.What argument(ie >> > new height and width) > should I pass in of_register, so >> > that it gets fit > into the changed datwindow control. >> > > >> > I will appreciate for quick response > >> > > >> > Thanks > >> > > >> >> For n_cst_resize ( pfc_n_cst_resize )- window > service >> >> > >> >> Thanks > >> >> > >> >> > Are you talking about the sames service.??? > >> >> > > >> >> > n_cst_dwsrv_resize > >> >> > vs. > >> >> > n_cst_resize ( pfc_n_cst_resize ) > >> >> > > >> >> > > >> >> > Arnd > >> >> > > >> >> > > >> >> > On 10 Dec 2007 08:31:49 -0800, Lee Sayed wrote: > >> >> > > >> >> > >Thanks for the solution... > >> >> > > > >> >> > >One another problem is: > >> >> > > > >> >> > >I was trying to use of_resize functon of > >> >> > pfc_n_cst_resize. >I found it is protected > function. >> >> > >So I inherited main_n_cst_resize from > >> pfc_n_cst_resize >> > and >used function as > >> main_n_cst_resize.of_resize()in >> > the open >event of > >> window. >> > >Was not able to compile,since it is > >> protected function. >> > > > >> >> > >How can I use that function in the window open > >> event. >> > > > >> >> > >Thanks > >> >> > > > >> >> > > > >> >> > > > >> >> > > > >> >> > > > >> >> > >> Yes, you'll need to register the columns and > any >> >> > other >> dwobject that you'll want to > "participate" >> in >> > the >> resizing. > >> >> > >> > >> >> > >> The documentation for n_cst_dwsrv_resize will > help >> >> > get you >> started. > >> >> > >> > >> >> > >> ======================================== > >> >> > >> Examples for Syntax 1 Specify a DWObject > variable >> and >> > >> resize percentages > >> >> > >> > >> >> > >> > >> >> > >> This example calls the of_Register function: > >> >> > >> > >> >> > >> DWObject ldwo_obj > >> >> > >> > >> >> > >> > >> >> > >> > >> >> > >> > >> >> > >> > >> >> > >> ldwo_obj = this.Object.emp_lname > >> >> > >> > >> >> > >> this.inv_resize.of_Register & > >> >> > >> > >> >> > >> (ldwo_obj, inv_resize.0, 0, 50, 50) > >> >> > >> > >> >> > >> ldwo_obj = this.Object.emp_fname > >> >> > >> > >> >> > >> this.inv_resize.of_Register & > >> >> > >> > >> >> > >> (ldwo_obj, 100, 0, 50, 50) > >> >> > >> > >> >> > >> this.of_SetTransObject(SQLCA) > >> >> > >> > >> >> > >> this.of_Retrieve() > >> >> > >> ======================================== > >> >> > >> > >> >> > >> Examples for Syntax 2 Specify a DWObject > variable >> and >> > >> resize method > >> >> > >> > >> >> > >> > >> >> > >> This example calls the of_Register function: > >> >> > >> > >> >> > >> DWObject ldwo_obj > >> >> > >> > >> >> > >> > >> >> > >> > >> >> > >> > >> >> > >> > >> >> > >> ldwo_obj = this.Object.comments > >> >> > >> > >> >> > >> this.inv_resize.of_Register & > >> >> > >> > >> >> > >> (ldwo_obj, inv_resize.SCALEBOTTOM) > >> >> > >> > >> >> > >> this.of_SetTransObject(SQLCA) > >> >> > >> > >> >> > >> this.of_Retrieve() > >> >> > >> ======================================== > >> >> > >> > >> >> > >> > >> >> > >> -- > >> >> > >> John Strano - Sybase Technology Evangelist > >> >> > >> > >> >> > >> > >> >> > >> <Lee Sayed> wrote in message > >> >> > >> news:475d6330.72be.1681692777@sybase.com... >I > >> wrote >> > >> > following in the window open event > >> >> > >> inv_resize.of_Register(dw_1, 0, 0, 100, 100) > > >> >> > >> > Do I need to register each columns? > >> >> > >> > I am setting datawindow objects at > runtime.Also >> >> > there >> > are tab and tabpages which > are set at >> >> > runtime. >> > > >> >> > >> > Thanks > >> >> > >> > > >> >> > >> > > >> >> > >> >> Have you called of_register() to register > the >> >> > columns >> >> (and other DataWindow objects) > with the >> >> > service to >> >> "tell" it how to resize > each and/or >> how >> > much to resize >> >> them? > >> >> > >> >> > >> >> > >> >> -- > >> >> > >> >> John Strano - Sybase Technology Evangelist > >> >> > >> >> > >> >> > >> >> > >> >> > >> >> <Lee Sayed> wrote in message > >> >> > >> >> > > news:475b074a.2357.1681692777@sybase.com... >> I'm >> > > using >> >> > PFC with PB 11 I have a datawindow >> > control >> > with its >> >> resize service working. > >> > >> > >> >> > Now I want resize the controls within the >> > >> > datawindow >> ie >> > columns >> >> > >> >> > > >> >> > >> >> > I thought the resize service would do. But > >> >> > database >> >> > columns does not adjust to full > >> screen >> > >> >> > > >> >> > >> >> > Lee > >> >> > >> >> > > >> >> > >> >> > > >> >> > >> >> > > >> >> > >> >> > Thanks > >> >> > >> >> > > >> >> > >> >> > > >> >> > >> >> > > >> >> > >> >> > Alex B. > >> >> > >> >> > >> >> > >> >> > >> >> > >> > >> >> > >> > >> >> > > >> > >> > >
![]() |
0 |
![]() |
Is there any Powerbuilder function or any other way to set the DPI setting according to screen Resolution. For eg, we can get screen resolution by using GetEnvironment and then setting DPI(dots per inches) for an application. 96 is normal size. IF for 1028x768,I want 120 DPI Thanks > Thanks John, > Can you please give the syntax for declaring it. > > Following is the code where it is being used > //application open event > //gnv_app.inv_env is a userobject holding application > instance > //variables > //ienv_object holds environment variables > // the numbers 2401 and 3658 are the height and width that > you > //designed your system in > GetEnvironment ( ienv_object ) > gnv_app.inv_env.height = > PixelsToUnits(ienv_object.ScreenHeight, > YPixelsToUnits!) > gnv_app.inv_env.width = > PixelsToUnits(ienv_object.ScreenWidth, > XPixelsToUnits!) > gnv_app.inv_env.heightratio = gnv_app.inv_env.height / > 2401 gnv_app.inv_env.widthratio = gnv_app.inv_env.width / > 3658 > > Thanks > > > > > > > > From which user object should I declare inv_env,so > > > that I can use with gnv_app. > > > > These are generally Custom Class (NVO) instances. > > In this scenario, inv_env is a reference to an NVO > > instance declared as an instance variable of gnv_app. > > > > -- > > John Strano - Sybase Technology Evangelist > > > > > > <Lee Sayed> wrote in message > > > news:4762a60f.6bcb.1681692777@sybase.com... Hi, > > > Found the below mentioned code on website.. > > > //application open event > > > //gnv_app.inv_env is a userobject holding application > > > instance > > > //variables > > > > > > How can I declare inv_env? > > > Like we have > > > n_cst_debug inv_debug > > > n_cst_error inv_error > > > > > > Likewise > > > ? inv_env > > > From which user object should I declare inv_env,so > > > that I can use with gnv_app. > > > > > > Thanks > > > > > > > > > > > >> The documentation for the DataWindow resize service > > >> should prove helpful. > > >> > > >> Search under "n_cst_dwsrv_resize" > > >> > > >> > > > > > > https://pfc.codexchange.sybase.com/files/documents/257/1705/PBPFC100.zip > > >> > > >> -- > > >> John Strano - Sybase Technology Evangelist > > >> > > >> > > >> <Lee Sayed> wrote in message > > >> > news:47600f8d.31ca.1681692777@sybase.com... can you > > >> > please elaborate on that. I have a datawindow > > object >> > with 5 columns.I am able to extend the > > datawindow >> > comntrol to the screen resolution. But > > columns does not >> > get. Can you please show me how > > can I register all the 5 >> > columns. Do I need to > > register datawindow object too,if >> > yes, how. Which > > event should I register.What argument(ie >> > new height > > and width) should I pass in of_register, so >> > that it > > gets fit into the changed datwindow control. >> > > > >> > I will appreciate for quick response > > >> > > > >> > Thanks > > >> > > > >> >> For n_cst_resize ( pfc_n_cst_resize )- window > > service >> >> > > >> >> Thanks > > >> >> > > >> >> > Are you talking about the sames service.??? > > >> >> > > > >> >> > n_cst_dwsrv_resize > > >> >> > vs. > > >> >> > n_cst_resize ( pfc_n_cst_resize ) > > >> >> > > > >> >> > > > >> >> > Arnd > > >> >> > > > >> >> > > > >> >> > On 10 Dec 2007 08:31:49 -0800, Lee Sayed wrote: > > >> >> > > > >> >> > >Thanks for the solution... > > >> >> > > > > >> >> > >One another problem is: > > >> >> > > > > >> >> > >I was trying to use of_resize functon of > > >> >> > pfc_n_cst_resize. >I found it is protected > > function. >> >> > >So I inherited main_n_cst_resize from > > >> pfc_n_cst_resize >> > and >used function as > > >> main_n_cst_resize.of_resize()in >> > the open >event > > of >> window. >> > >Was not able to compile,since it is > > >> protected function. >> > > > > >> >> > >How can I use that function in the window open > > >> event. >> > > > > >> >> > >Thanks > > >> >> > > > > >> >> > > > > >> >> > > > > >> >> > > > > >> >> > > > > >> >> > >> Yes, you'll need to register the columns and > > any >> >> > other >> dwobject that you'll want to > > "participate" >> in >> > the >> resizing. > > >> >> > >> > > >> >> > >> The documentation for n_cst_dwsrv_resize will > > help >> >> > get you >> started. > > >> >> > >> > > >> >> > >> ======================================== > > >> >> > >> Examples for Syntax 1 Specify a DWObject > > variable >> and >> > >> resize percentages > > >> >> > >> > > >> >> > >> > > >> >> > >> This example calls the of_Register function: > > >> >> > >> > > >> >> > >> DWObject ldwo_obj > > >> >> > >> > > >> >> > >> > > >> >> > >> > > >> >> > >> > > >> >> > >> > > >> >> > >> ldwo_obj = this.Object.emp_lname > > >> >> > >> > > >> >> > >> this.inv_resize.of_Register & > > >> >> > >> > > >> >> > >> (ldwo_obj, inv_resize.0, 0, 50, 50) > > >> >> > >> > > >> >> > >> ldwo_obj = this.Object.emp_fname > > >> >> > >> > > >> >> > >> this.inv_resize.of_Register & > > >> >> > >> > > >> >> > >> (ldwo_obj, 100, 0, 50, 50) > > >> >> > >> > > >> >> > >> this.of_SetTransObject(SQLCA) > > >> >> > >> > > >> >> > >> this.of_Retrieve() > > >> >> > >> ======================================== > > >> >> > >> > > >> >> > >> Examples for Syntax 2 Specify a DWObject > > variable >> and >> > >> resize method > > >> >> > >> > > >> >> > >> > > >> >> > >> This example calls the of_Register function: > > >> >> > >> > > >> >> > >> DWObject ldwo_obj > > >> >> > >> > > >> >> > >> > > >> >> > >> > > >> >> > >> > > >> >> > >> > > >> >> > >> ldwo_obj = this.Object.comments > > >> >> > >> > > >> >> > >> this.inv_resize.of_Register & > > >> >> > >> > > >> >> > >> (ldwo_obj, inv_resize.SCALEBOTTOM) > > >> >> > >> > > >> >> > >> this.of_SetTransObject(SQLCA) > > >> >> > >> > > >> >> > >> this.of_Retrieve() > > >> >> > >> ======================================== > > >> >> > >> > > >> >> > >> > > >> >> > >> -- > > >> >> > >> John Strano - Sybase Technology Evangelist > > >> >> > >> > > >> >> > >> > > >> >> > >> <Lee Sayed> wrote in message > > >> >> > >> news:475d6330.72be.1681692777@sybase.com... > > >I >> wrote >> > >> > following in the window open event > > >> >> > >> inv_resize.of_Register(dw_1, 0, 0, 100, 100) > > > >> >> > >> > Do I need to register each columns? > > >> >> > >> > I am setting datawindow objects at > > runtime.Also >> >> > there >> > are tab and tabpages > > which are set at >> >> > runtime. >> > > > >> >> > >> > Thanks > > >> >> > >> > > > >> >> > >> > > > >> >> > >> >> Have you called of_register() to register > > the >> >> > columns >> >> (and other DataWindow objects) > > with the >> >> > service to >> >> "tell" it how to > > resize each and/or >> how >> > much to resize >> >> > > them? >> >> > >> >> > > >> >> > >> >> -- > > >> >> > >> >> John Strano - Sybase Technology Evangelist > > >> >> > >> >> > > >> >> > >> >> > > >> >> > >> >> <Lee Sayed> wrote in message > > >> >> > >> >> > > > news:475b074a.2357.1681692777@sybase.com... >> I'm >> > > > using >> >> > PFC with PB 11 I have a datawindow >> > > control >> > with its >> >> resize service working. > >> > > >> > >> >> > Now I want resize the controls within the > > >> >> > datawindow >> ie >> > columns >> >> > >> >> > > > >> >> > >> >> > I thought the resize service would do. > > But >> >> > database >> >> > columns does not adjust to > > full >> screen >> > >> >> > > > >> >> > >> >> > Lee > > >> >> > >> >> > > > >> >> > >> >> > > > >> >> > >> >> > > > >> >> > >> >> > Thanks > > >> >> > >> >> > > > >> >> > >> >> > > > >> >> > >> >> > > > >> >> > >> >> > Alex B. > > >> >> > >> >> > > >> >> > >> >> > > >> >> > >> > > >> >> > >> > > >> >> > > > >> > > >> > > > >
![]() |
0 |
![]() |