No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
7 Posted Topics
I don't know a site where you can find cheap ideas to solve for free, but try to thing of a process you could automate or improve on that exists and apply your coding knowledge. That could be a start. What sort of research do you mean; as a basis …
Hi, I am working on code to have a drop down menu from which you can pick items and add a button with that course. Unfortunetally, I can't get the button to display. And help is greatly appreciated. [CODE]import java.awt.*; import java.awt.event.*; import javax.swing.*; public class ComboBoxFrame extends JFrame { …
You can use a function such as substr() to extract each work that you want and put it into a new string then output that string. With substr(x, y), x specifies the starting point in that string and y is how many characters to go down. For example, in the …
Hi everyone! I've visited the site many times as a non-user to get help with small code snippets and have decided to join so that I can get some specific help as well as help out as much as I can. I'm excited to be a new member and hope …
You should use the following command which will scan for a string and put everything that has been written until the newline character (enter) is hit: [CODE]cin>>input;[/CODE]
I do not know the exact programming language used, but you can (easily) create similar software using C++ with images that lead to different screens, I did a project with UI; mouse clicking and keyboard input, its not too hard if you can work with images in C++. Hope that …
Hi all, I have the following code written for work. The point of the program is to take input from the user as to which customer id (phone number) is required. Once the program has this data, it will open a specified folder to search through each line of code …
The End.
vortex24