Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. ThierryR

    multiple page report in powerbuilder

    Hello, If you want data to be displayed only on page 1, don't put them in the "Header" band, but try the "Detail" band. Hope it will help Thierry
  2. ThierryR

    How to get the "column name" in a crosstab DW

    I was just missing the setting of the static mode to yes. Thank you for you help Thierry.
  3. ThierryR

    How to get the "column name" in a crosstab DW

    Hello, I have a crosstab DW, and I would like to get the value of the colums header. In the Header[2] Band, I have a field name val_t with text : @Name When I retrieve this DW, the header of the colums are fulfilled with Names comming from the DB. How can I do to get them ? Example...
  4. ThierryR

    how to supress the header from second page

    Hi, If you want to print via a DW, place the header info in the appropriate Band (not header one, but the next band) Thierry
  5. ThierryR

    executing functions stored in a array ?

    Hi, I don't know/think if it is possible for functions, but it is possible with events. See TriggerEvent or PostEvent functions ls_events[1] = 'ue_prog_enroll_pending' ls_events[2] = 'ue_prog_wait' ls_events[3] = 'ue_prog_reserv' for i = 1 to upperbound(ls_events) This.TriggerEvent(...
  6. ThierryR

    Sorting Columns

    Hi, try the following : dw_1.Setsort(null) ls_sort = dw_1.Describe("DataWindow.Table.Sort") dw_2.SetSort(ls_sort) dw_2.Sort() Hope it will help Thierry
  7. ThierryR

    OLE - Opening an MS Word - readonly

    Hi, What you can try is : -Open Word -Clic the open file button -choose the file you want to open -clic the "Commands and Settings" button -choose "Open Read-Only" The file is going to be open as read-only In my version of Word, the "Commands and Settings" button...
  8. ThierryR

    Modify( )

    Hi, try dw_datawindow.modify("columnname[n].color=255") Otherwise, an other way to change properties for a peculiar row is to mix coding and dw properties expressions. - Add to your dw, a column "Status" (string) default value = 'OK' - Add an expression in color property...
  9. ThierryR

    OLE - Opening an MS Word - readonly

    Hi, I have Word 97 SR-2 under NT 4.0 I try with : Ole_doc.ConnectToNewObject("Word.Application") Ole_doc.Application.Documents.Open(ls_path,false,true) And It seems to work correctly, I don't get the messageBox ! Which version of Word do you run, and under wich os ? Do you have...
  10. ThierryR

    logging

    Hello, I think the best is to create a user object which open a file (in LineMode!) when instanciated and close it when destroyed, with a fileWrite function. Declare it as a global, and each time you need, just call the write function. user object : uo_Log uo_log instance variable --> int...
  11. ThierryR

    Get the full Name of a mapped server drive

    Hello, I would like to know how to get the full drive names, like powerBuilder gives in the Library painter in the listbox when we want to change of drive. example : a: c: <computer name> d: e: \\nameOfNetworkDrive f: \\nameOfNetworkDrive ... (is it windows API function, or something else ???)...

Part and Inventory Search

Back
Top