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 SkipVought 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. butler

    Cobol Report Writer

    Greetings, I have a program a detail line, and 4 levels of control breaks. I let the user decide what level of detail he wants to show, and use SUPPRESS PRINTING to only print what the user wants to see. It works but I have two thing that seem like they should be simple but am struggling...
  2. butler

    get the users ip address

    Thanks Truusvlugindewind, I did chane the W-CMD-LS content to be relative to my unix system, and when I loked at it in the debugger it was built correctly, and executed correctly at the unix prompt. As a work around, I ended up modifying the system wide login script to create an environment...
  3. butler

    get the users ip address

    Ok, I tried out the above code in your example and it runs clean, but CMD-LS-REC comes back empty! :(
  4. butler

    get the users ip address

    Thanks Truusvlugindewind! That is slick! --bill
  5. butler

    get the users ip address

    I'm using microfocus on a unix platform. How do i get the ip address of the users? Thanks --bill
  6. butler

    RegExp problem

    Greetings, I have a VB program that uses the clsRegExp from the 'Microsoft VBScript Regular Expressions 5.5'. I'm wondering if this is a bug? I have this string: "here’s proof of what I’ve been saying" And this expression: [\200-\377] Basically what this does is scan email for ascii...
  7. butler

    cobol key map

    Greetings, Using a debugger, I stepped thru the lagacy cobol software I am trying to access with the vt emulation. Here is the code if uses to pick up Fkeys: 03 DISK-ERR PIC XX. ... ACCEPT SH-2 ESCAPE GO TO 015-EOJ. ACCEPT DISK-ERR FROM ESCAPE KEY. The expected return codes for the...
  8. butler

    cobol key map

    The application is sending key codes for all function keys from F1 thru F24, but it's documentation says its VT100, and it registers itself with unix as vt100. Can I just change the TERM=vt100 to TERM=vt200?? I am going to try that COBOL program today. Here is what the telnet application guy...
  9. butler

    cobol key map

    Greetings, I have a handheld wireless device (Blackberry 7510) running telnet vt100 emulation. I am using this to access a microfocus cobol application running on IBM/AIX. The problem is, I can't get function keys F5-F12 to work. I have tried running keybcf from from the Blackberry, but...
  10. butler

    ie problems after windows 95 to 98 upgrade

    Thanks everyone, The problem did turn out to be a winsock problem. I never realized before that windows networking can function, TCP and PING can function, but higher level services will not work if winsock is bad. I found a great site with a winsock restore/fix for Windows 98 at...
  11. butler

    ie problems after windows 95 to 98 upgrade

    Thanks oldcomptrguy, But no modem here. I'm on a corporate lan/wan. Internet Explorer and tcp/ip is set up correctly and working. Here are some of the other things that I have discovered: 1. I installed Netscape Navigator and it does not work either, so its not ie related. 2. I have a...
  12. butler

    ie problems after windows 95 to 98 upgrade

    Greetings group, I upgraded a pc by installing windows 98 over windows 95. I wanted to keep all of the users existing applications. But now Internet Explorer does not work. It loads, but I get a page not found error for both internal and external sites. It's strange. TCP/IP is working and...
  13. butler

    problems after upgrading to 95 to 98

    Greetings, I upgraded a pc by installing windows 98 over windows 95. I wanted to keep all of the users existing applications. But now Internet Explorer does not work. It loads, but I get a page not found error for both internal and external sites. It's strange. TCP/IP is working and set up...
  14. butler

    backing up the running-config over the terminal port

    That will work, --thanks!
  15. butler

    backing up the running-config over the terminal port

    then how do I restore it later?
  16. butler

    backing up the running-config over the terminal port

    Thanks everyone, No transfer over a simple serial connection? Oh well, more work for me... :(
  17. butler

    backing up the running-config over the terminal port

    Greetings group, You would think that this would be a snap but I just can't make it work. I am trying to backup a Cisco 1700 router config and ISO to a PC directly connected to the consel on the router. I tried copy flash xmodem among other things with no success. Please Help! Thanks --bill
  18. butler

    bind a text box to a custom class property

    Thanks, your reply was a big help! I found this artical on the web that shows how to make a reusable event class and a connect class that connects object (my text box) and my class.property. http://archive.devx.com/upload/free/features/vbpj/2000/09sep00/pc0009/pc0009.asp Thanks again, --bill
  19. butler

    bind a text box to a custom class property

    Greetings, Is there a way to bind a text box to property in a class. This is what I tried but it didn't work: txtName.DataField = clsCustomer.Name I would like this to work so that when clsCustomer.Name changes the text box is automatically updated, and when txtName.text changes then...
  20. butler

    dynamically splitting large html files

    thanks Pete I really like the idea of having each PAGE as it's own row in a database. I'm going to test it out with some large and small file. Thanks again, --bill

Part and Inventory Search

Back
Top