My users will be copying in a string about 50 characters long, which the program will decrypt. I have this working fine in a Javascript version. In C++ it's a different story. How can they paste this string from the clipboard into the application?
This ...
... works for typing in the stringCode:string coded; cout<<"Copy in the string"; cin>>coded; cin.get(); cout<<"You entered: "<<coded; cin.get();but copying and pasting just outputs "You entered: ^v"
![]()
Is this moderately possible for someone new to C++ ??
Thanks



LinkBack URL
About LinkBacks
but copying and pasting just outputs "You entered: ^v"



