Posts
 
Reputation
Joined
Last Seen
Ranked #298
Strength to Increase Rep
+6
Strength to Decrease Rep
-1
97% Quality Score
Upvotes Received
51
Posts with Upvotes
37
Upvoting Members
29
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
10 Commented Posts
13 Endorsements
Ranked #134
Ranked #746
~123.84K People Reached
Favorite Tags
Member Avatar for Duki

Well I just started eating dinner and thought this would be a neat topic. Everyone knows we love to eat while on the computer; two birds, one chair. I'll start it off: Deli Sandwiches, macaroni salad, potato salad and a Pepsi :)

Member Avatar for Reverend Jim
22
17K
Member Avatar for WAIWAIWAI

How to add, subtract, multiply and divide 2 different numbers from 2 different form. Pls help me. The code i think is way too simple example: (Result.text = result) (Text1.text = number from form2)(Text2,text = Number from form3). the code i think is like this and this one is not …

Member Avatar for Reverend Jim
0
17K
Member Avatar for Learner010

we use `Print` to print text to form in vb6 and dont know how to print text to window form in vb.net please explain how to achieve it . . .

Member Avatar for munawer_1
0
3K
Member Avatar for Learner010

first off, i've never been to web development. I'm developing my personal website where, for some purpose , i need to display some math figures. And somebody suggested me to use mathjax for this purpose. i tried it on my own. it works. but i see some font-size related issues. …

Member Avatar for hericles
0
178
Member Avatar for Learner010

I'm using mathjax in ckeditor and i want to print the fraction (uploaded here in the link [Click Here](http://tinypic.com/r/23k465g/9)).So,what command i have to write to print that fraction ? Here is what i'm trying : `$$7\(frac\({4}{3}\)\)$$` But it isn't working. So , please suggest me a solution

Member Avatar for rproffitt
0
122
Member Avatar for Learner010

I'm back here after a very long period. And see lots of changes here. Beautiful and amazing design. I was missing some illustrious members. here is who are they ? and why i still know them : `Reverend Jim` provided full assistance while i was learning `vb.net` . i still …

Member Avatar for Shattered
1
400
Member Avatar for happygeek

If you don't know who [Alan Turing](http://en.wikipedia.org/wiki/Alan_Turing) was, then shame on you. The British code breaker, mathematics genius and father of both computer science and artificial intelligence is rightly credited with helping to bring the second world war to an end. Turing was also gay, and that's where the shame …

Member Avatar for Lifei_1
8
697
Member Avatar for Reverend Jim

I can't take it anymore. At first it was only occasionally. Now it seems that every time I turn on the TV someone else is doing it. Doesn't our school system teach English anymore? I am referring, specifically, to pronouns. At least three times today I have heard expressions like …

Member Avatar for Reverend Jim
7
5K
Member Avatar for Deep Modi

I am having my friend USB, which contains the error while Formatting, copying, deleting, renaming, moving files from it. The error is `"The Disk is Write Protected"`, I don't Know why this all happens? I try to repair it with the google help and find some common solution and tried …

Member Avatar for aminachour
0
2K
Member Avatar for valestrom

May sound all too easy for some, but I'm just getting started on android development and I can't find out why I got an error when everything is exactly as it is in the tutorial. Weird but I'm confused so I thought I'd post to see if someone can help …

Member Avatar for Junaid123
0
1K
Member Avatar for John A

User input/output is a key component in the programs you write, yet most online tutorials just provide a quick-and-dirty method of grabbing data. In other words, it works right up until the point the user does something unexpected. In this tutorial you will learn how to avoid the common mistakes …

Member Avatar for Khawaja Ghulam
11
7K
Member Avatar for Learner010

Yesterday i completed my exercises on loop , that's why today i've decided to create a tutorial on loop in c++. # Loop # loop allows us to repeat a statement or a group of statements. When we want to repeat a single statement then it is not necessary to …

Member Avatar for Markland
7
675
Member Avatar for rose_2

#include <iostream> #include <conio> void main () { cout<<"rose mary"; getch(); }

Member Avatar for tinstaafl
0
139
Member Avatar for Learner010

As usual, after learning new stuff, I write on it. Yesterday I finished learning on "Functions in C++" and found that functions are very easy to learn and useful. Hope this tutorial helps beginners. # What is function? # Sometimes when we want to execute a specific task wherever it's …

Member Avatar for Learner010
2
855
Member Avatar for Learner010

hello i want to create a chat application. i will design it once i get the idea of how it works.the chat will be based on ip addresses. is it possible to create a chat system which uses ip address for chat communication?how can i do that ?i am unaware …

