No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
23 Posted Topics
I have a table that contains some cubes with servers and active status (see attached image): note: CUBE1 is repeated intentionally. The idea is the same cube is getting synced from the same server 1 as a data source (process_server) onto different target servers (query_server; say server2 is in region … ![]() | |
I wrote a script that manages services on the server and starts/stops etc...depending on the Task in the csv file, as well as changes the startuptype, again depending on the start up type in the csv file. CSV file: > Server,Service,Startup Type,Task > server1,SQL Server Analysis Services (MSSQLSERVER),automatic,start > server2,"SQL … | |
hi So i made a simple game app, and am implementing music now i have easy and hard mode, and game over, as well as home screen homesecreen now plays music1, loops fine and all...then once player selects to play i want to stop the current music1, and start music … ![]() | |
the following short program asks user to enter # of hospital rooms (between 1-5), and asks for number of flowers, which cannot be a negative number. Then, it picks based on how many rooms the price from the `hospitalRoomsPrices_Array[5]`, and it also displays the total flowers multiplied by $2.50 each. … | |
Im working on this analyzer program that reads input from a file and breaks characters into various tables. Ive got the output pretty much done, except there's an issue with some of it, and Im pretty sure its due to the input problem. so heres what the input looks like … | |
hi So ive deployed a small website i worked on, and before deployemnt on Amazon web services, i was of course testing everything on localhost. after seeing that things are working on localhost, i changed the localhost to the deployment link provided on AWS and things looked fine and all … | |
Re: yeahh...you dont wanna do GUI's with c++ lol. c# is the one for UI's... C++ is mainly used for consoles. so commands in and out pretty much VS is a good IDE honestly. its powerful, and you just need to create several projects and you'll get the hang of it … | |
hello so we are in the process of developing a tagging program, and im building the form in c#. now how would we be able to connect the db from workbench with this form in visual studio to make queries in the program? btw the databse i hosted it at … | |
im doing a project about tagging butterflies system, in which users will login/create account, update account, insert butterfly in database, update a butterfly in database, search for a butterfly, display a leaderboard, and a graph. i havent done C# in a while, altho i can get the hang of it … | |
hi i was adding something to my XNA project, and i downloaded the GIF animation library from https://xnagif.codeplex.com/ i added the pipeline and references as needed (i followed the sample GIF animation) and one of my gif images worked (yay) but i have decided to add more gif images and … | |
Re: i agree with nathan, however, when i was feeling the same way as you are, i gave up hope on my professor and just started with youtube tutorials, like bucky's tutorials.. ![]() | |
hello i have a program that was due, but i submitted what i can. however, i have a chance still at making the program fully functional, and so i need to submit it fast before its graded. i already have the program, and its running, but i just have a … | |
hi so this code here as i test it on paper provides paranthesis on every leaf node, disregarding priority (operator precedence) how can i make it add those paranthesis based on precedence of operators? void printInfix(Node n) { if (n == null) { if (n.isLeaf())//if n is a leaf, therefore … | |
hello I have an inquiry about reading from a file. so if i have a file and if it opens (meaning it is there) how do i check if there is data? ifstream file("example.txt"); if (file.good()) { //file.open("example.txt"); // is this necessary again???????? i read that the ".good" provide checking … | |
hi so why isnt queue printing anything where it should? #include<iostream> #include<string> using namespace std; template<class ItemType> struct NodeType { ItemType info; NodeType* next; }; template<class ItemType> class Queue { private: int size; NodeType<ItemType>* front; // It points to the front of a singly-linked list NodeType<ItemType>* rear; // It points … | |
hi so i have to make a copy of a linked list i made last week and this time i just have to update it with a deep copy concept thus making a copy of that list i made. here is my code: #include <iostream> #include <string> using namespace std; … | |
hi so this project requires an input of U, M, or D and as many as you like of them (i think, might be only up to 100 based on charUMD[100] array in code) also, you have to end it with # in order to indicate the end. i am … | |
hello idk if this goes here, but i accidently a while ago pressed "do not receive email replies anymore from daniweb" something like that button in one of the replies i got to a discussion i had. i want it activated back, but i dont know how. i only want … | |
hello everyone So i have a project to do a code about using these powers of three numbers: 1, 3, 9, 27, and 81 (we dont have to use all and a number of them can only be used up to one time per number being decomposed) and use them … | |
Hello I have to do a sorted list code according to some instructions. a friend and I worked on this, and we pretty much ended up with the same code, his worked, but mine isnt, even though its exactly same! I have been trying for hours figuring how to make … | |
hi i have this assignment in c++, i did it, but there is one tiny error i cant figure out the solution to it. the program below is supposed to take in 3 elements value inputs from user for 3 students. so if you run it, you get input student1 … | |
hello we have to make a program that grades multiple choice exams from input files by the user and outputs the id of each student followed by their appropriate score. here are the input files: > exam file abcdefabcdefabcdefab 1234567 abcdefabcdefabcdefab 9876543 abddefbbbdefcbcdefac 5554446 abcdefabcdefabcdef 4445556 abcdefabcdefabcdefabcd where the first … | |
hello everyone new here and i am currently taking my first ever c++ class, so completely new to c++. i made an account here, in which i was able to post a question i had a bout a project for grading program, then i received email of required activation which … |
The End.