No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
10 Posted Topics
I would like to use schtasks commandline to create some scheduled jobs in .NET. However, the scheduled jobs created by ASPNET could not start. The command script works fine within cmd and the scheduled job runs. Any ideas on how to make it work? | |
Hi, i would like to know if list is able to achieve these : 1) to get the range of elements such as .. A list of 10 elements beginning from value 1 to 10. I would like to get the range from element 3 to element 5 and add … | |
Hi to all, I am asking on behalf for my best friend. The question is how to create a pm alert notice just like this site | |
I have classes with inheritance (for now only Car, more to add on like Bus, Truck etc) and adding to list. 1) How can i display using the subclass display function? 2) Can list<Vehicle> list be in a class? [code=cpp] #include <iostream> #include <list> using namespace std; class Vehicle { … | |
How can i get the digits out from file and the player who scored the most points? Input file to read from Match A score: 3-1 [U]Mark Peter Peter[/U] Match B score: 1-1 [U]Jim[/U] underlined - player who scored the points [code=cpp] #include <iostream> #include <fstream> #include <string> using namespace … | |
1) Could someone explain the difference between composite and inheritance class 2) Is there a composite class with inheritance? | |
I have a qns. How can i take out the number in a basic string input and assign them into different integer variable? Not a file input example - string input = "23/4/56" or "23.4.56" int a = 23, b=4, c = 56 [code==cpp] #include <iostream> #include <string> using namespace … | |
How to counter invalid input for char. Let say i have a menu which allow user to key in and cin only accepts char. How can i make sure that user to more key in a string etc. | |
I am required to create a program that will allow user to enter employee name,age and update salary later on. After which able to generate out the details. I am trying to declare a class object in the form of an array so that i can input data and then … | |
i have a 2D array of emp[20][10] How can i do it such that it only prints out the selected index like emp[0][0] to emp[0][10] etc. It will print around more than the selected.. [code=cplusplus] for(int i= 0; i < 20; i++) { for (int j = 0; j < … |
The End.