Posts
 
Reputation
Joined
Last Seen
Ranked #1K
Strength to Increase Rep
+4
Strength to Decrease Rep
-1
100% Quality Score
Upvotes Received
3
Posts with Upvotes
1
Upvoting Members
3
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
2 Commented Posts
0 Endorsements
~20.8K People Reached
Favorite Tags
Member Avatar for Yellowdog428

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] …

Member Avatar for Yellowdog428
0
160
Member Avatar for Yellowdog428

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 …

Member Avatar for dnanetwork
0
113
Member Avatar for Yellowdog428

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 …

Member Avatar for kvprajapati
0
106
Member Avatar for Yellowdog428

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 …

Member Avatar for serkan sendur
0
122
Member Avatar for Yellowdog428

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 …

Member Avatar for JerryShaw
0
138
Member Avatar for Yellowdog428

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 …

Member Avatar for Yellowdog428
0
127
Member Avatar for Yellowdog428

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 …

Member Avatar for Ramy Mahrous
0
69
Member Avatar for Yellowdog428

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); …

Member Avatar for Yellowdog428
0
185
Member Avatar for Yellowdog428

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 …

Member Avatar for Yellowdog428
0
109
Member Avatar for knewc

Just some challenge code for ya, and some help for me on my independent study of C++ code a program that checks whether a string is a pseudo-palindrome.(a sentance that is spelled the same backwards/forwards. first code the following functions: char * remove_punct(char * str, char * remstr); char * …

Member Avatar for ithelp
0
157
Member Avatar for Farisnet

Hi... I am a bit new to programming, and I'm trying to learn C++. I was wondering if there was a way to copy the contents of one variable into another... So that, for example: [ICODE] int x=5; int y; (Some fancy code here involving x and y); (y=5 but …

Member Avatar for dougy83
0
19K
Member Avatar for Yellowdog428

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 …

Member Avatar for Ancient Dragon
0
82
Member Avatar for Yellowdog428

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 …

Member Avatar for Yellowdog428
0
94
Member Avatar for Yellowdog428

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[], …

Member Avatar for Yellowdog428
0
142