Member Avatar for Mr.M
0
224
Member Avatar for johnchristian.pagnes

Can someone please help me ? I made a button named "Open" for Visual Basic 6.0 , and i would like to execute/open Microsoft Access 2007, can someone please help me ...

Member Avatar for NewCoder_31
0
233
Member Avatar for <M/>

For some odd reason, this whole week, my phone hasn't managed to get even 10% charge on it after charging it overnight. Basically, I plug it in at night, charge it for at least 7 hours, and in the morning it'll have about 10% charge. Why does it do that? …

Member Avatar for Kelly Burby
0
290
Member Avatar for Jjajangmyeon

When I dynamically allocate mem within a function, do I have to still manually release it? Or does it go away once the function has run and returned (like local variables)? If I do have to release it, since it's basically a pointer can I do that from main? Do …

Member Avatar for David W
0
189
Member Avatar for amal.sultan.5855

how to find length of a character string without using while loop or user defined function?

Member Avatar for Gonbe
0
202
Member Avatar for daniela.valkanova

> Not sure why do I always get a 0 from the isvalidReal function? int isvalidReal(string signedNum) { bool check; int i = 0, j = 1; string str = "+-."; for (i = 0; i <= signedNum.length(); i++) { if (isdigit(signedNum[i])) { check = 1; } else if (signedNum[0] …

Member Avatar for Learner010
0
139
Member Avatar for EarhawkPH

I've been dealing with this problem for about 2 days now. Write a program that accepts the price of an item and displays the discounted price. Accept also the amount given by the customer (assume the amount is greater than or equal to the discounted price) and display the change. …

Member Avatar for Hiroshe
0
248
Member Avatar for daniela.valkanova

int game() { int n; cout << "enter an odd number: "; cin >> n; int MagicSquare[n][n]; // It says that the expression must have a constant type? int newRow,newCol; int i = 0; int j = n / 2; for (int i = 0; i < n; i++) { …

Member Avatar for tinstaafl
0
290
Member Avatar for supermastereu

Read the age and weight of 5 people. Calculate the sum of the ages of people over 70 Kg #include <stdio.h> int i, age, weight, sum; main() { for( i=0; i<5; i++) { printf("Age: "); scanf("%d",&age); printf("weight (ex: 92.5): "); scanf("%d",&weight); if(weight>70) sum=sum+age; } printf("\age sum: %d", sum); return(0); }

Member Avatar for Learner010
0
340
Member Avatar for happygeek

Yay! But what is 'MM' out of curiosity? 1.11 millimetres? :) ![927c8d593a30ce14fd7817d5d35c4f71](/attachments/small/0/927c8d593a30ce14fd7817d5d35c4f71.jpg "align-left")

Member Avatar for Hiroshe
0
236
Member Avatar for king.umair523

I am confused about pointer , it takes value of a vairable or only takes adress of vairable ??

Member Avatar for tenzinlol
0
131
Member Avatar for supermastereu

Receive a number from the keyboard and tell you if it is divisible by 10, 5, 2 or if it is not divisible by any of these. Why this dont work? #include <stdio.h> #include <stdlib.h> #include <math.h> main() { int num; printf("number: "); scanf("%d", &num); if (num % 10 == …

Member Avatar for rana ranjit
0
140
Member Avatar for KArisma04

please help me i need to make a program to calcutale the grade of a student with a prelim = 20% midterm = 20% prelfinal = 20% final = 40% ` = 100 %`

Member Avatar for Learner010
-1
212
Member Avatar for jonel.sumang

I have a c++ project that is due on friday. please help :( Codes should not be too advanced. Use loop or array. >Introduction: An interesting sequence of numbers can be generated using any given integer using the following procedure: 1. First, arrange the digits of the given number in …

Member Avatar for Learner010
0
290
Member Avatar for Learner010

i want to insert text in textbox at specific location(i.e row 2 column 3).how can i do that ? i tried this but its not working `Me.RichTextBox1.Text = Me.RichTextBox1.Text.Insert(i, CChar(cb.Text))`

Member Avatar for Reverend Jim
0
406
Member Avatar for Learner010

# Tutorial On Operators# *Operators are the signs to the tell the compiler to perform specific task*. The Operators fall into following categories :- Arithmatic Operator Relational Operator Logical Operator Bitwise Operator Miscellaneous Operator(i added Assignment Operators in this categeory) **Arithmatic operators:-** There are following arithmetic operators:- + Add [6+2=8] …

Member Avatar for Learner010
5
683