

InterviewSolution
Saved Bookmarks
1. |
Solve : cursor help!? |
Answer» <html><body><p>is it possible to change the cursor everytime I run my .bat file?<br/>thanks!Do you mean real MS-DOS or a Windows command window? If Windows, click the Properties icon in the top left corner and select Small, Medium or Large.<br/><br/>ms dos.<br/>make it as .bat if possible? Code: <a>[Select]</a>You can write a short program to modify the MS-DOS cursor. One way to do this is by creating and executing a short Debug script. <br/>The changes made are temporary in memory. Therefore, if the goal is to have the cursor altered at all times, it will be necessary to <br/>insert a line in the AUTOEXEC.BAT file to call the cursor program on boot.<br/><br/>To change the appearance of the MS-DOS cursor, enter the following at the command prompt:<br/><br/>Command Prompt Enter This<br/>-------------- ----------<br/><br/><a href="https://interviewquestions.tuteehub.com/tag/c-3540" style="font-weight:bold;" target="_blank" title="Click to know more about C">C</a>:\> debug <press ENTER><br/>- a100 <press ENTER><br/>287E:0100 mov ah,01 <press ENTER><br/>287E:0102 mov cx,010n <press ENTER> (n range=1-4)<br/>287E:0105 int 10 <press ENTER><br/>287E:0107 int 20 <press ENTER><br/>287E:0109 <press ENTER><br/>- n C:\cursor.com <press ENTER><br/>- rcx <press ENTER><br/>CX 0000<br/>: 9 <press ENTER><br/>- w <press ENTER><br/>Writing 00009 bytes<br/>- q <press ENTER><br/><br/>C:\><br/> <br/><br/>Changing the value of n (1-4) will <a href="https://interviewquestions.tuteehub.com/tag/result-238022" style="font-weight:bold;" target="_blank" title="Click to know more about RESULT">RESULT</a> in different appearances for the cursor, where n=4 is a large cursor.<br/>thanks! I'll try that one.<br/>what if the image of the cursor is the that will change? Quote from: night-rider on June 22, 2010, 05:55:23 PM</p><blockquote>what if the image of the cursor is the that will change? <br/></blockquote> <br/>Please write that in English<br/> Quote from: Salmon Trout on June 23, 2010, 12:05:33 AM<blockquote>Please write that in English<br/><br/></blockquote> I am <a href="https://interviewquestions.tuteehub.com/tag/guessing-2686311" style="font-weight:bold;" target="_blank" title="Click to know more about GUESSING">GUESSING</a> this is what he wants:<br/><br/>"What if I want the image of the cursor to change?"The DOS cursor is just another text character; usually a block or an underscore; it possible to configure how many <a href="https://interviewquestions.tuteehub.com/tag/pixels-1155203" style="font-weight:bold;" target="_blank" title="Click to know more about PIXELS">PIXELS</a> are lit on a row-byrow basis. There is no "image".<br/>oopzzz! sorry for the wrong gramming^^<br/>what if the image of the cursor is the one that will change?<br/>sorry again!!! I was mistakened.<br/>I THOUGHT CURSOR IS THE MOUSE POINTER??? <br/>commonly a ARROW image Quote from: night-rider on June 24, 2010, 03:24:07 AM<blockquote>oopzzz! sorry for the wrong gramming^^<br/>what if the image of the cursor is the one that will change?<br/>sorry again!!! I was mistakened.<br/>I THOUGHT CURSOR IS THE MOUSE POINTER??? <br/>commonly a ARROW image<br/></blockquote> Quote from: Salmon Trout on June 19, 2010, 12:43:47 AM<blockquote>Do you mean real MS-DOS or a Windows command window? <br/></blockquote> any suggestion pls...You want to change the <a href="https://interviewquestions.tuteehub.com/tag/default-244456" style="font-weight:bold;" target="_blank" title="Click to know more about DEFAULT">DEFAULT</a> Windows cursor from an arrow to something else? Why?<br/>to add unique feature everytime I run my system.Then get and install a cursor editor program, or look at the cursor options in Control Panel.<br/>so there's no possibility to change it through a .bat code? RUNS ONLY WHEN I RUN MY .EXE</body></html> | |