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. TheVisitor

    Invalid string offset AH=9 INT21h

    The MOV AX,DATA_SEG MOV DS,AX lines did not work. I could not create a .COM with it. Linker said: "Segment relocatable items present". The PUSH CS and POP DS lines resulted in a MOV DX,[0000] line. I figured out how to do it. GROUP the two segments. above the ASSUME line...
  2. TheVisitor

    Invalid string offset AH=9 INT21h

    Unfortunatelly your suggestions didn't work: MOV DX,OFFSET USAGE_LINE and LEA DX,OFFSET USAGE_LINE. I tried to put an ORG 100h in the DATA_SEG part too, that did not work either. Disassembled the line would say MOV DX,0100 though, but the string started at offset 0210h! I think I'll use a...
  3. TheVisitor

    Invalid string offset AH=9 INT21h

    I can't get the right offset to the string! When I disassemble my .COM file, the LEA line would read: MOV DX,0000 Can somebody tell me what I am doing wrong? ------------------- MY CODE ASSUME CS:CODE_SEG,DS:DATA_SEG CODE_SEG SEGMENT ORG 100h MAIN PROC NEAR MOV AH,09 LEA...
  4. TheVisitor

    Parsing html/text with PHP

    Okie, thanks. By the way, since . doesn't match newlines, and I want to go thru the whole html document, must I just preg_replace newlines away, or what should I do?
  5. TheVisitor

    Parsing html/text with PHP

    Hello, I'm new to PHP, and was wondering what would be the best way to extract text out of a html file. Now I have the file as a string, and let's assume I want to get text between the first occurrence of &quot;<h1>&quot; and the following &quot;</h1>&quot;. Like: <h1>This is the text I'd like...
  6. TheVisitor

    &quot;A required .DLL File, AC1st15.dll, was not found&quot;

    i saw a message where someone was having a problem with a missing &quot;AC1ST15.DLL&quot; file. i'm having the same problem. i was wondering if you can send me the shared file to VDESIGN_CG@HOTMAIL.COM I would greatly appreciate it. thanks. CHARLES

Part and Inventory Search

Back
Top