Posts
 
Reputation
Loading chart. Please wait.
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~4K People Reached

18 Posted Topics

Member Avatar for teppuus

Hello, I am trying to write a macro for Excel 2003 that will allow me to search for two words in Sheet1, copy all the data below those words, and then paste that data in Sheet2. That part I can get to work. My problem is that I have multiple …

Member Avatar for PerplexedB
0
413
Member Avatar for teppuus

Hello, I am trying to create an MDI application and am having problems with one of the frames. Walking through the errors, the first error points to a list generated by Netbeans code that I think is the null problem. When I look further down the error list, I get …

Member Avatar for JamesCherrill
0
1K
Member Avatar for teppuus

Hello, I am trying to write a program that reads in a string of numbers. I am only allowed to use ReadChar (not ReadString, ReadInt, ReadBin, etc). The program reads in this string of numbers (2-16) which is a base number. Then the user enters another string of numbers. I …

Member Avatar for DarkLightning7
0
189
Member Avatar for teppuus

Hello, I am working on debugging a program at my job. My coworker who wrote the program passed away last year, so it fell to me to try and update some changes we needed. I am a novice at programming and VB6 but was able to make the changes. Unfortunately, …

Member Avatar for teppuus
0
121
Member Avatar for teppuus

Hello, I am having some trouble traversing backwards through a double linked list. Basically this program pulls words from a text file (I have attached the file I am using), corrects the words and stores them in an array of pointers (one pointer per letter of alphabet) of double linked …

Member Avatar for teppuus
0
178
Member Avatar for teppuus

Hello, I am having trouble creating a double linked list within an array of pointers. Right now actually, I am just trying to make a linked list. Line 267 is where I get a complier error. I understand the error (cannot convert `std::string' to `wordList*' in assignment ), but I …

Member Avatar for teppuus
0
138
Member Avatar for teppuus

Hello, I wanted to post some code with line numbers and can't figure out how to do this. I searched the FAQ, and tried [list=1], but it didn't turn out right. I would hate to manually insert line numbers in my code. Can anybody help or point me in the …

Member Avatar for teppuus
0
82
Member Avatar for teppuus

Currently I am a CS student but am thinking about switching to CIS. Honestly, I don't want to be a programmer. I am grateful to learn the concepts, and (sometimes) enjoy the challenge. But I can't see myself doing it day in and day out. CIS aligns more with my …

Member Avatar for jbennet
0
63
Member Avatar for teppuus

Hello, I have to create a double linked list array of pointers for the alphabet (one pointer per letter). Ok, so I tried starting by creating a double linked list: [code] struct word{ string newWord; word *next; word *back; }; struct wordList{ word *head; }; [/code] And then array of …

Member Avatar for teppuus
0
124
Member Avatar for joshSCH

I don't know....I lived in Germany the past 3 years (in Dresden) and it was mildly interesting to the people there. Dresden did have an American football team, but soccer was just so much more loved. Not sure if it will ever be as popular there as it is here.....people …

Member Avatar for bumsfeld
0
213
Member Avatar for wenny86

Hi Wenny86....lots of ppl here are very helpful, but only if you show effort to solve your problem first. Try writing out your algorithms and some code and posting specific problems, and ppl usually respond right away. Good luck to you!

Member Avatar for siddhant3s
0
520
Member Avatar for teppuus

Hello, I am trying to call two functions: one that pulls data from a file and stores into a linked list, and one that displays this data to the screen. I pulled my code out of the functions and created a new file and included everything in the main function, …

Member Avatar for teppuus
0
162
Member Avatar for teppuus

Hello, I would like to be able to declare a filename as a global constant (so I can change the input file easily), which seems to be a simple thing to do, but I can't seem to get it to work. I declared this globally: [code] const string RES_FILENAME = …

Member Avatar for teppuus
0
119
Member Avatar for teppuus

Hello, I am trying to write data to a binary file. The function runs (the cout << "TEST" shows me that my loop is running the correct amount of times), but after the program comes to the end, it crashes and doesn't save the data to the binary file. Can …

Member Avatar for teppuus
0
91
Member Avatar for teppuus

Hello, I am having problem with my do...while loop. It asks for student identifier twice before proceeding. I tried moving the "do" after the program prompts the user for his choice of id, but I couldn't get the loop to terminate after that. Any tips will be appreciated. Thank you! …

Member Avatar for Salem
0
132
Member Avatar for teppuus

Ok, I know you aren't suppose to (or can't) do comparions on arrays such as, if (x < y), when both x and y are single dimensional arrays. But what about if you have a string and want to compare one element in that string. For example, I am trying …

Member Avatar for teppuus
0
111
Member Avatar for NicAuf

I am a newbie too at this programming stuff. Maybe we can work on the algorithm together to help get you started? Do you want the program to "roll" the dice three times before it displays the results of all three players? Or roll once, and then display one result …

Member Avatar for teppuus
0
120
Member Avatar for teppuus

Hello, I need to complete a selection sort (descending order) on a string that contains 3 letters and one number. This is the function I wrote so far, but it doesn't sort properly. It is sorting, but I can't figure out its scheme. Any tips? Thanks! (The arrays are parallel. …

Member Avatar for teppuus
0
235