how to put String on Command prompt??

how to put String on Command prompt??

Anonymous
Not applicable
368 Views
1 Reply
Message 1 of 2

how to put String on Command prompt??

Anonymous
Not applicable
i want put particular string on command prompt ...... like ask for enter Email and Password.... pls help....
0 Likes
369 Views
1 Reply
Reply (1)
Message 2 of 2

tbrammer
Advisor
Advisor

Usually you would call functions like

int stat;
ACHAR mail[256];
ads_point pt;
stat = acedGetString(FALSE, L"\nEnter Email: ", mail, 255);
stat = acedGetPoint(pt, L"\nEnter Point: ", pt);

These will display the prompt strings. Note that it often makes sense to start with a newline (\n) to make sure the prompt starts in a new line.


Thomas Brammer ● Software Developer ● imos AGLinkedIn
If an answer solves your problem please [ACCEPT SOLUTION]. Otherwise explain why not.

0 Likes