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

    Memory Leak

    it gpf'd on me
  2. dynamicjourney2001

    distributed

    Hello guys, does anyone have some 'how to' documents on starting a Powerbuilder distributed? I appreciate your help in advance Dynamic
  3. dynamicjourney2001

    Datawindow getting data from a 2 columns when a row is selected ?

    I believe you are trying to pupulate your variable based on the selected row for those 3 columns. You can use a.GETITEMSTRING variable1 = this.GetItemString(row,'col2') variable2 = this.GetItemString(row,'col4') variable3 = this.GetItemString(row,'col6') or b.dot notation variable1 =...
  4. dynamicjourney2001

    Datawindow getting data from a 2 columns when a row is selected ?

    I believe you are trying to pupulate your variable based on the selected row for those 3 columns. You can use a.GETITEMSTRING variable1 = this.GetItemString(row,'col2') variable2 = this.GetItemString(row,'col4') variable3 = this.GetItemString(row,'col6') or b.dot notation variable1 =...
  5. dynamicjourney2001

    vertical scroll position

    SOrry, i forgot to mention that, there's only one row, the dw is freeform and with scroll since the dw has alot of columns to hold. I believe I mentioned scrolling to proper column, sorry if my question is not clear. Im trying to use the Tab key and when the column is below the height of dw, it...
  6. dynamicjourney2001

    vertical scroll position

    Hi, Im wondering how come a datawindow doesn't scroll to the appropriate column position when using Tab Key. I tried running our other system and it seems to be working. But when I created a datawindow with lengthy columns and when I use tab key to navigate thru columns, the datawindow doesn's...
  7. dynamicjourney2001

    how to supress the header from second page

    Hi, You could place an expression in the Visible property of the fields you wish to hide other than first page. if(getrow() = 1 , 1, 0) Have fun!
  8. dynamicjourney2001

    Show blank row when there's no result in query

    Hi, thanks for the reply. I figure-out how to accomplish it without using a UNION keyword. And yes it was on my task, actually Im using the query for my Powerbuilder datawindow object. I used the inline view method in accomplishing it. Thanks again. Have fun!
  9. dynamicjourney2001

    Show blank row when there's no result in query

    Hi, I want to display a blank row when my query returns 0 result. i have accomplished this using a UNION clause, Select col1 from table where col1 = 1 Union select '' where not exists (select col1 from table where col1 = 1) but Im curious on how it could be handled w/o using a union...
  10. dynamicjourney2001

    SDK

    thanks, I found it also in winuser.h I appreciate the reply. have fun!
  11. dynamicjourney2001

    SDK

    Thanks for the reply, but can you show me how you came up with these decimal numbers? and where it was found?
  12. dynamicjourney2001

    Checkbox question

    You can check-out BackColor property for the CheckBox. Have fun!
  13. dynamicjourney2001

    Sorting Columns

    Hi, you can define the sorted columns in the datawindow painter menu Rows>Sort , or you can use ORDER BY keyword in your Query. Hope this helps. Have fun!
  14. dynamicjourney2001

    dw_1.Find problem

    Try to add single quote on as_time for scenarios 1 and 2 just like what you did in as_date eg. '"+as_time+"' and also check if the passed argument as_time is in a valid time format. Hope this helps. have fun!
  15. dynamicjourney2001

    event name

    Hi, When the user clicked the button, definitely that's a clicked event. There are systems events and user events(lookup 'event' in Help file). There's no way of getting the event in a string format as far as I know. Just curious, what exactly do you want to happen in your program? Have fun!
  16. dynamicjourney2001

    PBL library size

    Thanks. Actually this specific library is not being used anymore, and some developers just kept on saving objects in that library, knowing that the developer who was mantaining that library was regularly cleaning-up the library once the objects moved in our testing phase. What happened was, when...
  17. dynamicjourney2001

    SDK

    Hi, Does anyone knows what's the message # for Tab!? Im using send() and i need the msg#. I check the winuser.h and it shows there the VK_TAB with hexadecimal 0x09.
  18. dynamicjourney2001

    PBL library size

    Thanks for the replies.
  19. dynamicjourney2001

    calling an dw as html in web

    Hi guys, Does anyone knows how i can post a datawindow(in grid- result of a query) on web. Basically it's just plain calling the datawindow with the datas in web(its just like posting/calling a word or excel document on web). Im planning do it in asp but since im using pb i thought i might as...
  20. dynamicjourney2001

    PBL library size

    Hi, Can anyone tell me where I can find a documentation on size limit of a pb library? I guess it's somewhere around 32MB per library, and after that everytime you'll access that library in the library painter, it GPF. Have fun!

Part and Inventory Search

Back
Top