Search results

  1. M

    Run-time error

    Hi Team i have created properties and they appear well on the design. I have attached screen shots. problem i'm getting "Invalid handle, not point to a delegate" CLASS Client.Structure.Controls.nrsTextbox INHERITS UltraTextEditor: DEFINE PRIVATE VARIABLE components AS...
  2. M

    create properties for ultravalidator control on textfield

    Hi team Does anyone can at least show me, how to create properties on the coding side using ultravalidator? I have created on the properties on the ABL form itself, but want to use same logic rather using persistent code.
  3. M

    properties and method in open edge

    /*** My code for solving this problem here below***/ CLASS Client.Structure.Classes.clsGlobalization: DEFINE PRIVATE PROPERTY cVariable AS CHARACTER NO-UNDO GET. SET. DEFINE PRIVATE PROPERTY cNumberDecSep AS CHARACTER NO-UNDO GET. SET(cNumberDecSep AS...
  4. M

    properties and method in open edge

    Hi Team Create a class for Globalization. That will take the specific culture as a input parameter in the constructor. This parameter should have a property in the class that it gets assinged to. IT also needs to have properties for number decimal seporator and number group seporator and a...
  5. M

    How to change color themes in open edge?

    Hi Team Is there a way change the colors of the theme during runtime? in open edge if so any default examples in ABL forms?
  6. M

    Invalid handle

    Thanks my code is working now, i omit to create server
  7. M

    Invalid handle

    Hi team I have an encounter this following error message on my abl form DEFINE PRIVATE VARIABLE btnDisplay AS Infragistics.Win.Misc.UltraButton NO-UNDO. DEFINE PRIVATE VARIABLE btnSave AS Infragistics.Win.Misc.UltraButton NO-UNDO. DEFINE PRIVATE VARIABLE bsMain AS...
  8. M

    How to convert html file to pdf in progress

    Thanks will attempt and works on them
  9. M

    How to convert html file to pdf in progress

    Hi Team I need a help i want to write program that will generate pdf from html. is there a walk through to this? please a sample will be highlighy appreciated
  10. M

    Save table field name to a database

    I hear you now, what i am aiming to achieve, is my data-set to store all records from the database only.
  11. M

    Save table field name to a database

    Hi team Can anyone help me, i have a handler that save record but its not saving well to a database . AppServer code PROCEDURE getEmail: DEFINE INPUT PARAMETER ipcAcc AS CHARACTER NO-UNDO. DEFINE INPUT PARAMETER ipcType AS CHARACTER NO-UNDO. DEFINE OUTPUT PARAMETER DATASET-HANDLE...
  12. M

    Handle dataset on client side and attached to your binding source

    Hi Team I want to know, how do i handle dataset on client side, as well to attached it. I have a procedure called fields email_address, status and delete. How do i passed this? Do i create a buffer handle inside my class object? or method as private void. I need help a sample example with the...
  13. M

    Class name conversion error

    Hi team Can anyone help me, with the following screen shot. I have an error when i launch the widget. [error] "Name of the class in the class statement frmEMaint.cls must match the pattern of the name file".
  14. M

    Event handler to return an object

    Hi team I need a help here below. My code first create an event handler that calculate vat, when click event is triggered. Then it also do the unchecked when this event is not clicked. What i want to achieve here is find a way to return original value(amount), when this event is unchecked...
  15. M

    zoomPanel

    Hi team I want to create ultrazoomPanel on my ABL form, but I cant figure it out. Anyone person can show me how this is done on open edge using.net control like this one? DEFINE PRIVATE VARIABLE ultraZoomPanel1 AS Infragistics.Win.Misc.UltraZoomPanel NO-UNDO. // this is my handler to view...
  16. M

    App style using infragistics on forms

    Will have a look and try to apply the logic, relevant to this above logic and make necessary changes if possible. Thanks.
  17. M

    App style using infragistics on forms

    Hi Team I am applying theme and styles using Styling from my form. I have managed to use one per each toolbar. My question is how to I set the style throughout each toolbar? /* ultraToolbarsManager1 */ /* */ THIS-OBJECT:ultraToolbarsManager1:Cursor =...
  18. M

    Could not complie Main class with a super class of child class

    Sure, tell me what do I need to know?
  19. M

    Could not complie Main class with a super class of child class

    Hi team I need help on my code below, what am I missing on my OOP? // Parent class has this method implemented METHOD PUBLIC VOID getChildForm(vForm AS CHARACTER): END METHOD. [code] // child class has this method DEFINE VARIABLE vForm AS CHARACTER NO-UNDO. METHOD PUBLIC VOID...
  20. M

    Invalid handle

    Hi team I need a help below, I have modified my code. By adding these argument together with buffer handle. Now I'm getting this exception below. What could be the cause? Please help. DEFINE TEMP-TABLE tt NO-UNDO FIELD sys-cono AS CHARACTER FIELD pb-partno AS CHARACTER FIELD...
Back
Top