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 Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by theotyflos

  1. theotyflos

    Retrieving the number of records

    You can also try the following: ****************************************************************** * Find Number of records in an indexed file * ****************************************************************** Identification Division...
  2. theotyflos

    Retrieving the number of records

    There was once a Liant utility called RMRECS.COB that did exactly that job. I don't know if it exists now in their site. If there aren't any license issues I could attach it here. Hope it helps. Theophilos. ----------- A few weeks of trial and error can spare you lots and lots of minutes...
  3. theotyflos

    Text String to Hex value

    Vim (www.vim.org) is a great editor, and is free. Among other goodies it ships with a utility named xxd that does what you want. Hope it helps. Theophilos. ----------- A few weeks of trial and error can spare you lots and lots of minutes reading the manual.
  4. theotyflos

    cgi..bis or maybe wow

    Hi demetrio, I think that cgi is kind of out-of-date. I haven't tried BIS (yet) but, from what I hear, it sounds very efficient. You can also consider using WOW (have worked with it a lot and found it excellent) as an interface, combined with rm/infoxpress to access your data. As an...
  5. theotyflos

    Implement CRectTracker ActiveX control

    Hi group, I'm a novice user of VC++. Can someone show me how can I create an ActiveX control (ocx) that implements the CRectTracker class? TIA. Theophilos. ----------- There are only 10 kinds of people: Those who understand binary and those who don't.
  6. theotyflos

    Wow-Extensions and z-order

    Thanks for that Tom, I Appreciate your support. Many wishes for the Christmas and the New Year's eve. Theophilos. ----------- There are only 10 kinds of people: Those who understand binary and those who don't.
  7. theotyflos

    Wow-Extensions and z-order

    Hi group, Environment is Rm/Cobol v9.01 and WOW-Extensions v9.01 on Windows-XP sp2. I have a form with two bitmaps which partially overlap: 11111111111111111 11111111111111111 <-- First Bitmap, Zorder=1 11111111111111111 11111111111111111 11111111222222222222222...
  8. theotyflos

    COMMAND LINE

    Call "SYSTEM" Using "C:\PRT9570\ONESHOT.EXE". Hope this helps. Theophilos. ----------- There are only 10 kinds of people: Those who understand binary and those who don't.
  9. theotyflos

    Compare two folder

    Actually dircmp is just a shell script that creates lists of the files contained in the two directories and compares them. The problem is that I don't know if it is copyrighted (so I can post it here). Theophilos. ----------- There are only 10 kinds of people: Those who understand binary and...
  10. theotyflos

    Compare two folder

    If you are on a Sco machine, there's "dircmp". Hope it helps. Theophilos. ----------- There are only 10 kinds of people: Those who understand binary and those who don't.
  11. theotyflos

    Set cursor at the begining of the selection after EM_SETSEL

    Forgot to say that this is a *single* line textbox. After doing some search in msdn I found out that the order of the "start", "end" parameters are respected if the control has the *multiline* attribute. So either I have to change the textbox to multiline or I'll have to wait for some answers...
  12. theotyflos

    Set cursor at the begining of the selection after EM_SETSEL

    Hi group, I need some help with the EM_SETSEL message: I have a text box like this: abcdefghijklmnopqrst After I send a EM_SETSEL message with parameters 10, 16 it selects characters from "k" to "p": abcdefghijklmnop|qrst with the cursor left after the "p" Is there any way that the...
  13. theotyflos

    Logic for Keeping chars (Not replace)??

    Create a project with a form, place 3 textboxes (txtSearchString, txtKeepChrs, txtResultString) and a button (btnKeep) on it and put the following code to the button's click event: Private Sub btnKeep_Click() Dim strSearch As String Dim strKeep As String Dim tmp As String Dim chr As String * 1...
  14. theotyflos

    Thoughts on splitting a huge file to smaller ones.

    First of all, my deepest apologies to all of you for beeing so late to reply. I'm very sorry for that. The main reason for beeing so late is that I first wanted to study very carefully your answers. Frederico I can't put the customer's code in the filename, because then, I couldn't make...
  15. theotyflos

    Thoughts on splitting a huge file to smaller ones.

    Hi group, I would like to share my thoughts with you and ask for your suggestions and/or thoughts on the following situation: Language is Rm/Cobol v7.10 on Sco Unix 5.0.5. I have a file that looks like this: Select Optional Signals-Fil Assign To Random...

Part and Inventory Search

Back
Top