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
~1K People Reached
Favorite Tags

7 Posted Topics

Member Avatar for greatunknown

I am trying to let users enter various information onto my site and then let them export it into Word...I am able to get the exporting down fine and automatically open the Word Doc in Word, but Im not sure how to do formatting. Using html tags in the PHP …

Member Avatar for pbcomput
0
608
Member Avatar for greatunknown

I was wondering if there was any way to use Javascript (or any language) to select text located in a div for the user, and I dont mean "highlight", as in, change the background color, I mean to select the text for use in copying and pasting. ...I havnt come …

Member Avatar for greatunknown
0
80
Member Avatar for greatunknown

To get to the brunt of it, I have a link list on the left sidebar of my site, each link is just a recordset table value and I used a repeating region to repeat down. Therefore the list of links is essentially a list of recordset table values from …

Member Avatar for blackhole
0
93
Member Avatar for greatunknown

I have a simple display() method that essentially looks like this [CODE] #include <stdlib.h> #include <iostream> #include <iomanip> #include "Pieces.h" using namespace std; void Pieces::BeginInstruct(int& i){ cout<<endl<<endl; cout<<i++<<":"<<setw(5)<<"Open the program."<<endl <<i++<<":"<<setw(5)<< "Click \"File\" and then\"New\"." <<endl; } [/CODE] Theres obviously more but what I am concerned with is that setw() …

Member Avatar for greatunknown
0
281
Member Avatar for greatunknown

I have a class with private strings and after I set information I want to the given strings in that class I need to push that data to a vector, which is stored privately in a separate class...I feel as though my code makes logical sense but obviously I am …

Member Avatar for greatunknown
0
115
Member Avatar for greatunknown

if I have a class... [code] class Note { private: string step; string octave; string duration; }: [/code] with the appropriate access functions, and then create a class [code] class Measure { private: vector<class Note> Measurenum; }; [/code] What is the best method to access the data (presumably step, octave, …

Member Avatar for mrnutty
0
108
Member Avatar for greatunknown

What is the best way to add something to the nested vector of a multidimensional vector...I already have ints inside, lets say VECNAME[rowone][columntwo]...How can I add to columntwo???

Member Avatar for greatunknown
0
88

The End.