DBAsupport.com Forums - Powered by vBulletin
Results 1 to 3 of 3

Thread: window title

  1. #1
    Join Date
    Jul 2000
    Location
    india
    Posts
    213

    window title

    Hi everybody,

    can i change the name of the window.For e.g when i run the form the window title(top left of window) is
    Oracle Forms Runtime-[WINDOW1].I want to change it to the name of my application.

    Thanks
    pras
    Dream as if u'll live forever..Live as if u'll die today.

  2. #2
    Join Date
    Sep 2001
    Location
    NJ, USA
    Posts
    1,287
    in a trigger when_instance_started (as i can remember)
    or in any other trigger u may use procedure:

    set_window_property(FORMS_MDI_WINDOW, TITLE, 'New Window Name');

  3. #3
    Join Date
    Jul 2000
    Location
    india
    Posts
    213

    thanks

    thanks shestkov again,
    yeah i got the solution...
    on WHEN-NEW-FORM-INSTANCE
    Set_Window_Property(FORMS_MDI_WINDOW, WINDOW_STATE, MAXIMIZE);
    Set_Window_Property(FORMS_MDI_WINDOW, TITLE, 'ABC');

    can u pls see my previous post...waiting for ur suggestions

    Thanks
    pras
    Dream as if u'll live forever..Live as if u'll die today.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width