Ask a Question related to Ruby, Design and Development.
-
spanton7 #1
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
-
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. -
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... -
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... -
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... -
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)... -
Aredridel #2
Re: Looking for Cursor contol characters for Windows
On Wed, 2003-07-02 at 22:05, spanton7 wrote:
search for "ANSI control codes" or "VT100 Control codes"> 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.
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



Reply With Quote

