Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
~4K People Reached
Favorite Forums
Favorite Tags

12 Posted Topics

Member Avatar for GatorProgrammer

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 …

Member Avatar for Satyrn
0
125
Member Avatar for cent91

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 …

Member Avatar for Satyrn
0
468
Member Avatar for lightdshadows

This looks like garbage input from memory, if you initialize all your variables to zero will the program output zero or garbage?

Member Avatar for lightdshadows
0
210
Member Avatar for Satyrn

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 …

Member Avatar for Satyrn
0
419
Member Avatar for replicant.nz

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 …

Member Avatar for Satyrn
0
240
Member Avatar for Satyrn

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 …

0
72
Member Avatar for ameya1992

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.

Member Avatar for raptr_dflo
0
1K
Member Avatar for Satyrn

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 …

Member Avatar for Ancient Dragon
0
116
Member Avatar for rhyza

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 …

Member Avatar for Satyrn
0
172
Member Avatar for eustine

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]

Member Avatar for Chilton
-3
151
Member Avatar for p1nchbeck

Unless I am mistaken you haven't provided the source that the linker is complaining about.

Member Avatar for p1nchbeck
0
284
Member Avatar for IndianaRonaldo

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 …

Member Avatar for play_c
0
176

The End.