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.

0 Endorsements
~2K People Reached
Favorite Forums
Favorite Tags

6 Posted Topics

Member Avatar for mcco1

So, I think I've figured something out for you, I tried building it myself and I can think of two different ways to fix the error: [code]for (int i = 0; i < (int)users.size(); i++) { const char *t = users[i].data(); char t2[30]; memcpy(t2, t, strlen(t)); ChatSession cs(t2); ssid.push_back(cs); }[/code] …

Member Avatar for Ancient Dragon
0
128
Member Avatar for new_divine

Have you tried building any of the WxWidgets provided sample codes or demos? I just recently learned a bit of wxWidgets, and they had proved very useful in figuring out some rudimentary things. So my reccomendation would be to see if you can get one of the samples to build, …

Member Avatar for bnekolny
0
152
Member Avatar for Member #518662

Well, it looks like you can access a member outside of the array: [code]shapeArray[j + 1][/code] because [code]for(int j = i; j < total; j++)[/code] allows it to get to the final member, then you can step one further, putting you outside of the array. Looks like you tried to …

Member Avatar for bnekolny
0
89
Member Avatar for bnekolny

Hello, So I've got a code where I'm wanting to make sure that there is nothing in this class variable "finalgrid". To do this I've got an if statement: [code]if(canvas->finalgrid) OR if(finalgrid)[/code] Sorry for the confusion with the two statements, but I'm working on modifying one project to fit in …

Member Avatar for bnekolny
0
119
Member Avatar for Ather14

So I think your confusion is in the fact that you're using a C++ compiler, but using C code in that compiler to open the file. While the method you're using is very common, there is a C++ method: [code=C++] #include <fstream> #include <iostream> #include <string> #include <sstream> //those are …

Member Avatar for Ancient Dragon
0
1K
Member Avatar for chrishtones

So, I think the previous post was alluding to the fact that: degrees = radians * 180/pi Hope that helps?

Member Avatar for tux4life
-1
189

The End.