Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

1 Endorsement
Ranked #857
~8K People Reached
About Me

I am an IT graduate, been working as a CSR, no experience in programming. but is looking for any IT related jobs with good compensation

Interests
Programming, Technical Writing
Favorite Tags
Member Avatar for markdean1989

I am an aspiring (at the age of 27) programmer using C++. I have future undertakings including getting a refresher course at a premier University in my country. I am just interested to know in advance how it is to become a programmer. What are the regular routines that you …

Member Avatar for markdean1989
0
300
Member Avatar for markdean1989

Why is it that whenever I use the getline function I get an error during execution. To clarify... I have this code; cout<<"Enter your string: "; getline(cin, myString); //line 1 cout<<"Enter your name: "; getline(cin, myName); //line 2 cout<<"Age: "; cin>>age; //line 3 output: ____________________________ Enter your string: gfgfkjhjkhgg Enter …

Member Avatar for David W
0
2K
Member Avatar for markdean1989

Hi guys, after learning that MingW is newer than Cygwin, I immediately switched over to MinGW and deleted my Cygwin file. I have added the MinGW directory into my Path Variable and also separately downloaded the MSYS which contains the make.exe program. Everything seems fine... until when I ran the …

Member Avatar for マーズ maazu
0
131
Member Avatar for markdean1989

Good day. I was surprised to see that there are no members on objects declared as IFSTREAM and OFSTREAM. I have this code; ifstream indata; ofstream outdata; indata.open(""); outdata.open(""); It can't seem to recognize the member "open". Why is that? Any solution?

Member Avatar for Moschops
0
199
Member Avatar for markdean1989

Hi guys, I just found out that setw is not recognized in Netbeans C++ with Cygwin even when IOMANIP is included in my program. Is there anything I can do for this? I need to format the output of my program, thanks.

Member Avatar for markdean1989
0
151
Member Avatar for markdean1989

Hi, my question is very simple. Like the title says; How to declare an object? I have this declaration in my program; Class_name Object_name; and it is giving me an error, saying "Expected a ';' before "Object_name" And this is driving me nuts because putting a ';' before the object …

Member Avatar for deceptikon
0
374
Member Avatar for markdean1989

I have an issue with the random generator. I use the code; myNumber = rand() % 100; //for numbers 1 - 100; My problem is, the numbers getting generated have a pattern. Such that the first output is 33, 43, 62, 29, 0, 8 ... Why is this so? I …

Member Avatar for rubberman
0
633
Member Avatar for markdean1989

Hi guys! Just needing a little of your help here. I have been looking for a free IDE where I can program in C++ for the past months now after messing up my MSVS 2013 for Desktop. I found Netbeans to be a nice alternative. But I am having some …

Member Avatar for markdean1989
0
195
Member Avatar for markdean1989

Hi guys, good day! I have a question here pertaining to Visual C++ graphics based. I recently started out incorporating GUI into my C++ programs, in this case, a calculator. I have a textbox named TextBox1, the user enters the numbers and operators inside it, and when the button is …

Member Avatar for ddanbe
0
789
Member Avatar for markdean1989

Guys I really need your help here. Recenty my laptop has been having limited connection issues which I was able to resolve via some helpful command prompt such as netsh and ipconfig. However, problems never seem to stop. Now I am getting DNS issues. I attribute it to DNS because …

Member Avatar for markdean1989
0
203
Member Avatar for markdean1989

My main issue here actually is Visual Studio installer (just could not find a specific category above). So here is my poblem. Visual Studio won't progress installing. Once it reaches the Visual Studio C++ Runtime version (and some numbers), it does not progress any further. I even tried leaving my …

Member Avatar for markdean1989
0
242
Member Avatar for markdean1989

My computer keeps popping this message everytime I turn on my computer or when I install downloaded programs. Can somebody tell me what this file is? What it does? Where to get one? and Where to save it? Please.. Thanks.

Member Avatar for string101
0
90
Member Avatar for markdean1989

I just downloaded WAMP 64 bit. Successfully installed. Everything went fine. Problem is, I don't know where to go. Where do I put my codes? Online resources I have read says just create a directory in the root folder or something. Does that mean create a folder in the "www" …

Member Avatar for pixelsoul
0
128
Member Avatar for markdean1989

Hi guys, I just thought of starting PHP as my web scripting language but I don't know which applications I should be downloading. The online resource that I was reviewing says I need to install; PHP Web Server MySQL Can somebody tell me where to get these stuff? (all those …

Member Avatar for markdean1989
0
204
Member Avatar for markdean1989

Guys is there any other solution (other than reinstalling my entire Visual Studio) to this component loading problem that I am having. I have just finished reading my C++ book and I am getting ready to start graphics-based C++ programming when I run into this problem. This is the message …

0
70
Member Avatar for markdean1989

I wonder why this program does not do any changes to the text file that I am trying to modify. Scenario: My program uses the Fstream header file, I declared infile as IFSTREAM and outfile as OFSTREAM. I simply want to transfer data from infile to outfile. The data is …

Member Avatar for markdean1989
0
354
Member Avatar for markdean1989

I wonder why this program does not do any changes to the text file that I am trying to modify. Scenario: My program uses the Fstream header file, I declared infile as IFSTREAM and outfile as OFSTREAM. I simply want to transfer data from infile to outfile. The data is …

Member Avatar for markdean1989
0
516
Member Avatar for markdean1989

I have this AVG Tuneup 2014 installed days ago, expired free trial and of course, like many other software, will ask you to buy the pro version. I would love to buy the pro version but I just do not have a credit card yet (common in my country). So …

Member Avatar for markdean1989
0
298
Member Avatar for markdean1989

Hi I am working on a simple C++.Net project which will allow me to run another program (e.g., I. Ex., Word etc.). However, I can't seem to find any working codes online. Here are the codes I have found so far; ShellExecute(GetDesktopWindow(), "open", "c:\myTestFolder\myfile.exe", NULL, NULL, SW_SHOWNORMAL); requires the inclusion …

Member Avatar for markdean1989
0
323
Member Avatar for markdean1989

*** Systems *** OS: Windows 8.1 64bit IDK: MS Visual Studio Express 2013 for Windows Desktop Problem: I created a simple (very simple) User-defined function named func_compare that compares two numbers, it has two parameters of type Integer. It has no errors whatsoever until you compile it, and it says …

Member Avatar for markdean1989
0
318
Member Avatar for markdean1989

Error : Object referrence not set to an instance of an object Situation; I have an array declared publicly (i.e. outside any events) as Public Shared array_shuffle() As Integer What I want to do is to be able to specify the length and elements of this array from inside events …

Member Avatar for markdean1989
0
194
Member Avatar for markdean1989

here is my code, it is very simple Me.Validate() Me.TableBindingSource.EndEdit() Me.TableTableAdapter.Update(Me.Database1DataSet.Table) MsgBox("Update successful!", MsgBoxStyle.OkOnly, "") Me.TableTableAdapter.Fill(Me.Database1DataSet.Table) Actually, I have been programming for a year or two three years ago but I stopped after my laptop was stolen and due to work. But now I I have a new laptop, and …

Member Avatar for markdean1989
0
148