Posts
 
Reputation
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
~8K People Reached
Favorite Tags
Member Avatar for xcarbonx

Hello, I was just wondering if it is possible to create a data struct in assembly 8086. For example, creating a struct that holds a student's name and ID number.

Member Avatar for Assembly Guy
0
3K
Member Avatar for xcarbonx

Hello, I am having an issue with sending an email message to multiple recipients on a private SMTP server. Currently, my program sends a message to the first recipient listed, but not the second. I am getting the email addresses from a text box right now that is separated like …

Member Avatar for G_Waddell
0
327
Member Avatar for xcarbonx

Hello, I've been trying to find a place that explains how a pre-built 3D array is populated, but it seems like there is only help on how to declare it out there. Can anyone explain it? I know what data i want to put into the array, I just don't …

Member Avatar for Reverend Jim
0
204
Member Avatar for xcarbonx

Hello, As of now I am trying to read in a text file that is tab delimited with uneven columns. My problem is that when I try to split the file into respective lines, I get an "out of array bound" error. I know this is due to have a …

Member Avatar for xcarbonx
0
305
Member Avatar for xcarbonx

Hello, I am reading a simple CSV text file into an array and trying to make a table that looks like: Col 1 Col 2 Col 3 Total Row 1 …….. …….. ……… …….. Row2 …….. …….. ……… …….. Total …….. …….. ……… …….. The problem is I cannot figure …

Member Avatar for Reverend Jim
0
169
Member Avatar for xcarbonx

Hello, I'm trying to create user registration for a class website using WAMP. I have the register and activation pages working, but I am getting the same error for login, logout, forgot password, etc pages. The error is: An error occurred in script 'C:\wamp\www\login.php' on line 42: Cannot modify header …

Member Avatar for xcarbonx
0
148
Member Avatar for xcarbonx

Hello, I am just starting and introductory course in Assembly. We are using 8086, and I am having trouble with the assignment. We are to start with the number 1, and then double that number 18 times, and print out each number in hex. For example, output should look like: …

Member Avatar for AceStryker
0
132
Member Avatar for xcarbonx

Hi..i'm having some trouble coming up with the an algorithm for a problem im working on. I am trying to check an arithmetic infix expression like: (((6+2)/2)*(3-1)); //This is my input file(; marks end of line.) I have to check to see if the statement is ok, or not ok, …

Member Avatar for L7Sqr
0
90
Member Avatar for xcarbonx

Hi im trying to loop through an input file such as: 333 45 56 67 456 80 90 74 ... First number is id, followed by three exam scores..and the "stud.h" is my struct for each piece of data. My problem is looping through each line of data. Any ideas …

Member Avatar for JSPMA1988
0
118
Member Avatar for xcarbonx

Hi, I have made a basic calculator program, but need help with some minor things. I have created two radio buttons for the user to click on. If the first is clicked/selected, then the output would be formatted in floating point value (radFloat). If the second is selected, then the …

Member Avatar for Netcode
0
123
Member Avatar for xcarbonx

Hi, im having trouble reading in lines of data using arrays and a structure. I believe my main problem is figuring out how to keep track of the lines read in, even if the whole array size isnt used up. Also, To break up each line I am trying to …

Member Avatar for alc6379
0
166
Member Avatar for xcarbonx

Hi, I'm having trouble lining up data from a file with their respectable columns in a list box. I am using print zones to space out data evenly, but when i run the program the output is still messy. So I need help lining up columns properly together. As of …

Member Avatar for xcarbonx
0
1K
Member Avatar for xcarbonx

Hello all, I am currently using VB 2010 and am having a problem comparing strings in my program. My problem is that i need to output a line between each set of employees every time the name changes, in a list box. For example: My current output is: James James …

Member Avatar for Netcode
0
103
Member Avatar for xcarbonx

I am currently trying to develop an algorithm for the following problem: Read data from a text file such as: the driver returns on his glorious day. He's very happy to be safe and.sound at home, with his wife. With that data, i need to print the length of each …

Member Avatar for xcarbonx
0
110
Member Avatar for xcarbonx

Hello, i'm having trouble opening a text file to process and order the data in it. When i try to read the first line of characters an error message occurs saying: 'Variable words1 is used before it has been assigned a value.' I dont understand what i am doing wrong …

Member Avatar for xcarbonx
0
115
Member Avatar for xcarbonx

Hi, I am trying to make a program which outputs an Invoice Number, which consists of the first 3 letters of a person's first name and the last 3 digits of their zip code. The user enter their first and last name, then enters their city, state, and zip such …

Member Avatar for xcarbonx
0
105
Member Avatar for xcarbonx

Hello, my listbox contents output as 1 whole row like: Total Normal = 3 Total High = 5 Total Low = 6 When i want the output to be formatted like: Total Normal = 3 Total High = 5 Total Low = 6 Here is my code: [CODE] lstResults.Items.Add("Total Normal …

Member Avatar for xcarbonx
0
165
Member Avatar for xcarbonx

Hi, im using visual studio 2010, and for my recent assignment i am having difficulty when closing a text file. My program is to read in the data from a text file and then do some calculations and then output the result. My text file Measurements.txt looks like this: 5 …

Member Avatar for codeorder
0
401
Member Avatar for xcarbonx

Hi, im just a beginner in C++ and was wondering what exactly are pointers used for? Are they just to refer back to something or are they used differently than that? I was reading through the chapter on pointers in my programming book and it doesn't really clarify.

Member Avatar for mike_2000_17
0
97
Member Avatar for xcarbonx

[CODE] getline(inFile, st[i].name) while (inFile){ inFile >> st[i].id >> st[i].eng101 >> st[i].hist201; i++; getline(inFile, st[i].name); [/CODE] The above code only reads the first line of my input file, and the rest prints out zeros. My input file is set up like: John Wall 345505050 95 66 The output looks like: …

Member Avatar for kenji
0
85
Member Avatar for xcarbonx

Hello, i am currently working on a grade program that displays the student name, id #, and 2 grades. I have to read each of these categories off of an input file which should look like the following for at least 20 students.: EX: Jack Smith 450654333 95 89 The …

Member Avatar for xcarbonx
0
125
Member Avatar for xcarbonx

Hello, I am trying to input an unknown amount of numbers (exam scores) and output whether they are passed, failed, or invalid scores. Passed is any score greater or equal to 70, and failed is 69 and below. Invalid scores are out of the range between 0-100. Sample Input: 77 …

Member Avatar for WaltP
0
114
Member Avatar for xcarbonx

I'm making a program which outputs the min, max and average for any specified user input of numbers, for example a sample output would be: Enter a choice (0 for max, 1 for min, 2 for avg, 3 to quit): 1 How many numbers?: n numbers Enter n numbers: 1 …

Member Avatar for strmstn
0
106
Member Avatar for xcarbonx

hello, i have been struggling with this program for a few days now, and have decided to get some feedback. The program lets the user input a number from 0-6 (0 representing sunday and 6 representing saturday, and so on) for days of the week and you input a second …

Member Avatar for tetron
0
133
Member Avatar for xcarbonx

hello, i just had a very simple question about float, so i am not going to post the full coding, only what matters in this instance. my output of program shows the computed number as 4, instead of 4.00, even though it is declared as float Here is the example: …

Member Avatar for xcarbonx
0
93