Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
~18.1K People Reached
Favorite Forums
Favorite Tags
c# x 25
java x 24
c++ x 24

38 Posted Topics

Member Avatar for rena0514
Member Avatar for guly2010
0
4K
Member Avatar for shyla

Hello, i am still struggling with an assignment that was already due The tiny tots tee-ball league has 12 players who have jersey numbers 0 through 11. The coach wants a program into which he can type a player’s number and the number of bases the player got in a …

Member Avatar for moecowboy
0
129
Member Avatar for shyla

I need to verify with some one if my code is right i have to submit it in 3 hours from now and any help will be welcome The instructions are: Using an appropriate definition of listnode, design a simple linked list class with only two member function and a …

Member Avatar for fatima mustaf
0
713
Member Avatar for shyla

How do i get the data to appear line after line in notepad and with the dashes in the phone number that my code [CODE]using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Friends { class WriteFriendRecord { static void Main(string[] args) { Console.WriteLine("Enter your friend's details: "); Friends.Friend f …

Member Avatar for CsharpChico
0
218
Member Avatar for shyla

I can't get rid this error IntelliSense: cannot open source file "stdafx.h" error C1083: Cannot open include file: 'stdafx.h': No such file or directory [CODE]#include "stdafx.h" #include <iostream> #include <cstdlib> using namespace std; //class BinarySearch Tree class BinarySearchTree { private: struct BST { BST* left; BST* right; int data; }; …

Member Avatar for Narue
0
968
Member Avatar for shyla

i am trying to change the description for each website that the mouse is hover at according to the assignment hoe can i change it from "go to Gizmodo website" to "Gizmodo is a tech blog" and do the rest with the other websites descriptions with different descriptions [CODE]using System; …

0
59
Member Avatar for shyla

I am trying to align the text in the attachment Thats my code [CODE]using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.IO; namespace Program_No2_Project { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void detailsButton_Click(object sender, …

Member Avatar for shyla
0
108
Member Avatar for shyla

i need to create a class named MyShape(which i did ), and make it a super class. its instance variables should be the x1 x2 y1 y2 values shared by all subclasses. the class needs to include 1. a no argument constructor 2. constructor that takes the argument necessary to …

Member Avatar for JamesCherrill
0
297
Member Avatar for shyla

Using an appropriate definition of listnode, design a simple linked list class with only two member function and a defult constructor: void add(double x) boolean isMumber(double x) LinkedList(); The add function adds a new node containing x to the front (head) of the list, while the isMember function tests to …

Member Avatar for Moschops
0
554
Member Avatar for shyla

my question is: Write a function that accepts an integer parameter and returns its integer square root. The function should throw an exception if it is passed an integer that is not a perfect square. Demonstrate the function with a suitable driver program. i am getting that : Error 1 …

Member Avatar for shyla
0
2K
Member Avatar for shyla

Hello i am trying to solve the second part of this question i am getting these errors Error 2 Only assignment, call, increment, decrement, and new object expressions can be used as a statement Error 1 Use of unassigned local variable 'i' [CODE]using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; …

Member Avatar for abelLazm
0
756
Member Avatar for shyla

i didn't understand from the question if the user needs to enter data or not can some one verify it with me tried to follow the instructions, and thats my code [CODE]using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace BookExceptionDemoGUI { …

Member Avatar for kimbokasteniv
0
591
Member Avatar for shyla

i need to do the second part of the assignment and i cant solve it, i need to do it gui, this is what i have so far [CODE]using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace EmployeeExceptionDemo { public partial class …

Member Avatar for shyla
0
135
Member Avatar for shyla

i am having a problem to write the code for a project that i have i need to get the label to the picture attached to count how many oval and rectangle are in the picture i have the code for the rest i just cant figure how to arrange …

Member Avatar for JamesCherrill
0
273
Member Avatar for shyla

i am trying to solve this question, second part of it 5b and is very confusing i cant show all the details on the form on the form [CODE]using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace EmployeeExceptionDemo { public partial class …

Member Avatar for ddanbe
0
166
Member Avatar for shyla

I am trying to solve the second part of this question this is what i came so far i do it on GUI and when i push the button nothing happend [CODE]using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace EmployeeExceptionDemo { …

Member Avatar for shyla
0
85
Member Avatar for hany-h

[QUOTE=hany-h;1335645]Hi guys, I have a class (DrawPanel) which extends Jpanel.This class generates random shapes (lines,recangles and ovals) . I am suppose to add a statusbar to this class but I can't add even a simple lable to this panel... I am so frustrated and would be so appreciate if anyone …

Member Avatar for JamesCherrill
0
152
Member Avatar for shyla
Member Avatar for Wegginho
0
55
Member Avatar for shyla

i am trying to solve that assignment and this is what i have so far [CODE]using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace CarInsurance { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Form1_Load(object sender, …

Member Avatar for pseudorandom21
0
184
Member Avatar for shyla

A file filter reads an input file, transforms it in some way, and writes the results to an output file. Write an abstract file filter class that defines a pure virtual function for transforming a character. Create one subclass of your file filter class that performs encryption, another that transforms …

Member Avatar for shyla
0
1K
Member Avatar for shyla

Hello, i need help on how to create a JLabel as a status bar that display count representing the number of each shape display in addition i need to create a class called MyShape and make it a superclass this my code for for al shapes : [CODE]package Lab8; import …

Member Avatar for shyla
0
254
Member Avatar for shyla

Hello, i am trying to solve that problem, it was already due for my class, an i am disappointed that i wasn't able to solve it can any body give a descent solution for that Q: The tiny tots tee-ball league has 12 players who have jersey numbers 0 through …

Member Avatar for abelLazm
0
280
Member Avatar for shyla

[B]i am getting this error can some one give me some directions[/B] Error 1 'ShapesDemo.Rectangle' does not contain a constructor that takes 0 arguments [CODE]using System; namespace ShapesDemo { abstract class GeometricFigure { static void Main(string[] args) { Rectangle rectangle = new Rectangle(8,8); Square square = new Square(9,7); DisplayFigureResults(square); Triangle …

Member Avatar for ddanbe
0
199
Member Avatar for shyla

i am trying to figure this exercise. i just started, but i dont understand what do i need to put where ? [CODE]using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ShapesDemo { abstract class GeometricFigure { int height; int width; double area; /* public GeometricFigure(int Height, int Width) { …

Member Avatar for shyla
0
352
Member Avatar for shyla

i am trying to solve this problem i dont know which object i need to refer to in my main method [CODE]using System; namespace ShapesDemo { abstract class GeometricFigure { static void Main(string[] args) { } public int height; public int width; public readonly double area; public int height { …

Member Avatar for shyla
0
258
Member Avatar for shyla

Hello guys it my first time trying c# i am trying to solve this problem and this is what i got so far i dont know where to locate the auto implementation properties to which class i a little bit confused appreciate any help the question is add below [CODE]using …

Member Avatar for shyla
0
132
Member Avatar for shyla

HELLO, i tried to understand the context, but as an international student i want to make sure that i did it correctly , if someone can verify it with me i will appreciate it, the question is attached below. [CODE]using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace CarsDemo { …

Member Avatar for shyla
0
142
Member Avatar for shyla

i am trying to figure it out, and i cant get the income and the SSN to show [CODE]using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Assignment5_Koch { class Rates { public readonly int incomeLimit; public readonly double lowTaxRate; public readonly double highTaxRate; public Rates() { incomeLimit = 30000; …

Member Avatar for Momerath
0
236
Member Avatar for shyla

the letter e is the most frequently used letter in the english language, and the letter z is the lease used. a friend of yours doing a blah blah believes that this may not be necessarily be true of writings of first year college students. to test his theory, he …

Member Avatar for shyla
0
1K
Member Avatar for shyla

i made this UI it works fine , but i cant make it with the OUT parameter in the arrayMath method [CODE]using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace ArrayManagementGUI { public partial class Form1 : Form { public Form1() { …

Member Avatar for ddanbe
0
112
Member Avatar for shyla

I am struggling with this assignment to long i need someone to tell me what am i doing wrong Write a program with three functions: upper, lower, and reverse. The upper function should accept a pointer to a c-string as an argument. It should step through each character in the …

Member Avatar for Arbus
0
1K
Member Avatar for shyla

i am getting this error and i dont know how to get rid of it its in GUI BTW Error 1 'ArrayManagementGUI.Form1.displayArray(double[])': not all code paths return a value F:\CSIS115c\ArrayManagementGUI\ArrayManagementGUI\Form1.cs 47 24 ArrayManagementGUI [CODE]using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace …

Member Avatar for ddanbe
0
88
Member Avatar for shyla

Hello again, again i just want to verify that i did my homework right [CODE]using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Movie { class Program { static void Main(string[] args) { MovieData(); } public static void MovieData(string movie = "The Social Network", int minute = 90) { Console.Write("The …

Member Avatar for shyla
0
99
Member Avatar for shyla

i need a verification if i did it right? i am an international student so the language is a little barrier [CODE]using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Credit { class Program { static void Main(string[] args) { CustomerCreditLimit(3); } public static double CustomerCreditLimit(double limit, double credit =500) …

Member Avatar for Momerath
0
79
Member Avatar for shyla

Create a console-based application whose Main() method declares an array of eight integers. Call a method to interactivelyfill the array with any number of values up to eight. Call a second method that accepts out parameters for the arithmetic average and the sum of the values in the array. Display …

Member Avatar for shyla
0
88
Member Avatar for shyla

Create a console-based application that computes the price of a desk and whose main() method calls four other methods a method to accept the number of drawers in the desk an input from the keyboard. this method returns the number of drawers to the main method a method to accept …

Member Avatar for shyla
0
699
Member Avatar for shyla

This assignment was due, but i am still struggling with it. I can't show the details correctly its running and everything but still nothing This ex needs to be in GUI there is a picture attached that shows the console version The tiny tots tee-ball league has 12 players who …

0
47
Member Avatar for shyla

[I][thread split from [URL="http://www.daniweb.com/forums/post1039331.html#post1039331"]here[/URL]][/I] Hi i have the same problem but instead of console app i need to make a gui one [code] this is what i have so far using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace TubeSales { public …

Member Avatar for shyla
0
113

The End.