-
Replied To a Post in Windows 8.1 desktop keeps flickering on VirtualBox
What host OS are you running? I have run XP and Win7 on my CentOS 6 Linux system without problems. Haven't tried Win8.x yet. -
Replied To a Post in The Right To Repair Bill. Did you know?
This entire situation has gone way out-of-hand. Fix your iPhone with non-apple parts? Oops - it's now a brick. Fix your car or have it fixed at an independent shop? … -
Replied To a Post in Can't access the Internet on another network with the same SSID as my own
The simplest solution is to change your network's ssid to some unique name that will not likely be replicated somewhere else. You can keep your password. -
Replied To a Post in Set Cloud Storage Size
Have you looked into Amazon's S3 storage service? -
Replied To a Post in error in C++ program to implement RSA algorithm for key
As are 5 and 7 (primes). Post your code please. RSA algorithms are covered thoroughly in a lot of open source documents and code. -
Gave Reputation to happygeek in C++ Program
Write a question, in plain English, that explains exactly what problems you are having with your homework assignment. Reveal the code that you have prepared so far, and point to … -
Replied To a Post in need help understanding c++ code
Assuming that line 4 is the contents of the function on line three, then your code is totally bogus. Is 'a' an instance of some class, and getdetail() a member … -
Replied To a Post in Making Inventory for game with Composite C++
1. Leave the loop out of getDescription() for Arrow derived classes. 2. Don't derive ArrowBundle from the Arrow class. 3. In main() for your choices, the arrow types should not … -
Replied To a Post in need a video rating in word press with an special rating item
Please do not double-post here. If it was a mistake, you can delete one of them. -
Replied To a Post in reflection in c++
You cannot do what you want in the matter of what you want. However, if your classes have factory methods, and are registered with a "global" factory, then you can … -
Replied To a Post in I'd appreciate anyone who can help me solve the next challenge
Sorry, but we don't do your school work for you. Make an effort. Post your code and errors/problems you are having here and we may be able to help. -
Replied To a Post in programming
Heap memory management is not a simple issue. If you are using C++11 then look into shared_ptr, weak_ptr, and unique_ptr classes for memory management of them. For C++ reference on … -
Replied To a Post in Question on exception specification in declaration
You don't show the code in your Territory destructor. Are you throwing an exception there? If so, then you need to declare that in the header. -
Replied To a Post in print parent node for a child node value using libxml2
Much better. Here is a link to the libxml2 documentation. You may find xpath of use. http://www.xmlsoft.org/html/index.html -
Replied To a Post in Web app cost
What is your time worth (being self-employed it is worth more than if you were an employee with benefits, etc)? Multiply that by 475. Require half on delivery, and half … -
Replied To a Post in PHP get one array element
In this code <?php foreach($currencies as $m => $value) { ?> <p><a href='#' type='submit' data-toggle='modal' data-target='#currencyModal'><?= $m; ?></a></p> <?php } ?>" You iterate through the entire array, so naturally you … -
Replied To a Post in c++(Class Hierarchy (at least 3 “deepâ€, and at least 6 non-abstract classe)
Do you really expect us to analyze and comment on almost 1000 lines of code? I'd be happy to for my normal consulting rate of $200 USD per hour... :-( -
Replied To a Post in programming
There are plenty of books, including online, which will cover those subjects for you. This forum is not a classroom. -
Replied To a Post in New Wearable Keyboard?
The goggles look totally dorky! The concept is good. If it had a display something like Google Glass it wouldn't be so bad. -
Replied To a Post in Power supply and CPU heat
This is a classical symptom of an underpowered power supply. Rule of thumb is to get a power supply with twice the wattage as you figure you will need. -
Replied To a Post in Drawing asterisks * shape problem
Show your output. -
Replied To a Post in write a c++ program that asks auser to insert 2 nubers
Sorry, but we don't do your homework for you. Code the problem and when you are having trouble post the code with errors and an explanation of when you get … -
Replied To a Post in Int
Neither are good code. A string is not an integer. The length may be. Any character of the string can be considered an integer, but the string itself is not. … -
Replied To a Post in print parent node for a child node value using libxml2
Please put your xml in code blocks and make sure they are properly indented and nodes are on separate lines. No one wants to analyze this as is. -
Replied To a Post in Question on C++ library selection
You need to use a good graphics library that may have downloadable extensions to do what you want. Check out Qt. There are also some good gaming development platforms, but … -
Replied To a Post in PC loses signal after Windows logo
What happens if you boot from a Windows install CD/DVD? -
Replied To a Post in Shared Folder stopped Sharing to Laptop ?
I would try dropping the share, reboot, and reestablish the share. Also, when you try to log in again from the laptop, make sure the displayed workgroup is correct. If … -
Replied To a Post in Farmer crossing river with wolf, duck, bag of corn
Simple. The farmer secures the duck under his hat - now there is only the farmer, the wolf, and the bag of corn which the wolf won't be interested in. … -
Replied To a Post in the second option(PS3), when chosen the progarm does not run further...
1. Please indent your code. 2. It is not polite to ask people to analyze almost 300 lines of code in a forum like this. 3. Isolate your problematic code … -
Replied To a Post in Need advice for make enterprice level software
Study and work in the subject for about 5+ years and you might get a clue. FWIW, VBA and other Visual Basic versions are NOT used for enterprise class software, … -
Replied To a Post in PHP Protect Against SQL Injection
NEVER allow direct SQL code to be passed to your application. I always use stored procedures in the database and data binding to eliminate SQL injection altogether. You can write … -
Replied To a Post in Incrementing Transaction ID
You need to issue a `begin transaction` and `commit transaction` statements before/after the actual SQL update statement. That will protect you from other activities from interfering with your transaction. That … -
Replied To a Post in get saturdays using php
Start by writing out the algorithm in non-code terms to be sure you understand it. Then apply the algorithm manually to see if it corresponds to what you can observe … -
Replied To a Post in how to get count number of saturdays and sundays between two dates
Sorry, but we don't do your homework for you. Show your work and we can help. FWIW, this is a generic algorithm and the code in php, c++, c, c#, … -
Replied To a Post in Assignment doesn't work between pointer objects
You can also add a `b*` extractor method the class a that returns the `b*` from the a object. Then your assignment would probably work. operator b* () { return … -
Replied To a Post in Convoluted MySql Query
Show your work. Just stating the problem would give us enough information. -
Replied To a Post in harrassed
1. Get a new phone and change all your phone passwords. 2. Wipe all your systems, including the BIOS flash memory. This would include using an industrial strength disc eraser … -
Replied To a Post in Calling Method On Main Thread when ThreadPool Ends
Lock a mutex? -
Replied To a Post in Need ideas with creating a Versioning module for a Case Management System.
This is not trivial and telling you how to start doing this is not in the scope of these forums. There are open source web-based tools out there that will … -
Replied To a Post in sql server connection error
Have you tried restarting the server? Did your system crash while SqlServer was running? You also might run a disk check to see if you have disc / file system … -
Replied To a Post in I want to make a game that looks like Rocket Mania
No code. No help... Post the relevant code where you are having a problem. -
Replied To a Post in what should i study to learn ORACLE?
@cereal's link is a good place to start. A bit of background information - PL/SQL is a derivative of the ADA programming language. It can also call into the Oracle … -
Replied To a Post in binary tree
Please DO NOT multi-post questions to the forums. I have made some suggestions in your other post. Please delete this one. -
Replied To a Post in binary tree
This constructor is bad - do NOT initialize in the body of the constructor, but in the initializer block: // Bad usman::usman() { root=leaf=NULL; count=0; } // Correct usman::usman() : … -
Replied To a Post in Using static_cast<char> when converting to lowercase character
There is no real reason other than "showing off". That said, toupper(int ch) returns an int, so they may have wanted to force it to return a char, which they … -
Replied To a Post in Count even and odd numbers
Initialize even and odd to 0 when you declare them. Don't reset them inside of your loop. -
Replied To a Post in Windows 10 Updates
This cruft is why I refuse to use Windows. I run Linux on my systems, even my laptop. -
Replied To a Post in php write file on other server/pc
Assuming you have an nfs or samba share mounted on the remote system, this should not be a problem. I have done this frequently in the past. -
Replied To a Post in How to recover android phone contacts?
I use gmail and have my phone automatically sync with my gmail contact list. I can add a contact from my workstation and it will show up on my phone … -
Replied To a Post in Grunt Install not going so well
Are you sure all your related code is up-to-date and/or in sync with the version of grunt that you are trying to install? Also, you need to make sure that …
The End.