Search results

  1. M

    Invalid data type

    Hi // temp-table DEFINE TEMP-TABLE tt NO-UNDO FIELD sys-cono AS CHARACTER FIELD pb-partno AS CHARACTER FIELD pb-acost AS DECIMAL FIELD pb-onhand AS INTEGER INDEX xIdx IS PRIMARY UNIQUE sys-cono. Incompatible data-type expression line 167
  2. M

    Invalid data type

    Sorry please ignore the first attachment, the right is attached below, thanks
  3. M

    Invalid data type

    Thanks, it worked METHOD PRIVATE VOID InitializeChart(): DEFINE VARIABLE qc as HANDLE NO-UNDO. DEFINE VARIABLE i as INTEGER NO-UNDO. SESSION:APPL-ALERT-BOXES = TRUE. DO i = 1 to 20: CREATE tt. ASSIGN tt.pb-acost = "i" + STRING( i )...
  4. M

    Invalid data type

    Hi team I am encountering this error, am I missing an assembly here? // assembly USING Infragistics.UltraChart.Data.Series.ISeries. // variable where error is...... DEFINE PRIVATE VARIABLE series1 AS NumericSeries NO-UNDO.
  5. M

    Incompatible data type expression

    Hi The error originates here, screen shot
  6. M

    Incompatible data type expression

    yes its .Net component and I have just prefixed it as mentioned. No changes as yet on my code. What could I be missing, clean project and clear error from open edge.
  7. M

    UltraZoomPanel control

    Hi team I need someone who has filled around with this control, I cant seem to find any examples to start of with this on open edge. Please help, thanks.
  8. M

    Incompatible data type expression

    Hi team I have created this method with field variables declared and initialized METHOD PROTECTED DataTable ProTTDataTable(queryHandle as HANDLE, fieldNames as CHARACTER): DEFINE VARIABLE listRecord AS System.Array NO-UNDO. DEFINE VARIABLE fieldHandle AS HANDLE NO-UNDO EXTENT...
  9. M

    Ultrachart Error

    Hi Team I am creating this control on my ABL form, but I'm getting this error. I need help, only want to display chart both X and Y axis on my form UI. What am I missing,? please help anyone with experience in using this control. @VisualDesigner. METHOD PRIVATE VOID...
  10. M

    Child form using WAIT FOR

    Thanks Rob
  11. M

    StatusBar control

    On the status bar only from the next form, when user logs in successfully after authentication. username must be visible on the child from. screen shot is from the Parent form that has statusbar(username be displayed).
  12. M

    StatusBar control

    Hi I have tried to use the logic, although its static, but as a start to what I aiming to achieve. But I want a random value that will display not static from the application layer. @VisualDesigner. METHOD PRIVATE VOID ultraStatusBar4_Click( INPUT sender AS System.Object, INPUT e AS...
  13. M

    Child form using WAIT FOR

    Hi Thanks The link helped, I only did the trick. But uncommenting one argument list from the method. See the changes, no exception afterward; @VisualDesigner. METHOD PRIVATE VOID ultraexplorer_btn( INPUT sender AS System.Object, INPUT e AS Infragistics.Win.UltraWinExplorerBar.ItemEventArgs...
  14. M

    StatusBar control

    Hi I'm passing to next form, the username must be displayed to next form. How can I achieve this, I made a work around on the given logic. Nothing pops up, what am I missing?
  15. M

    StatusBar control

    Hi Team I need a help on this problem Thestatus bar should pull through the user name from the login form to bedisplayed in status bar. On my parent form i have this method, want to pull username on UltraStatusBar be displayed only; I have used USING Client.LogiScreen FROM PROPATH as an...
  16. M

    Child form using WAIT FOR

    On my previous error I made a fix, now I'm getting this exception after using this logic below; @VisualDesigner. METHOD PRIVATE VOID ultraexplorer_btn( INPUT sender AS System.Object, INPUT e AS Infragistics.Win.UltraWinExplorerBar.ItemEventArgs ): hMain = NEW Client.ChildForm()...
  17. M

    Child form using WAIT FOR

    Now I'm getting an exception for using WAIT-FOR statement; METHOD PRIVATE VOID ultraexplorer_btn( INPUT sender AS System.Object, INPUT e AS Infragistics.Win.UltraWinExplorerBar.ItemEventArgs ): THIS-OBJECT:ShowDialog(). WAIT-FOR hMain:ShowDialog(). hMain:Dispose(). RETURN. END METHOD.
  18. M

    Child form using WAIT FOR

    Hi Team I need a help on this logic, I have a control called ultraExploreBar that has properties. But I want to create an event handler that will display a child form inside my parent form. My logic is as follow; METHOD PUBLIC VOID DoWait(): DEF VAR hMain AS Client.ChildForm NO-UNDO...
  19. M

    DataBind using ultrachart error

    Hi team I'm creating ultrachart to display dataset, but I'm getting this error as its been attached. Thanks my code is as follows; METHOD PUBLIC VOID SetChartType(iCharttype AS CHARACTER): CASE iCharttype: /* WHEN "BarChart" THEN THIS-OBJECT:ultraChart1 =...
  20. M

    query-prepare

Back
Top