Need Help (Command Console)
-
hey guys i am new here i need help you guys are pro i hope i am in right place i need some dll to call function like command console press key to call console then you type in it "hello guys" it will output hello guys as strings how i wanna use that dll load_library "Console.dll" get_proc_address "Commands"
-
hey guys i am new here i need help you guys are pro i hope i am in right place i need some dll to call function like command console press key to call console then you type in it "hello guys" it will output hello guys as strings how i wanna use that dll load_library "Console.dll" get_proc_address "Commands"
Are you sure you'd like to do it using some managed C++/CLI code? Then show your code...
-
hey guys i am new here i need help you guys are pro i hope i am in right place i need some dll to call function like command console press key to call console then you type in it "hello guys" it will output hello guys as strings how i wanna use that dll load_library "Console.dll" get_proc_address "Commands"
-
hey guys i am new here i need help you guys are pro i hope i am in right place i need some dll to call function like command console press key to call console then you type in it "hello guys" it will output hello guys as strings how i wanna use that dll load_library "Console.dll" get_proc_address "Commands"
Google would have saved you a lot of time here - MS Learn | Create a C++ console app project[^] As a basic you will have something like -
#include
#includeint main() {
std::string line;
std::cout << "Enter a line of text: ";
std::getline(std::cin, line);
std::cout << "You entered: " << line << std::endl;
return 0;
} -
Google would have saved you a lot of time here - MS Learn | Create a C++ console app project[^] As a basic you will have something like -
#include
#includeint main() {
std::string line;
std::cout << "Enter a line of text: ";
std::getline(std::cin, line);
std::cout << "You entered: " << line << std::endl;
return 0;
}thank you very much sir for reply but i need dll file to use them i have no idea how to write codes in c++ i need dll to get job done you can write any code language just need .dll file :sigh:
-
thank you very much sir for reply but i need dll file to use them i have no idea how to write codes in c++ i need dll to get job done you can write any code language just need .dll file :sigh:
If you're asking for someone to write this code for you, that's not going to happen.
Asking questions is a skill CodeProject Forum Guidelines Google: C# How to debug code Seriously, go read these articles. Dave Kreskowiak
-
thank you very much sir for reply but i need dll file to use them i have no idea how to write codes in c++ i need dll to get job done you can write any code language just need .dll file :sigh:
Yeah sorry, as Dave stated, not going to happen if you want someone to write your code for you, not how it works here on CP