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 Mike Lewis 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. BBO007

    Generate a CSV file without the headers

    Thanks Matt, This is exactly what I have finally done, and it is working fine. It is so fast that the user does not see that process. Thank you for your answer !!! Thorben
  2. BBO007

    Generate a CSV file without the headers

    Hello everyone, I am using PB 11.2. I have a grid datawindow. I would like to generate a CSV file from the dw. With ';' as separator for columns but without the heading of the columns. I know that the SaveAs enables me not to have the headings, but I cannot choose the separator. On the other...
  3. BBO007

    Composite datawindow

    Thank you Matt The line for the method is working fine. But the line for the print is failling : adw_data.object.dw_1.Object.DataWindow.PDF.XSLFOP.Print = 'Yes' I think it should be written as below: adw_data.object.dw_1.Object.DataWindow.Export.PDF.XSLFOP.Print = 'Yes' I am working with a...
  4. BBO007

    Composite datawindow

    Hello, I would like to access to the properties of a datawindow inside a composite dw. I have tried the code below, but I am not sure this is working fine. adw_data is hte composite dw dw_1 is the datawindow inside the composite adw_data.Object.dw_1.Object.DataWindow.Export.PDF.XSLFOP.Print...
  5. BBO007

    Application version

    Hello All, I have a question for you. I am using PB11.2. When I am using the Project object to build the application, there is a tabfolder 'Version' where I can write the version number of the application. eg 1.10.20.3 I would like to know if there is a way to read those numbers in the...
  6. BBO007

    Telnet and Powerbuilder

    Hi Miguel, I will have a close look at windsock. Maybe this one can do what we want. Thanks
  7. BBO007

    Telnet and Powerbuilder

    Hi All, I would like to know if some of you have already done an application with Powerbuilder that is making a connexion to a remote server using an API for Telnet ? Which API did you used for this ? Cheers, Thorben
  8. BBO007

    [PB9] performances

    Hi All, Let say that I have an Oracle table of 10 fields with 3000 records in it. I will read this table ans store its content in a datastore or in a structure. I would like to know what is the more easy to manipulate and what is the more efficient : a datastore or a structure ? I will need...
  9. BBO007

    Question about multithread in powerbuilder 9

    Ok, I have make it so that it has its own transaction object. But I still have the issue. I have tested my code in normal mode (without calling the function SharedObjectRegister) and this is working find. So I still do not understand why when I use the multithread mode, I a not able to...
  10. BBO007

    Question about multithread in powerbuilder 9

    Hi Matt, For the moment : No ! Does it need to have its transaction object ?
  11. BBO007

    Question about multithread in powerbuilder 9

    Hello All, I would like to know if there is people that familiar with the multithreading in PB 9 ? I would like to launch a separate thread that will retieve data from the Oracle database, and during the same time the main process continues its job. I have understand that I need to use the...
  12. BBO007

    PB11 and Oracle 10 storeproc

    Hi all, I have an issue I would like to share with you. I would like to have a DW based on a Oracle store procedure. I would like that the store proc to have a IN parameter of type VARCHAR2. And the contents of this parameter will be a list of string values, like param1 = ('Val1','Val2','Val3')...
  13. BBO007

    Change the title bar style

    Thanks for the idea. I will dig into that way Have a nice day. ;-)
  14. BBO007

    Change the title bar style

    Hi theklOwn, I searching for a solution that I can code. Thanks anyway! BBO007
  15. BBO007

    Change the title bar style

    Hello All, I am working with PB11.2 and I would like to know if there is a way to change the Title style of the main window of my application ? I would like to : - change the color of the blue bar to something different - change the font of the characters used for the title I would like to...
  16. BBO007

    Modifying the textcolor of text objects in DW

    Thanks theklOwn, this is working fine now ! BBO007
  17. BBO007

    Modifying the textcolor of text objects in DW

    Hi Matt, Thank you. But how can I dynamically change the value for the <controlname> in the loop ? I need to replace the <controlname> with the name of the object, they are for the moment in array of strings. BBO007
  18. BBO007

    Modifying the textcolor of text objects in DW

    Hello All, I would like to be able to change the properties (like the textcolor or the textbackcolor) of the text objects that are in a datawindow. I know how to retrieve the list of all objects in the DW by using the next script part: ls_objectlist = dw_1.Object.DataWindow.Objects This gives...

Part and Inventory Search

Back
Top