-
Replied To a Post in ScanPST.exe is not working in Outlook 2016
Have you looked on the Microsoft web site? This is not likely a problem we can answer for you without more information. -
Replied To a Post in C code snippet
The pointer just points to NULL. It has no storage space. you need to allocate space. You could use strdup to do that. IE, `sentence = strdup("helloworld");` strdup will allocate … -
Replied To a Post in Magic Constants Case Sensitive or case In-sensitive ?
I always cap them because then you can detect them in your code a LOT easier! Also, I am not sure, but they may need to be all caps anyway. … -
Replied To a Post in Boolean's Double Troubles
Booleans are integral values. Floating point values (including doubles) are not. Comparing one to the other results in NAN (not a number) result. Time for you to refresh your math. -
Replied To a Post in how to solve invalid keystore format error in android studio 2.2
I think that Android is trying to tell you that "D:\MyApplication3.idea\workspace.xml" is not a valid key file. Not sure how to fix other than going to the Android web site … -
Replied To a Post in Recommend Me Some Tutorials
There are articles for these on Wikipedia. -
Replied To a Post in Sorry for my absense
So, what happened earlier today with the forums? There was no response until just a bit ago. It looked like your ISP or other service provider was totally down. Anyway, … -
Replied To a Post in c++ read from a file and output sorted content
You need a list of structures that are arranged by title, with a sub-structure of the comments associated. Then you can use either an array of structures (or in C++ … -
Replied To a Post in Computing the the response time of addition of two integer using Java threa
Note that Java is not deterministic. You can do and time an operation once, but the next time the timing may be completely different. If you do this, and the … -
Replied To a Post in Spinning motor in 3 stages. No motor spinning. What is the problem?
So, where is your finite state machine (FSM)? A state machine looks at the state of the system and acts appropriately (hopefully) to transition to the next run state. Do … -
Replied To a Post in Laravel Framework
Try www.php.net. -
Replied To a Post in Windows 10 Creator's Update
I think Microsoft's philosophy is "if it ain't broke, break it anyway"... -
Replied To a Post in How does a TCP server handles multiple connections?
You can use select() with multiple file descriptors. You should also set a timeout value which is one of the arguments to select(). You need to more reading on this. … -
Replied To a Post in Convert mysql code to mysqli
RTFM? The differences between them are minor, but significant. There is no "magic" way to convert mysql to mysqli. It has to be done manually, and painstakenly. Not hard, but … -
Replied To a Post in windows 10
Try copying it, not dragging/dropping it. -
Replied To a Post in insert pdo multiple checkbox value in one column into database and display
What's with the array declaration on line 35? Do you need that? Also, knowing where the error is occuring would be helpful. -
Replied To a Post in The known limitations of using AD for access security and management
Very good questions, and none of them have simple answers. It is after midnight here right now so I will try to respond to some of them tomorrow. Bed is … -
Replied To a Post in Display error beep (8 beeps) even if display cable is removed
You should check the POST (power-on self test) error log in the BIOS. Also, configure the BIOS to report all errors when booting up. -
Replied To a Post in PHP7 and how you've adapted
I started with PHP 5.4.1 some years ago when it first came out. It had a built-in web server that allowed me to test code without a full LAMP stack. … -
Replied To a Post in external dvd drive power
I would agree with rproffitt. It will probably be cheaper (as well as faster and easier) to get something from Fry's or Best Buy or wherever. It will be new, … -
Replied To a Post in "Run-time Error 430 - Class Does Not Support Automation"
This is not enough information. Please show what you have done. -
Replied To a Post in C Language Restaurant POS System
Some of us are professional software engineers. For long term contracts I get $70-100USD per hour. For short term ones, $200. So you can see that the time I spend … -
Replied To a Post in Symantec Google problems
Symantec's certs were serious hacked recently which is why this happened. -
Replied To a Post in parsing string
Show your work where you try to deal with this and then we can help you. FWIW, it isn't difficult and you may want to read the manual (they are … -
Replied To a Post in the string was not recognized as a valid datetime. there is an unknown word
Posting 200+ lines of code for a simple problem is disrespectul of the time we spend to help you. Please show the relevant code for review. -
Replied To a Post in need help
We don't do your homework for you. Make an effort and code it as you think it should be, and then we may be able to help you. -
Replied To a Post in Free Blu Ray player software. Finally. Link to article. For most Windows
Why I don't use BluRay. When you buy it, you don't own it. You are only renting it! -
Replied To a Post in Programming books
Books by Niklaus Wirth and Donald Knuth are good for this. Not cheap, but worth having on hand - they all have places of honor on my book shelf. -
Replied To a Post in run on boot, and power on computer on
RTFM! This is a simple system configuration setting, to instruct the system to restart on power-on. If you can't figure it out by yourself, you should not be doing what … -
Replied To a Post in How to insert and calculate the ttc amount in sqlserver
Please read the terms of service for these forums. We don't do your homework for you. Make an effort to solve this on your own, post your code and issues/errors … -
Replied To a Post in How to Encrypt Multiple Files in Java
You need an encrypt method that takes a list or array of files argument so it can encrypt each and put the output into the output file. -
Replied To a Post in How to change this program to fully OOP ?
OOP - classes + member variables + methods. Look at your code. What things could be expressed in classes? Zombies are one. There may be others. -
Replied To a Post in creating a database to track students' results
Show your work such as what you are proposing for a database structure, how the tables are related, what are the primary and foreign keys, etc. We don't do your … -
Replied To a Post in Which Parts Of Php Not To Learn ?
Do you know any C++ or other object oriented languages such as Java or C#? If so, consider PHP to be C++ for the web: classes, methods, member and global/static … -
Replied To a Post in Looking for a particular type of functional programming examples
This is a good academic paper on function programming in C++: https://people.cs.umass.edu/~yannis/fc++/fc++.main.pdf -
Replied To a Post in php/mysqli
You aren't making much sense. Please be more precise and complete in what you are trying to do, and how you are trying to do it. -
Replied To a Post in every hit not updating when i am using current_timestamp in mysql
Generally, the timestamp field will not be updated unless the row has changed, update statement notwithstanding. IE, it is indicating when the row was physically updated. -
Replied To a Post in Python Pseudo Code
What does "repeat" symbolize (lines 6 and 7)? -
Replied To a Post in How to retrieve "return value;" in servlet1 by servlet2 (no script)
I see the return value, but nowhere do I see where you define the other servelet and from that call controller::processUser. -
Replied To a Post in Creationg of partition # (0,0,0) failed.
Try using a live DVD instead of USB drive. That way, any faulty software on the live image can't break the media. Also, I am guessing that the ISO you … -
Replied To a Post in Which Php 7 Tutorials Do You Recommend To Complete Beginners ?
The PHP web site, www.php.net, has plenty of good tutorials. Check there first. -
Replied To a Post in bank word
Here's an alternative post: How plan for gobbledegook (hacker) network blank word? Ans: Ask Scoobydoo? -
Replied To a Post in Write a C++ program that reads in from a file
What rproffitt is politely trying to say is that we do not do your homework for you. Make an effort. Show your code and where you are having problems. At … -
Replied To a Post in Cannot download tracks from Amazon to i-Tunes
The software restriction policy is probably from Amazon. You should check with them. As a side note, NEVER buy music, videos, or software that encorporate DRM (Digital Restrictions Management). When … -
Replied To a Post in Need a delete row script to work with my table.
Do you have a primary key or any unique keys defined for this table? If so, that is how you would do this deleting by primary key (unique) or another … -
Replied To a Post in euclidean distance between two vectors
Sorry. You do the coding. Then we can look at it and critique it. We don't give you the answers to your schoolwork. -
Replied To a Post in Laptop video card
It depends is the correct answer I think. For systems with Intel processors, there is a built-in Intel GPU that these days is pretty good from the performance perspective. If … -
Replied To a Post in Main Function Print out
This is a bad mixture of C and C++. Also, your main() function does nothing. First question is whether you are are supposed to be writing C or C++ code? … -
Replied To a Post in Compiler Construction : State Transition Diagram
I think that you can consider the ? to be the same as 'then'. IE, 1.45, then E+1, ... Remember, E is the power of 10 that is applied to … -
Replied To a Post in Comcast Internet
Data caps? After you download so much data, they either start to charge you extra, or throttle your connection speed. Comcast is one of the worst for this. AT&T does …
The End.