Posts
 
Reputation
Joined
Last Seen
Ranked #2K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
Ranked #3K
~8K People Reached
Favorite Forums
Favorite Tags

14 Posted Topics

Member Avatar for lllllIllIlllI

And if you want a console that stays open afterward like IDLE does, for browsing objects and output, use [CODE]C:\PythonXX\python.exe -i "$(FULL_CURRENT_PATH)"[/CODE] I'd sage this post but I don't see an option..

Member Avatar for Kuldeep_8
1
3K
Member Avatar for LieAfterLie

I was following [this tutorial](http://www.swiftless.com/tutorials/opengl4/1-opengl-window.html) for my first attempt at OpenGL. All I'm doing is initializing an empty window. His VS 2010 code is [here](http://www.swiftless.com/?download=1%20-%20OpenGL3%20-%20Window). Using Dev-C++ as my IDE on Windows 7, and MS SDK 7.1, I get this error: [Linker error] undefined reference to `_imp____wglewCreateContextAttribsARB' ld returned 1 …

Member Avatar for DeanMSands3
0
1K
Member Avatar for LieAfterLie

I got a laptop with vista and connected to the wireless router here with no problems. Everything went along smoothly for a couple days then it decided to quit working. My wireless connection is still perfect, I can ping and browse anything by IP only. It stopped resolving domain names …

Member Avatar for LieAfterLie
0
135
Member Avatar for LieAfterLie

For some reason, newline characters seem to be using 2 bytes in text files instead of one. Is this normal? When I open a text file and look at the size, I get one more for every character I add, except for newlines, which add 2 bytes.

Member Avatar for John A
0
118
Member Avatar for LieAfterLie

I'm making a program that compresses text files using the LZW compression algorithm and creates a seperate compressed file. I made a file type and extension and icon for this file type (.nct), and set up 2 actions for it - one that calls the program and passes the .nct …

Member Avatar for vijayan121
0
122
Member Avatar for LieAfterLie

How would you change the same member of many objects of the same class (or structure if possible)? [CODE]struct point { float x, y, z; } point a, b, c; a.x += 20; // b.x += 20; // now how would i do this in one statement? c.x += 20; …

Member Avatar for LieAfterLie
0
80
Member Avatar for LieAfterLie

How would you make the program pause for a certain amount of time? I can't just tell it to do some trivial task over and over for so many loops, because the compiler seems to know its trivial and cuts it out. There's gotta be a simpler way anyway.

Member Avatar for LieAfterLie
0
553
Member Avatar for LieAfterLie

Okay, Iv'e finished learning C++. What can I do with it? Specifically, I want to do some graphics stuff, anything beyond iostream and fstream. What comes after C++? I know it does more than this. If I could just have a function to set a pixel, I could make my …

Member Avatar for LieAfterLie
0
106
Member Avatar for ajinzo

Use arrays rather than pointers when you can, they're simpler. And watch that accidentally putting stuff at the end of a comment when you wanted in the code. You did that a few times, it was confusing. And use \n (newline character, yes it's one character, so '\n' is valid) …

Member Avatar for ajinzo
0
134
Member Avatar for LieAfterLie

Hi, i'm new to C++ (well actually i just haven't looked at it in awhile) and I've been trying to figure out how to make my array's content depend on a condition. It's not extremely important, but I think there's got to be an easier way than what I'm using. …

Member Avatar for WolfPack
1
906
Member Avatar for LieAfterLie

I am extremely new to C++, can sum1 tell me a faster way to output stuff than cout? It either outputs too slow or takes too long to automatically scroll or something. I was trying to sort of output and refresh in real time w cout

Member Avatar for AhmedHan
0
434
Member Avatar for yuzhang

I would think specific things like that are easy enough to find online. Yahoo and dogpile and search engines like that are better at finding researchy/technical stuff than Google I think, just search. I am new, forgot the exact syntax of heap commands (I know it involves new and delete), …

Member Avatar for LieAfterLie
0
112
Member Avatar for yuzhang
Member Avatar for aeinstein

This is useless i know, but im using a free compiler i got with C++ for Dummies (which REALLY sucks) and it doesn't have tab characters for specifically that reason i think. Tabbing in it is confusing, i dont get the rules yrt but sometimes it does 4 spaces, 8 …

Member Avatar for aeinstein
0
1K

The End.