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
Ranked #1K
~10.6K People Reached
Favorite Tags
Member Avatar for panpwintlay

Hello friends As I am a beginner of C# in .NET , I got stuck in this program This program is about displaying prime numbers between the range of o and the number you entered. Its running properly.But the output is not correct. Here is my coding [CODE]using System; using …

Member Avatar for Momerath
-1
1K
Member Avatar for FoX_

Hi all; I've to update a record for my hw.I'm trying to use seek function but when I use it, new information(phone number) is being written at the end of file... Here is the function that I've tried... Assume that the file's content like below and the input is : …

Member Avatar for boshu
0
217
Member Avatar for 1qaz2wsx7

Hi :) I have some object in a forum, and i want that those objects will be resize and moved proportionatly after i resize the forum. (like when i make the forum width bigger, i want that all the object will get bigger with the forum) Is there an Automatic …

Member Avatar for jamesonh20
0
98
Member Avatar for FoX_

Hi ; How can I show a nested method call(like getInsertedCourses method below) in a UML sequence diagram ??? [CODE=csharp] static void Main(...) { Student s = new Student(...); Course[] courses = s.getInsertedCourses(); } class Student { private int studentID; ....... public Course[] getInsertedCourses() { return SRS.getInsertedCourses(this.studentID); } ....... ....... …

0
49
Member Avatar for FoX_

Hi all; I have to create a Binary Tree(not a Binary Search Tree) whose node values are produced randomly... If I had to create a Binary Search Tree , I could determine where the current node has to be inserted but in a Binary Tree I can't determine where the …

Member Avatar for VernonDozier
0
149
Member Avatar for Chaster

Hi everyone, I have a panel which will be 'filled' with a form in runtime. My question is: how could I determine the size of the panel (becouse I want the form to change its size dinamically). thanks

Member Avatar for 4M-world
0
197
Member Avatar for FoX_

Hi all... How can I control any postfix expression is valid or not??? I controlled it using a stack(the code is below) and it worked but I 'm using the stack again after clearing it for evaluation the postfix expression to the infix expression.I'm using the stack twice and I …

Member Avatar for FoX_
0
2K
Member Avatar for 1qaz2wsx7

Hi :) How can i turn a forum to the default forum ? (the one that is shown at the beginning automaticly) Thanks.

Member Avatar for 1qaz2wsx7
0
77
Member Avatar for boss16thugz

Hi I am currently new in C#, I have finished exercising and studying how to code for console application. Then I plan to do a simple application. I started with a user log in. Where in the form will validate the username and password inputted by the user in an …

Member Avatar for boss16thugz
0
279
Member Avatar for quintoncoert

Can someone please tell me what is wrong with the following code or if it is even legal? I am trying to access the text in a multitude of textboxes without having to go to each textbox manually. so i named them all similar enough. their names are all variations …

Member Avatar for quintoncoert
0
117
Member Avatar for JRM

I was experimenting with a direct method of dereferencing an iterator. It works OK with numbers, cout gets confused (??) when the derefenced pointer is a string? The code was supposed to stuff a vector, then read it out . I hacked up that original to do some troubleshooting and …

Member Avatar for JRM
0
115
Member Avatar for aeroll

:) guys im a firt timer. im making a program which reads floating point numbers from cin and compute 2 averages: the average of the positive and negative nos. im wonderin wats wrong in my program>> #include<iostream.h> #include<conio.h> int size,i,sumpos,sumneg; int num; main() { clrscr(); cout<<"input size\n"; cin>> size; for …

Member Avatar for aeroll
0
167
Member Avatar for amtallah
Member Avatar for Killer_Typo
0
117
Member Avatar for hinduengg

HELLO THIS IS MY FIRST POST. I WISHED IF ANY ONE COULD HELP IN EXTRACTING WORDS FROM A CHAR ARRAY -STRING LIKE IF THE SENTENCE INPUTTED BY USER - [B]JACK WENT UP [/B] THEN I NEED TO PRINT THESE WORDS SEPARATELY ON FRESH LINES OUTPUT- JACK WENT UP [B] I …

Member Avatar for Narue
0
3K
Member Avatar for kpillsb39

