- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
12 Posted Topics
Re: Your option 1 is asking for a character, not a word, which would require the user to press enter after each letter. I think you probably just want to remove that for loop and do that `cin` once, but not with an index on that char array. As for the … | |
Re: Adding an exception to a firewall is an administrative task that will require users with UAC enabled to give permission to your program. There is no non malicious way to achieve this that I know of however there is a reference to the windows firewall API which will give you … | |
Re: This looks like garbage input from memory, if you initialize all your variables to zero will the program output zero or garbage? | |
I am trying to simplify Maven to use one POM to do both a 64 bit build and a 32 bit build. I have tried to separate the build into two separate executions however I am required to set the compilerExecutable tag specified by the maven-native-plugin to point to either … | |
Re: Are you able to step into a new debug instance and attach the child executable to the debug process to see where the exception is thrown? I don't imagine that you could even attach exe_4.5.exe to the debug according to your error message, just wondering how the debug process goes … | |
I wrote this small script to convert all sh files in a directory and all sub-directories to resolve a compilation error I was getting with cygwin... [CODE] SETLOCAL @echo off :: Locate all sh files in the target directory and then :: Convert CRLF to Unix Style LF echo Converting … | |
Re: You forgot to add the index of the string you wish to print... [CODE]outtextxy(100,j,c[i]);[/CODE] so its printing the entire string each time. Tell me if that works. | |
Hello Daniweb Community, I am migrating a VS2005 solution to VS2008 which often includes its own ras.h file. Unfortunately there are several projects including <windows.h> which includes "ras.h" from the Microsoft SDK. What I would like to do is get a refactoring tool to rename this header file and update … | |
Re: I am not sure I fully understand what you want to be centered. I believe that you want the star to be centered. I don't believe there is a way to say "Center This" in a console app but there is a way you can go about doing it. Basic … | |
Re: see if this corrected syntax helps... [CODE] ... for(a; a>=3 && a<=9;){ cout <<"enter digit" <<endl; cin >> a; if(a>=3 && a<=9) cout<<"good"<<endl; } system("pause"); ... [/CODE] | |
Re: Unless I am mistaken you haven't provided the source that the linker is complaining about. | |
Re: Sometimes an executable created by a solution will reference standard libraries that come with visual studio. If you are running the executable on the machine it was built on it will use the ones in the Visual Studio Directory, however you can easily get Microsoft Visual Studio redistributables without installing … |
The End.