Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
4
Posts with Upvotes
4
Upvoting Members
3
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
~10.6K People Reached
About Me

hyperion male enhancement The difference between organic enlargement and all the methods is that whenever you use organic growth, you are upping your penis size by restarting the organic process that's lying inactive within your body. Why would you try…

Interests
Anything comic :)
Favorite Forums
Member Avatar for Snehamathur

[CODE] /* Any year is input through the keyboard. write a program to determine whether the year is a leap year or not. */ #include <stdio.h> #include <conio.h> void main(void) { int year; clrscr(); printf("\n\n enter a year::"); scanf("%d",&year); if(year%400==0) printf("\n\n Leap Year."); else if(year%100==0) printf("\n\n Not Leap Year."); else …

Member Avatar for stephen.beatson
0
369
Member Avatar for prayag.419

hi friends, i want to make software in C#.net (new user of C#.net), on "Clothes shop for men". Can anyone suggest some help.

Member Avatar for prayag.419
0
166
Member Avatar for hyperion

Hello all, Info: I am using Pelles C compiler. Some code first: Following is the linked list structure I am using. [CODE]typedef struct _NODESTRUCT { void* data; struct _NODESTRUCT* next; } NODESTRUCT, *PNODESTRUCT;[/CODE] Method to add a new node to linked list: [CODE]PNODESTRUCT AppendNode(PNODESTRUCT rootNode, void *data) { PNODESTRUCT tempNode; …

Member Avatar for Narue
0
159
Member Avatar for ufancha143

hi there my question is simple and i only need a hint. "how could i develop a applications which can make a new EXE application. like this,.... the end user runs the application and when he clicks on a button named "create a new calculator", the application will create the …

Member Avatar for hyperion
0
98
Member Avatar for SAINTJAB

Guys, I need your help again in C#. I have a folder that contains txt files. I want to be able to convert the text to audio of any file in that folder. I know how to do the convestion but how to automatically convert whenever there is any new …

Member Avatar for Kimpl
0
98
Member Avatar for chathuD

Hi i have a small calculator app .that add 2 values from the user input.(a windows application on C#). And now what i want is to access that calculate method on a web site,witch is run on my local host. so plz.....somebody can help me........

Member Avatar for ashishkumar008
0
113
Member Avatar for zachattack05

I can't figure out what I'm doing wrong here. I want to allow the user to name the database on their own. Can you use parameters in a situation where the command is simple like: [CODE=SQL]CREATE DATABASE @DatabaseName[/CODE] I've been trying forever and it just keeps creating a database called …

Member Avatar for kplcjl
0
2K
Member Avatar for coastcode

I need help with this stack problem. I think I got it, but I dont. Basically its a program to figure out who will be eaten by the dragon from a village. Names, and <CHOMPED> will be in the "villagers-in.txt" file. Every line of the file is supposed to be …

Member Avatar for coastcode
0
106
Member Avatar for AngelicOne

I have a book table and a author table which contains book id for the book tbl and author id for the author tbl. Then I create another table which is Book_Author and it must have the book id and author id join together. How to do this?

Member Avatar for AngelicOne
0
95
Member Avatar for AngelicOne

I search through the web and I only found out how to concatenate. I have a checkedlistbox that is a list of Authors, it is included in my ADD BOOK form. Take note that a book can have many author so I need checkboxlist. Instead of having this in my …

Member Avatar for AngelicOne
0
239
Member Avatar for bufospro

Hi I am implementing a function that check if user is a man or woman. But it does not worl properly. I press e for example and appears two times Please press m/M for Man w/W for Also sometimes w/W/m/M are not recognised and appears the above. My cose is …

Member Avatar for bufospro
0
98
Member Avatar for braveheart_sb
Re: C#

i'm running C# on a windows application and found a problem. I'm unable to Check if a row from my data grid contains a null value, because im populating the rows for the datagrid from a CSV file and after that i need to populate that csv file into my …

Member Avatar for hyperion
0
100
Member Avatar for kimlong008

Who have code read file *.prc help me! I want to write program read file *.prc but I don't know struct file ! only read file *.prc

Member Avatar for kimlong008
0
118
Member Avatar for Abdullah Amjad
Member Avatar for hyperion
0
139
Member Avatar for cedric91

[CODE]void Students_Absence_Report() { int i; double presence[NO_OF_STUDS], absence[NO_OF_STUDS]; for(i=0; i<NO_OF_STUDS; i++) { presence[i] = ((double)student[i].presentDays/14)*100; absence[i] = 100 - presence[i]; } printf("\n\nStudents Presence/Absence Report\n"); printf("--------------------------------\n"); printf(" Name\t\t%%Presence\t%%Absence\n"); for(i=0; i<NO_OF_STUDS; i++) { printf("%-3d %-19s %.2f\t\t%.2f\n", student[i].studNo, strcat(student[i].surname, student[i].givenName), presence[i], absence[i]); } printf("\n******** END OF ATTENDANCE REPORT ********\n"); } [/CODE] Anythings wrong …

Member Avatar for hyperion
0
80
Member Avatar for deepak_1706

I came across these to statements and i am not sure how they are parsed and the output given is produced... [CODE] printf("%d",printf("%d %d",5,5)&printf("%d %d",7,7)); [/CODE] o/p : 5 5 7 7 3 [CODE] printf(" %d %d",printf("%d %d",7,7),printf("%d %d",5,5)); [/CODE] o/p : 5 5 7 7 3 3 Could some …

Member Avatar for hyperion
0
154
Member Avatar for mashimaro

Hello, I need some help from you guys - thing is: I've got a text file with numbers, it looks like this: X, Y, Z. X and Y are float type, the Y is an integer. The file has many lines. How do I load that file, seperating X and …

Member Avatar for Ketsuekiame
0
204
Member Avatar for Unidennn

Hi, im trying to finish up my assignment on tic tac toe game.. and my program keeps crashing, here are two functions where i think it crashes, probably the first one: [CODE] void tic_tac_toe_init (char *ttt[3][3]) { char i,j; int k=' '; for (i=0;i<3;i++) { for (j=0; j<3; j++) { …

Member Avatar for abhimanipal
0
121
Member Avatar for johnnyturbo3

Hi I have a program that has Classes [LIST] [*]GUI [*]Upload [*]and a buffer between the 2 classes - ie used to communicate between the 2 classes . [/LIST] The Upload class uses Process to run an command line FTP app. I want to return what output produced by the …

Member Avatar for Ketsuekiame
0
706
Member Avatar for ShinyDean

Hey there im doing a simple two up dos program for an assignment and im having some issues, we have been given a skeleton with methods and forms within it and im pretty sure were not allowed to change it. heres my code: [code] class TwoUp { Coin coin1 = …

Member Avatar for ShinyDean
0
2K
Member Avatar for xcr

Hello all, I hope that someone can help me with this, I am trying to add an element to a dictionary, and in order to do such, I am using a binary search mechanism to find the correct place in the dictionary. My code compiles fine, but when I run …

Member Avatar for Unimportant
0
90
Member Avatar for sadhawan

Hi Guys, I want to read html file and parse it and then assign the extracted info to the dataobjects. How can i do this .Thanks

Member Avatar for hyperion
0
142
Member Avatar for VIeditorlover

Hi, I have an app generating xml output using xmlwriter. It is loooooong xml, hundreds of thousand of items, is not possible to keep it all in memory, and always few errors occurs. Is there a way how to cancel part of already writen xml within try-catch section and move …

Member Avatar for VIeditorlover
0
139
Member Avatar for ilaref

good day everyone! i have a problem... i have 27 text files in a folder named dito... and every minute there will be new text file in a folder... i need to create a program that saves a record locator(9-digit-code)... the rule is that there will be no human interactions.. …

Member Avatar for hyperion
0
208
Member Avatar for sachintha81

I am a bit (well, actually a lot) confused with how exactly I should use the Dispose() method on SqlConnection object in C#. First let me tell you what I have learned so far (I've been reading a LOT on the subject for the past 24 hours, and I'm still …

Member Avatar for Momerath
0
1K
Member Avatar for judithSampathwa

hi there, i have a question in LINQ in C#, i have a webpage and in that i have a button called clicl and theGridview . i have a LINQ to SQL class with the Employee and the USErLogin which the EID in the Employee calss is a foreign key …

Member Avatar for judithSampathwa
0
244
Member Avatar for destruct0

Hi !!! I have two Windows Forms. First Windows Form contain one Panel Control. This Panel Control contain other 5 child Label Controls. I wish from Second Windows Form get the number of child controls in Panel Control in First Windows Form and there Location? [CODE] // First Windows Form …

Member Avatar for destruct0
0
1K
Member Avatar for jay1648

Hi, Please suggest me all possible ways of declaring structures in my C codes. I want to be able to create a structure which I can use in my methods without have to use the keyword "struct" each time to declare it. One way I already know of is : …

Member Avatar for hyperion
0
184
Member Avatar for krismanish

Hi, I just wanna update a gridview, but the thing is values for the gridview will be generated inside a for loop. for(int i=0; i< 10; i++) { string x1 = SomeMethod(i).ToString(); string x2 = SomeMethod(i).ToString(); // This x1 and x2 values need to be stored in DataSet or Table …

Member Avatar for hyperion
0
83
Member Avatar for emongev

I have a question about a C# windows forms application.... Im aware of the mouseEnter event and the Click events, but i cant seem to combine them, maybe i could get some insight on this problem =) What i want is to be able to have a matrix of components …

Member Avatar for hyperion
0
131