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

Search results for query: *

  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...
  16. theotyflos

    Rename / remove directory

    or use: rmdir \-ltr or: rmdir '-ltr' # single quotes If the directory isn't empty use rm -r instead of rmdir. The bottom line to all the answers, is to find a way to escape the minus from the shell. Theophilos. ----------- There are only 10 kinds of people: Those who understand binary...
  17. theotyflos

    File Status 22: which key?

    [banghead] It does NOT work if there are no records in the file and some other process writes a record between this process's "end-start" and "write": Both processes will get an AutoIncrement of 1. [hairpull] Theophilos. ----------- There are only 10 kinds of people: Those who understand...
  18. theotyflos

    File Status 22: which key?

    oops!!! sorry for all the "*"s. Theophilos. ----------- There are only 10 kinds of people: Those who understand binary and those who don't.
  19. theotyflos

    File Status 22: which key?

    Frederico, Down to your quote I agree 100% with you. Regarding the separate file for holding the sequence number, I don't quite like it, first because of the extra overhead (updating 2 files instead od one) and second because a lot of things could go wrong between the "get the sequence...
  20. theotyflos

    File Status 22: which key?

    PHV, It sure is (as i stated in my answer to him), I was just wishing for a more direct solution. Well, I think that sanity checks before the WRITE aren't enough in a multiuser environment, since there is a time window between the check and the actual WRITE. On a second thought, there may be...

Part and Inventory Search

Back
Top