Recent content by JonMeecham

  1. J

    ERwin 4.1.1 Reverse Engineer

    I'm trying to reverse engineer a Progress DF into ERwin to do data modelling. A year ago we attempted to do this and the thing standing in our way was a few schema problems that were causing compatability issues with ERwin. We've now fixed all the schema issues and should be able to load the...
  2. J

    Simple Webservice

    I've tried doing that and agree that it should be the way I'm referencing the wsdl file instead of using the UNC pathname. However, there is absolutely no difference. I get the messages that show I connected successfully but it hangs on the procedure call to simplesum (FYI simplesum as two...
  3. J

    Simple Webservice

    Environment (my Windows PC) WinXP Pro OpenEdge 10.0B Apache Tomcat 5.5I have setup the web service adapter on http://localhost:8080/wsa/wsa1 and if I type that URL I get the following ------------------------------------------------------------- WSA Web Services Status:wsa1:OK:111...
  4. J

    Cyrillic etc.

    Point 1 The translation manager is probably the only sensible way to go. Making accelerator key definitions translatable and labels etc would at least make things consistent. E.g. a button with label &Load would expect ALT+L to choose the button. If the label was changed to &Груз then ALT+Г...
  5. J

    ADM2 Newbie

    I've just stumbled on this thread and found it very amusing. A smart data object (SDO) is an object that manages DATA. A smart data viewer (SDV) is an object that manages VIEWING the data. The whole point of n-tier design architecture is that the SDV never connects to the the database and...
  6. J

    Cursor-offset Bug?

    You were correct with my first aim to query cursor-offset correctly. The problem wasn't happening on a colleagues environment so I upgraded to same patch level and querying was find. Setting the cursor-offset still doesn't work :awink: which is why I tried the set-selection. You gave me the...
  7. J

    Cursor-offset Bug?

    This work around seems to work. Uses SET-SELECTION with the start and end position the same!:lol: fiChannel:SET-SELECTION(iCursorPos, iCursorPos).
  8. J

    Cursor-offset Bug?

    Thanks for the reply, although I've tried coding around it using a timer to trigger the code instead of any-printable. This seems to be less buggy. Upgrading to patch 10B03 seemed to fix some problems. The last one seems to be setting the cursor-offset for Cyrillic (and other unicode...
  9. J

    Cursor-offset Bug?

    If you type using a Russian character set 12345ф7ф (for an english keyboard ф is obtained by pressing the "A" key) into a fill-in using UTF-8 character set and message the cursor-offset in ANY-PRINTABLE you get the following returned. 1 2 3 4 5 6 7 7 See the attached program as an example. NB...
  10. J

    Retreive WinNT user e-mail in active directory

    If you know how to do it in C++, wrap the function in a DLL and call that from Progress. Alternatively post the code here and we can see if there's an obvious Progress equivalent to the code in VB/C/C++
  11. J

    Windows Splitter & resize

    Did you manage to get anywhere with this? I've just come to the point when I'm about to need the same thing!!!! Cheers
  12. J

    XP UI ListView

    When you look in the list of activex components within the AppBuilder, the fill in at the bottom shows you which file the component is contained in. Since I had both ocx's registered, both versions were being displayed. I was choosing one rather than the other. I've looked at the property...
  13. J

    XP UI ListView

    Just in case anyone is interested. You must use the listview based on comctl32.ocx. I was using the listview within mscomctl.ocx which does not support the XP look-and-feel.
  14. J

    XP UI ListView

    I know you can add a manifest file (and ini file changes) to get the XP UI for controls used by prowin32.exe. However, any ocx's (such as listview) remain in the old style. I assume this is because the ocx interface (prox.dll i think) doesnt know anything about the manifest file (or...
  15. J

    Row-leave Updateable Browse

    I know this has probably been answered before but there are far too many posts to search through these days (searching not very accurate unless titles are more meaningful!!!). Anyway: I want to know how to leave an updateable browse using the tab key. For me it would make sense if you tab...
Top