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. mistermusic

    User search function

    Hi I would like to implement a function that allows the user to search within a powerbuilder report. It should work just like the search function of a PDF-reader (user enters a search criteria and presses enter --> the first match is being highlighted with the option to jump to the next match)...
  2. mistermusic

    Printing the current page

    Hi all, I am using this code to print a datawindow: dw_1.print(true, true) The problem is that the option "current page" in the print dialog is disabled. Does anyone know why that is and how to fix it? Thanks, Thomas
  3. mistermusic

    Dynamic X-position of a autosize column

    Hi First of all let me thank you for all your efforts!! Unfortunately, it didn't work out for me. In our version of PB (11.5.1 with all the latest patches) an empty autosize-height-field is visible (see pic 1). In picture 2 you can see what happens after I move the field with my function...
  4. mistermusic

    Dynamic X-position of a autosize column

    Hi there I am using PB 11.5 I have a problem with a datawindow column that has its autosize.height property on YES. I want to be able to change the columns X-Position dynamicly. The problem is that after I modify the datawindow the position of the column is still displaied at its original...
  5. mistermusic

    Textcolor of a Dropdowndatawindow

    Meanwhile I found the solution. After the modify-statement of the dddw there was another modify for the "parent field" which somehow caused the dddw to go back into its original layout: "dddw.modify" dw_1.Modify("adr_anr_id.background.color = " + String(16777215)) Switching this two lines...
  6. mistermusic

    Textcolor of a Dropdowndatawindow

    Thanks for your reply... Unfortunately it doesn't work either. The modify statement returns the following error message: Line 1 Column 19: incorrect syntax.' Any other suggestions?
  7. mistermusic

    Textcolor of a Dropdowndatawindow

    Me again... :-) I tried to put the dropdowndatawindow into a datawindowchild so I can use the "modify" statement: DATAWINDOWCHILD dd_child d_datawindow.getchild(s_field, dd_child) dd_test.Modify("employee_name.color = " + String(il_color_font)) --> Unfortunately this modify statement returns...
  8. mistermusic

    Textcolor of a Dropdowndatawindow

    Hi there Does anybody know how I can change the font color of dropdowndatawindow-columns by script? I tried a several different options using "modify" but it didn't work out... Thank you Thomas
  9. mistermusic

    PB 11.5 Menubar

    Hi there Can I change the color of a menue/toolbar by script? This code here causes errors: menuxy.menubackcolor = 123456 "A systemwrite property can be modified only in an event or function in its parent class" "A readonly property can be modified only in an event or function in its parent...

Part and Inventory Search

Back
Top