5 Solved Topics

Remove Filter
Member Avatar for FC Jamison

How would I write a C++ class of which only one can be created ever be instantiated in any program. I know that ClassName* objectName = new ClassName(); instantiates an object, but how would I make it so when you try to instantiate it more than once you still end …

Member Avatar for rubberman
1
6K
Member Avatar for FC Jamison

I am trying to learn how to write a merge sort function, but I have only gotten so far with the book I am using now: [code] template <class T> void mergeSort(vector<T>& s) { mergeHelper(s.begin(), 0, s.size()); } template <class Itr> void mergeHelper(Itr start, unsigned int low, unsigned int high) …

Member Avatar for Lylla
0
178
Member Avatar for FC Jamison

I don't know if this is the place to ask... Last night I was on my computer when the connection failed...limited or no connectivity. After several hours of reconfiguring the router rebooting the PC, router, uninstalling and reinstalling the network card...still nothing. If I connect directly to teh DSL modem...I …

Member Avatar for Xpenetrator
0
94
Member Avatar for FC Jamison

I haven't used my PowerPoint in forever, but when I tried to modify an old presentation today I could not use the mouse to drag objects. Then I tried clicking on the file menu and found I couldn't unless I right-clicked somewhere on the screen first. Any time I click …

Member Avatar for FC Jamison
0
102
Member Avatar for FC Jamison

OK...here's the background: I want to use javascript to write a CSS dropdown menu. Since I want to be able to float the menu to either the left or the right depending on the site I am using it on, I need to grab the float value (either right or …

Member Avatar for FC Jamison
0
218

The End.