Looking for Cursor contol characters for Windows

Ask a Question related to Ruby, Design and Development.

  1. #1

    Default Looking for Cursor contol characters for Windows

    I'm writing a ruby program with runs in a Command windows (DOS Box)
    on Windows 2000 and need to update certain files on the screen with out
    repainting the whole screen. To accomplish this I am looking
    for the table of control characters which can move the cursor
    around.

    Any ideas or references to packages with these capabilities
    would be greatly appreciated.

    John


    spanton7 Guest

  2. Similar Questions and Discussions

    1. How can i contol the independent Actions
      how can i control the independent calls. means In JAVA , we can use Synchronize keyword for block, methods . In flex any option is there.
    2. Validation Summary Contol
      I am trying to add a validate summary control to my composite control. I add it to the controls collection and all the other validation control stop...
    3. Special characters in Windows XP
      Hello, My application contains some text which for some reason doesn't show correctly in Windows Xp. The text is in Spanish and all the special...
    4. Custom Contol Can't Be Viewed
      I have created a custom control, a subclass of System.Web.UI.WebControls.DataGrid which contains columns specific for personnel data. The control...
    5. Failed to contol SOAP encoding
      Hi All, I have a webservice which I want to return messages in the encoded style. I used both SoapDocumentService(Use:=SoapBindingUse.Encoded)...
  3. #2

    Default Re: Looking for Cursor contol characters for Windows

    On Wed, 2003-07-02 at 22:05, spanton7 wrote:
    > I'm writing a ruby program with runs in a Command windows (DOS Box)
    > on Windows 2000 and need to update certain files on the screen with out
    > repainting the whole screen. To accomplish this I am looking
    > for the table of control characters which can move the cursor
    > around.
    >
    > Any ideas or references to packages with these capabilities
    > would be greatly appreciated.
    search for "ANSI control codes" or "VT100 Control codes"

    ESC[$v;$hH

    where ESC is the escape character, decimal 27, $v is the row, and $h is
    the column, and the [, ; and H are literal.

    Ari
    >
    > John
    >
    >
    >

    Aredridel Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139