Recent content by nandanak

  1. N

    Create Multi User Access Data Base

    I want to create a progress data base for multiple user access trough network , Please help me how can I configure data base for this requirement ?
  2. N

    Progress Transaction rollback

    Thanks...
  3. N

    Progress Transaction rollback

    I have code like following : DO TRANSACTION ON ERROR UNDO: RUN Procedure1(update tables). RUN Procedure2(update tables). Another table updating codes.... END. Assume above code Procedure1, Procedure2 successfully update tables and error occurred when you update other codes...
  4. N

    Encode and Decode Text

    I use ENCODE progress function to Encode some text and save it to database. If I want to see the original text from Encoded text in DB, What should I do?
  5. N

    Right mouse click pop up menu

    Is there a way to get Right Mouse click pop up menu in OpenEdge and do something when click menu option ? (I want to click on a OpenEdge browser object).
  6. N

    Get Text of radio buttons

    I have radio button set, For Example Options : Red, Blue, Green I need when I click Blue option, I want to get the Text of that option : Blue, Red for red option. How can I do this ?
  7. N

    Compare Time value

    I have stored transaction time in a progress DB table as a character value as : STRING(TIME,"HH:MM:SS"). How can I compare these two time values (less than , greater than time) ?.
  8. N

    Openedge Appserver developments

    I'm familiar wit OpenEdge client server development. NowI want to learn OpenEdge appserver developments. I know how to configure an Appserver, Please help me to learn appserver developments.
  9. N

    Answered OpenEdge explorer dialog authentication ?

    I just installed OpenEdge 10.2B in a new machine and I wanted to practice the configuration of an AppServer. I opened Openedge architect ->OpenEdge Menu->Admin->OpenEdge Explorer and I get user name password dialog box ( Is has description : The server localhost at OpenEdge Management Realm...
  10. N

    Get month name when input month number

    Thanks Cringer, your code helps me.
  11. N

    Get month name when input month number

    Is there any built in function in OpenEdge to get Month name when I input month number. Ex : Input : 03 , Output : March
  12. N

    Find a word and Replace in a Sentence

    I want to check a word in a sentence and replace. Ex: The word : "aaaaaa bcd efg". I want to check the word "efg" from this sentence and replace it from another word. How can I do it in OpenEdge ?
  13. N

    Locks in Progress 10.2B

    How progress locking mechanism behave in following code (Progress 10.2B) ? DO: Find First TABLE1 NO-ERROR. IF AVAILABLE TABLE1 DO: some TABLE1 updation codes here..... END. END. 1. Because lock is not mentioned, Is default lock SHARE-LOCK ? 2. Is SHARE-LOCK...
  14. N

    Two table joining issue

    I'm using Pregress 10.2B; I want to write following quary, 1. There are two tables, Assume TABLE1 and TABLE2 2. Both table have facno feild but there can be facno in TABLE1 without having facno in TABLE2. 3. I want to write a query to get TABLE1 records without having facno in TABLE2.
  15. N

    Add new feild to existing table

    @Cringer, Thanks for your reply :).
Top