Topic: Turbo PASCAL String Commands
Not finding your answer? Try searching the web for Turbo PASCAL String Commands
Answers to Common Questions
how to dial a modem through turbo pascal? modem commands
Given modem-commands are correct but transfering data in a robust way can not be done by simply writing to ports. You can, if You are willing to learn about UARTS and various registers manipulate and transfer data using your own code. If yo... Read More »
Source: http://www.experts-exchange.com/Q_10035780.htm
How can I convert a REAL to A STRING in Borland Turbo Pascal 6.0?
I think it should work...... procedure RealToStr(const TheReal: Real; const TotalWidth, SignifDigits: Byte; TheString: string); begin Str(TheReal: TotalWidth: SignifDigits, TheString); end; Read More »
Source: http://www.experts-exchange.com/Programming/Languages/Pascal/Q_20...