need help in TrimStart()
-
Hi, in my project i have to use TrimStart(), for this i included "mscorlib.dll", but i am getting error message as D:\Sheshidar\DiplomArbeit\DAP\DAPDlg.cpp(8) : fatal error C1083: Cannot open include file: 'mscorlib.dll': No such file or directory when i searched for help most of the results giving for VC++.Net, but i am working on VC++6.0 can u help me in this how to overcome on this error and how to add mscorlib.dll for my work. thanking you have a nice time ciao sheshidar patnam
-
Hi, in my project i have to use TrimStart(), for this i included "mscorlib.dll", but i am getting error message as D:\Sheshidar\DiplomArbeit\DAP\DAPDlg.cpp(8) : fatal error C1083: Cannot open include file: 'mscorlib.dll': No such file or directory when i searched for help most of the results giving for VC++.Net, but i am working on VC++6.0 can u help me in this how to overcome on this error and how to add mscorlib.dll for my work. thanking you have a nice time ciao sheshidar patnam
you can't use the .Net framework in VC 6.0. You will have to use CString or the C-Runtime Library funcitons.
-
Hi, in my project i have to use TrimStart(), for this i included "mscorlib.dll", but i am getting error message as D:\Sheshidar\DiplomArbeit\DAP\DAPDlg.cpp(8) : fatal error C1083: Cannot open include file: 'mscorlib.dll': No such file or directory when i searched for help most of the results giving for VC++.Net, but i am working on VC++6.0 can u help me in this how to overcome on this error and how to add mscorlib.dll for my work. thanking you have a nice time ciao sheshidar patnam
FRIEND DONT INCLUDE DLL FILE dll project generates two important files 1).dll 2) .lib A)copy these both files in your main project debug dirctory B)copy the header file of the all\required classes used in DLL PROJECT in to main project directory. Include these header files wherever it does not identify class if required. C)IN MAIN PROJECT Goto Menu Project - > settings open the link tab inthat Object\link modules type the name of lib file with extension D) In addition copy the dll and lib in your main project folder also remember earlier i asked to copy in debug folder where your exe gets generated now i am asking just for safety. REMEMBER DLL IS NOT HEADER FILE TO INCLUDE still problem contact me shivditya@hotmail.com || ART OF LIVING ||
-
you can't use the .Net framework in VC 6.0. You will have to use CString or the C-Runtime Library funcitons.
-
The easiest way is to use CString LeftTrim, but if you can't use CString. You might be able to use StrTrim, but it will remove the chars from the left and right, so if that will not work for you, you will have to loop through the string.