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 TouchToneTommy 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: *

  • Users: lolo327
  • Content: Threads
  • Order by date
  1. lolo327

    Changing status of a row/column

    This is a piece of code : ... ldwi = dw.GetItemStatus(l_row, s_colname,Primary!) // ldwi has the value : NotModified! dw.SetItem(l_row,s_colname,s_value) dw.AcceptText() ldwi = dw.GetItemStatus(l_row, s_colname,Primary!) // ldwi has the value : DataModified! li_RCode =...
  2. lolo327

    Add dynamically a column

    Hello all, Is it possible to add dynamically a column to a datawindow (type is grid). I would like to avoid to use the CREATE function that will force me to work with the syntax. Thanks for your help
  3. lolo327

    Datawindow Scrolling

    Hi, I would like to know when the scrolling of a datawindow (via the vertical scrollbar) is finished. How can I do that ? Many thanks for your help
  4. lolo327

    Datawindows Properties

    Hello all, I have to change the font.face and font.charset of a datawindow (grid). But, when I change the property, it is done for the entire column and I want it line per line (and not all lines). How is it possible ? Thx
  5. lolo327

    Environment Variables

    I would like to read (and write) environment variables the application. I have tried to use the API funciton GetEnvironmentVariableA but, if I do not use a set beafore, the string is empty. I would like, for example, read the value for the environment variable PATH. Has anyone any idea about...
  6. lolo327

    Window Title

    Working in a multi-language environment, I need to change dynamically the charset for Windows Title. Is there any API Functions to do that ? Thx
  7. lolo327

    DW_1.SetRedraw()

    Is it possible to know the know the "redraw" status. Code example: Boolean lb_redraw lb_redraw = "Redraw status of My DW" dw_1.SetRedraw(false) ......... .......... > Instructions ........ / dw_1.SetRedraw(lb_redraw) Thanks
  8. lolo327

    GetFullState - SetFullState

    Here is a piece of code. /-------------------------- u_dw ldw string ls1, ls2, ls3 ldw = Create u_dw li = dw_list.GetFullState(lbl) li = ldw.SetFullState(lbl) /------------------------------ This code returns -1 Is anybody know why ? Thanks
  9. lolo327

    How can I access an object in a DWObject having its name ?

    How can I access an object in a DWObject having its name ? Here is a little piece of code. dw_list is a Datawindow and dw_2 is a nested report in the datawindow. //----------------------------------- String ls_StringObjects String ls_ListObjects[] DWObject ldwo ldwo =...
  10. lolo327

    NESTED REPORT

    Hi, I have a DW that contains a nested report that can contain a nested report, .... I do not know how many reports are nested. I would like to create a recursive function to access each report. I can not use here a dot notation (I do not see how I could). So, have you an idea on How to do...

Part and Inventory Search

Back
Top