- Strength to Increase Rep
- +4
- Strength to Decrease Rep
- -1
- Upvotes Received
- 3
- Posts with Upvotes
- 1
- Upvoting Members
- 3
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
So I am getting a runtime error and I have narrowed down the problem to this method. I am still learning about iterators and I assume that the problem is with this part of the code, getting the expression error list iterator not decrementable. Any help would be appreciated. [CODE=cpp] … | |
Perhaps someone can help me here, I have a method that I am trying to accomplish two things 1. Retrieve a table from a stored procedure passing it one variable 2. Downloading that table in csv format I am not sure why this method is not working and I am … | |
This may seem like a simple question but I for the life of me cannot seem to get this working. I have an ASP page that I need to set a dropdown box to a value from sql. I have the dropdown getting filled from sql no problem. [CODE=c#] private … | |
Hay guys I am looking for some help here I have a page in asp that I am trying to get a button to display a pop up with the value of a textbox on the parent page. This should be a simple popup with a multiline textbox inside it … | |
I am trying to figure out how to set multiple text boxes/labels with one sql query. I dont need help connecting to the database or anything like that I just need to know how I can write one query to and set multiple text boxes with that one query. here … | |
I am having a problem running an ssis package from a service written in C#. Here is my code [CODE] try { //Package Path string packagePath = @"C:\\data_from_listcleanup\\programmability\\Package.dtsx"; //create an instance of the package Package goPackage = new Application().LoadPackage(packagePath, null); //execute package DTSExecResult result = goPackage.Execute(); //write results to file … | |
Can someone please help. I have a dataset that is populated with a csv or a tab seperated txt. I get the datset fine but when I try to insert into a table in sql with bulkinsert I am getting an exception. The table does not allow nulls in the … | |
I am working on an assignment for class and cannot for the life of me figure out how to use letters to choose a case for a switch statement. Here is my code [CODE=CPP]#include <iostream> #include <cctype> #include <cstdlib> using namespace std; // prototypes void showMenu(); int getVowels(char*, int*, int); … | |
OK so most can guess I am a student just now learning programming and starting out with C++. I have tried many compilers and IDE's and have settled on Eclipse for now. I do not want to start a What compiler/IDE do you use, but I am trying to figure … | |
Re: You know whats funny, I have posted a few times here for homework help here on the forums and have had nothing but great help. I think the problem people run unto is when they try to trick you guys. here is a hint for all the people out there … | |
Re: er... look at it this way when there is a = sign remember that it is an assignment operator not an "equal" sign anything on the left is assigned to what is on the right [QUOTE]But what about the "x=y" part, followed by "x=10"???? Doesn't that say "x has same … | |
for some reason I cannot add integers in an array of structures. here is the code. [CODE=c++]#include<iostream> #include<iomanip> using namespace std; const int SIZE = 5; struct playerInfo { char name[30]; //Players name int number; int points; }; int main() { int total = 0; // to hold total points … | |
Wow, I am having huge problems passing values between functions and wrapping my head around pointers. For some reason when I tried to return values from functions they would not pass and when I tried putting pointers in the place, passing them kept giving me compiler errors. Now I have … | |
Need some help. I have an assignment that calls for the sorting of two arrays. One is an array of doubles, the other chars (two dimensional). I cannot figure it out for the life of me. Here is the whole program. [CODE]#include<iostream> #include<iomanip> using namespace std; //Function Prototypes double sumRain(double[], … |