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

    Datawindow Buttons

    Hi, I'm trying to add a button for every row on my datawindow that can be used to expand the results. Now i got this working except I can't seem to find a way to change the button i click to represent that its in expanded mode. So for example, the user clicks the "+" button, and now i want the...
  2. Greener73

    How to go about this DataWindow problem

    thank the reply guys After some advice from others, and thinking about this more, I managed to do everything through SQL using UNIONS and GROUP by. Whether this is the right way to do this in the long run, well time will tell Again, thanks for the help. Its very hard to find information on...
  3. Greener73

    How to go about this DataWindow problem

    Query 1: Select account, sum(rate) from table1 where locationID = 676 group by account Query 2: Select account, sum(rate) from table1 where locationID = 767 group by account Report: Account LocationID.1 LocationID.2 Total...
  4. Greener73

    How to go about this DataWindow problem

    I've got a situation where, within a single window, i need to have two different (although same columns) queries, and provide a total column to the far right. I'm not exactly sure the best way to approach this. Keeping in mind that although they both will return results with the same columns...
  5. Greener73

    Hiding menu items greys maximized Close(X) button

    well i'll submit this as fixed and see what happens. I've spent far to long already on this simple problem. Thank you very much for the help theklOwn
  6. Greener73

    Hiding menu items greys maximized Close(X) button

    everything is the same, except that menuItems[count].Text = "test" + count is a bit longer. And you are right, it would need a (String) to make it compile. cid is a long array of size 5 If i use the menuitem visible and enabled properties directly, everything works fine. I have no problem...
  7. Greener73

    Hiding menu items greys maximized Close(X) button

    Thanks for the quick reply theklOwn I call the function to determine if the menu items should be shown when the program is first ran. Heres the code: // check whether the menu entries should be visible FOR count = 1 TO 5 IF cid[count] > 0 THEN menuItems[count].Text = "test" + count IF...
  8. Greener73

    Hiding menu items greys maximized Close(X) button

    Powerbuilder 9.03 When i run a small loop (5 iterations) and hide up to 5 menu items using the .Hide() function it greys out any maximized windows close "X" button at the top right. If i change this to .Visible = false this problem does not arise. Is this a known bug?

Part and Inventory Search

Back
Top