Need assistance in the assignment on using an Array of structs. I need to know if the array is initialized properly or what i need to do to get it initialized. Some code has been commented out until i get the array initialized. Here is the code: [code=cplusplus] #include<iostream> #include<iomanip> …

Member Avatar for Narue
0
79
Member Avatar for FoX_

Hi all; My question is which IDE do you recommend for editing Python codes on WindowsXP??? I've installed its interpreter(2.5) but I don't have any idea about the IDE.(except ActivePython) Thanks for your helps...

Member Avatar for NetByte
0
121
Member Avatar for machine

Hi i have to use linked lists to get information from the user and dispaly it. I am having trouble with displaying the linked list. If you look at my second function where i am trying to list the information, you might be able to tell what the problem is? …

Member Avatar for John A
0
235
Member Avatar for FoX_

Hi all; I have to control wheter a string is an array element or not. I tried to exists function but it didn't give me the desired output. [code=perl]print "Which hotel do you want to remove from the list?\n"; chomp($a = <STDIN>); if(exists $name {$a}){ foreach $record(@name){ if($record eq $a) …

Member Avatar for KevinADC
0
77
Member Avatar for FoX_

Hi all; I'm new to C++ and OOP. My problem is: I ' ve created the header file time1.h and included it in my project but when I tried to compile it gave me linker errors in VC++ 6.0. Here is the code: My header file [B]time1.h[/B] [code=c] #ifndef TIME1_H …

Member Avatar for FoX_
0
220
Member Avatar for Ali Shahzad

I need to understand the folowing code return(fab(n-1)+fab(n-2)); As most of u will be fimiliar with this itz to make fabonachi series in C but can any one tell me How the computer Reads it i mean how is the sontrol transfered plzzz

Member Avatar for Narue
0
117
Member Avatar for kylcrow

Hi, I am writing a function that needs to return either a R S or P. It works fine if what I am inputing is a R S or P. If something else is enter it acts funny. Any suggestions to help me out? [code=c++] char getUserChoice () { char …

Member Avatar for kylcrow
0
92
Member Avatar for elvla2

I'm going nuts i need to do a program that will count words, vowels and consonants and special character, i'm just a beginner and my teacher is killing me with this.

Member Avatar for elvla2
0
76
Member Avatar for mcole50

I need help someone im trying to delete the blanks of this array of strings stored in str[i] loop but cant copy wihtout delete spaces please help some one.. thanks [code=c] void deblank(char str[MAX_STR], char result[MAX_STR]) { int num; //variable to hold value for string length int i, j; // …

Member Avatar for mcole50
0
92
Member Avatar for FoX_

Hi all; I've to use a dynamic array(2D) in my program in C. I've read some tutorials about this and I understood its mental.But still there exist a few points which I didn't understand. Here is a code: [code=c] int main(){ int **a, x; a = (int **)malloc(sizeof(int) * 10); …

Member Avatar for FoX_
0
119
Member Avatar for jan1024188

I have compiled a project using Visual Studio in Vista ultimate. On my computer the application works fine, but on the computer where XP is installed I get the error like "Progam configuration is wrong". Do I have to compile my WIN API project in XP to be runned on …

Member Avatar for vijayan121
0
186
Member Avatar for guy40az

Does any one know of a complier that supports the 80 bit long double?? Or do you have any idea how to get one on VC++ 6.0 Thanks

Member Avatar for John A
0
216
Member Avatar for fmlyman

Yes, this is homework. This is my first course in programming and I am having a problem translating what I know I need to do into code. I basically need to write a progam that reads a person's name in the following format: first name, then middle name or initial, …

Member Avatar for John A
0
124
Member Avatar for Jmosure

i am having two problems with my code. the first error message highlighted in green says i need to return a value instead of what i have written down. and the line highlighted in red says that my value is not being ignored. can anyone help? I am totally lost. …

Member Avatar for thekashyap
-1
412
Member Avatar for Rickenbacker360

Hey, it's been quite awhile since I last posted, but I'm stuck. What I'm supposed to do is look at this code and tell what would appear on the output screen. I ran the program and found that it should display: 2 3 6 1 5 0. However, I just …

Member Avatar for Rickenbacker360
0
116
Member Avatar for mrjoli021

I have a function that returns an int. How can I call it from the main function.

Member Avatar for mrjoli021
0
85