Link to home
Start Free TrialLog in
Avatar of david abu
david abu

asked on

hebrew

hi, i am looking for a function that can read hebrew string from R to left.
i am also have a problem with executing a DOS program from C++, by using the system function. i need an expample.

thenks.
David Abu
Avatar of pangofil
pangofil

There are You reading hebrew string from ?
And what is a problem with executing DOS program ?

Why You can't just use ::WinExec() ?

 
Since this is two questions shouldn't you ask them separatly?

The hebrew string shouldn't be too hard if you can be a little more specific.  Simply reversing a string is trivial.  If you are writing a hebrew word processor, then you have a little more work ahead of you.

Your question about executing a dos program is confusing.  Can you clarify it?

bc
I have a class for reading database-like fields in C++ for DOS, which I wrote. I will give it to you (including source) for 100 points. Write to zvikabh@aluf.technion.ac.il if you are interested.
Are you using a windows or dos program to execute the program?
If windows simply do:
::WinExec("c:\\program.exe");
or if its a dos program then do:
#include <process.h>
main()
{
system("c:\\program.exe");
}


Avatar of david abu

ASKER

hi, i need a source for printing BAR-CODE LABAL in code 39.
i need it very fast !!!
I have to print Barcode Labals on a dot printer or on any other printer !!
ASKER CERTIFIED SOLUTION
Avatar of orenw
orenw

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial