Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
13
Posts with Downvotes
7
Downvoting Members
7
1 Commented Post
~20.4K People Reached
Favorite Tags
Member Avatar for arithehun

This is a tutorial, not a program. [b]Step 1[/B] First, create a file for your website, and name it "admin.html". [b]Step 2[/b] Now on it, say, "You must log in to view admin, blah,blah,blah. Click here to launch our client." [b]Step 3[/b] Link "Click here" with the C++ .exe file …

Member Avatar for Aaron_16
-5
15K
Member Avatar for VanessaRyan

A [URL="http://bit.ly/appcelerator_idc_q4_mobile_developer_report"]new survey[/URL] jointly conducted by Appcelerator® and International Data Corporation (IDC) released September 27, 2010 reveals Appcelerator Titanium developers favor Android over iOS in TVs and other devices.[ATTACH=right]17397[/ATTACH] Although the market shows that Apple currently leads in iPhone/iPad sales and popularity, the survey reveals that of the approximately 2,300 …

Member Avatar for peter_budo
0
486
Member Avatar for cogitoergosum18

[CODE]#include <iostream> using namespace std; int main() { double firstNo;// first number is stored here double secondNo; double result;//variable for result when first and second number are operated upon char operation;// place to store the user's inputed operation // asks the user to choose the first number cout<< "Enter in …

Member Avatar for pseudorandom21
0
238
Member Avatar for arithehun

Okay, you know when on like an alert window, or a form, one of the buttons automatically gets executed when you press enter, such as shown. [I]See Picture #1[/I] [i]So I was wondering[/i] how I could do this in Java for a both a JFrame and a JOptionPane. Thanks. arithehun …

Member Avatar for arithehun
0
121
Member Avatar for bibiki

I have the following code as taken from the book I read from: [CODE] import java.awt.*; import javax.swing.*; /** Frame1 is a frame with a label and a button */ public class Frame1 extends JFrame { /** Constructor Frame1 creates a frame with a label and button */ public Frame1() …

Member Avatar for kramerd
0
190
Member Avatar for arithehun

I have joined our local high school's FIRST robotics club, but their programmer graduated last year, so who got selected? The wimpy freshman: me! I am an intermediate programmer (PLEASE don't look at my previous posts, I now know two languages, and am better). So I downloaded an instruction booklet. …

Member Avatar for arithehun
0
1K
Member Avatar for Robban

Hi, I have a javaproblem that I just can't solve. "Write a [B]recursive[/B] method who returns the largest value in an array with the signature: [CODE]public int max(int[] v)[/CODE] (Hint: If you need to, use a private help-method) It would be easy if it was allowed to change the signature …

Member Avatar for JamesCherrill
0
184
Member Avatar for meshmedia

I am trying to develop an application for iphone just like this:-- [url]http://itunes.apple.com/app/solarchecker/id331869963?mt=8[/url] so can anyone provide me any link or information so i can develop this application using flash cs5 or is this possible to develop a application like in the link i have provided please let me know …

Member Avatar for arithehun
0
175
Member Avatar for arithehun

Anyone that develops GUI applications in C++ will definitely be familiar with the C++ <windows.h> class. However, I am wondering who wrote this vast class?

Member Avatar for Ancient Dragon
0
97
Member Avatar for ssubnel

This is my homework for a Java class. I get a perfect score followed by a query as to why I didn't use a void method. The answer is I don't understand the difference. Can someone illustrate for me how it would look. I need a better grasp of this. …

Member Avatar for ssubnel
0
151
Member Avatar for Jobie111

Hello, First off, thank you to anyone who helps me in advance. I am about as new as one can be to Java, and am having some troubles. In the below code, the goal is to create a fraction. The rules are the denominator has to remain positive and I …

Member Avatar for javaAddict
0
111
Member Avatar for arithehun

I want a forum for a website, and I like this system best. Is this forum open source? If so, where can I download it?

Member Avatar for Stefano Mtangoo
0
84
Member Avatar for vishyw

With all the hype being created, we at EDUmobile are interested in knowing the actual truth via conducting a survey here asking for direct feedback from iPhone developers. Please share the following - (a) Total time in months/years that you have been dabbling in the iPhone development space (b) Number …

Member Avatar for arithehun
0
64
Member Avatar for floris

Hi there, I have a script in my intranet to which I have 100% rights to run through browser using exec(); passthru(); system(); etc with php. Now we use this to make automated backups per user database of certain systems connected. Very simple for the end-user after done working and …

Member Avatar for TheOgre
0
245
Member Avatar for arithehun

I have a question: Is there any tutorial or way I could create a batch file that scans the folder that it's in, and then prompts you with an option of whether to delete any (C++, for example) files that don't begin with a command line, e.i. doesn't start with …

Member Avatar for arithehun
0
99
Member Avatar for samaru

If you're doing programs for academic reasons, this is a good site to go for C++ information. Good for snippets. Used it a lot through classes. http://www.mvhs.net/~rkrane/clecs/

Member Avatar for kvprajapati
0
1K
Member Avatar for arithehun

Hello, I have a somewhat basic question about Dark GDK. I am taking Dark Basic courses, and converting the code to Dark GDK (not a difficult task), because I am unwilling to spend $60 on an inferior compiler. I am taking a complete FPS tutorial. It went fine for a …

Member Avatar for arithehun
0
302
Member Avatar for arithehun

I am trying to create an expression evaluator to expand my C++ knowledge. It is supposed to evaluate 5(x+7)-2. Here is the code: [code=c] #include <iostream> #include <stdio.h> #include <time.h> using namespace std; time_t now, later; void sleep(int delay) { now=time(NULL); later=now+delay; while(now<=later)now=time(NULL); } int main(void){ //It finds an error …

Member Avatar for arithehun
0
170
Member Avatar for arithehun

I am trying to create a dictionary program, just for fun. I doubt I will ever get past twenty words. But this program has a problem. It always goes to the word, no matter what I type in, or press. Here is the source code: [code=c++] #include <iostream> using namespace …

Member Avatar for arithehun
0
179