132,728 Archived Topics

Remove Filter
Member Avatar for
Member Avatar for bones

hi people i was wondering how you create a test plan im new to this and just created my 1st c game... need some help as im not sure how to create a test plan preferably in a table. [CODE] /*In order to play the game of craps. each player …

Software Development c c# c++
Member Avatar for infamous
0
209
Member Avatar for abey

I'm wroking on a project on VB6 that needs me to use a database and don't really know which database to use. need some advice on this.

Software Development visual-basic
Member Avatar for big_k105
0
108
Member Avatar for FireNet

How many of you guys belive it is possible to program a server and create within it a simple environment in which people can write their own pieces of code and complie it without problems. This server should be capable of using multiple 'plugins'(the pieces to code which others write …

Software Development c
Member Avatar for FireNet
0
162
Member Avatar for ElectroBoy

I am struggling with creating a function that is void. I can write the code inline without a function as follows : #include <iostream> #include <cmath> #include <string> #include <iomanip> using namespace std; int main() { string answer; answer = "Yes"; while ( answer[0] == 'Y' || answer[0] == 'y' …

Software Development c++ microsoft visual-studio
Member Avatar for ElectroBoy
0
251
Member Avatar for dirs

Blackjack class is derived from card class ( see attached playingcard.h and blackjack.h) I have problem with: void blackjack::DealCards() function. I want to use function deal_hands from card class to set the value of pcard1 pcard2, dcard1 and dcard2. How could I do that???

Software Development c
Member Avatar for BlackDice
0
136
Member Avatar for FireNet

I am currently developing a Snake game with multiplayer support(Not Network based) with unlimited no of players(ok limited by the keys and RAM and processor speed but not restricted). I developed a nice concept of key maps to load all controller information into memory and handle it there.This works just …

Software Development c++ linked-list
Member Avatar for FireNet
0
232
Member Avatar for liliafan

Hi I am needing to store some data for a project I am working on, I am trying to figure out the fastest method to access the stored data, the data takes the form: keyword (std::string) - list of ints ie: yellow - 2342 2312 8478 3827 9773 4837 2893 …

Software Development c++ linked-list perl storage
Member Avatar for liliafan
0
269
Member Avatar for camelNotation

Hi.I'm posting a little part of my code here and the errors... #include <iostream.h> intintboolfalsetrue enum CHOICE { DrawRect = 1 ,GetArea,GetPerim,ChangeDimensions,Quit}; // rectangle class declaration class Rectangle --------------------Configuration: Week1inReview - Win32 Debug-------------------- Compiling... review.cpp D:\Adobe\Vc++6projects\Week1inReview\review.cpp(5) : error C2143: syntax error : missing ';' before 'enum [tag]' D:\Adobe\Vc++6projects\Week1inReview\review.cpp(5) : error …

Software Development adobe c++ storage
Member Avatar for meabed
0
343
Member Avatar for marceta

Hi guys, im new to this forum but congratulations, i looks great Im making a game for a TAFE class (which i will gladly send to any1). The game is a text based Role Playing Game. I am finished early so i am going to improve my current game. I …

Software Development c
Member Avatar for marceta
0
295
Member Avatar for Transworld

[color=black][font=Times New Roman]If anyone still knows Qbasic could you take a look at this code for me?[/font][/color] CLS READ nam$, addr$ DO UNTIL nam$ = "END OF DATA" PRINT nam$, addr$ READ nam$, addr$ LOOP DATA ANNE DOE, 1234 BAKER ST., BRUCE LEE, 457 HIGH ST. DATA HOPE SEW, 222 …

Software Development qbasic
Member Avatar for Transworld
0
682
Member Avatar for i686-linux

bash: #!/bin/bash DOMAIN=mydomain.com for client in ServerA ServerB ServerC ServerD do xhost +$client.$DOMAIN done MS-DOS: @echo off for..... crap..... I can't seem to get the for loop to work properly. Has anyone had much experience with batch files in DOS? I realize that running xhost inside of a batch file …

Software Development shell-scripting
Member Avatar for liliafan
0
202
Member Avatar for AmericanD

[code]int gcd (int num1, int num2) { int remainder; if (num1 > num2) remainder = num1 % num2; else remainder = num2 % num1; if(remainder!=0) { return gcd(remainder, num1); } return num1; } int gcd2 (int num1, int num2) { int remainder; return ( remainder = ( num1 > num2 …

Software Development c
Member Avatar for AmericanD
0
159
Member Avatar for ALAN 007

i need to write a programme where the customer has a list of products to choose from and to indicate their weight. Upon doing this the price of product per Kg is displayed in another box and once the weight is entered Command Button is pressed and the transaction is …

Software Development email visual-basic
Member Avatar for ALAN 007
0
123
Member Avatar for spikes

Hi All, I'm haveing some problems with my perl code. the script is for a mail filtering program called mimedefang, the code is the main filter. the fist bit of code is used to filter out mail based on the subject line. sub filter_begin () { my($msgSubject, $hfile) = @_; …

Software Development perl
Member Avatar for spikes
0
296
Member Avatar for zeakman

need help with basic program.trying to write a program in qbasic to take in a integer calculate and print out the factorial.been on this for a long time

Software Development visual-basic
Member Avatar for scisoft
0
251
Member Avatar for root

[quote]<form method="POST" action="http://www.geocities.com/zerounixinc/cgi/FormMail.pl"> <P ALIGN="LEFT"><FONT SIZE="3">Name <input type="text" name="Name" size="20"> E-mail <input type="text" name="Email" size="20"> Address <textarea rows="3" name="Address" cols="29"></textarea> Subject <select size="1" name="Subject"> <option selected>Computer Repair</option> <option>Computer Setup</option> <option>Networking</option> <option>Building</option> <option>Other</option> </select>& Discription Of Job <textarea name="Description" cols="47" rows="4" wrap="true"></textarea></p> <p align="left"> <input type=hidden name="recipient" value="tyler@tc3net.com"> <span style="background-color: #008000"> …

Software Development email first-post perl
Member Avatar for liliafan
0
221
Member Avatar for parisa

Hi all :) I'm trying write an email program in java which can send an SMS when an email is recieved. However, I dont know much about this like for example, do I need to have any authorisation from a telecommunications company to do this? Also, I want it to …

Software Development email java
Member Avatar for maxim_kh
0
234
Member Avatar for ZoilaResendiz

Hi, I am trying to connect to a Microsoft Access DB using VB6, when I create a new connection I Dim DB as Connection, then Set db = New Connection. When the program is ran the complier doesn't recognize the word 'New'. Is there a link I can go to …

Software Development microsoft microsoft-access visual-basic
Member Avatar for BlackDice
0
239
Member Avatar for L3fty19

Ok I'm trying to create a program here and i have three buttons. Add Clear Exit when i enter the name/title and click add i get the name/title in the listbox but as soon as try to add a new name/title it just replaces the old one. could someone help …

Software Development visual-basic
Member Avatar for BlackDice
0
108
Member Avatar for liliafan

Hi I am getting an error with some code, it compiles fine on linux but it is throwing an error on solaris, it is to do with strtok_r, the following is the error message: sku_cache.cpp:150: implicit declaration of function `int strtok_r(...)' sku_cache.cpp:150: assignment to `char *' from `int' lacks a …

Software Development c
Member Avatar for liliafan
0
254
Member Avatar for bil

I have got your site of interest and useful. Iam a student and besides learning programing in class, i take time to teach myself C++ from the internet. i have this exercise in which i got stuck and wish to solicit for help, do you offer help on such? if …

Software Development c++ display engineering ios
Member Avatar for infamous
0
201
Member Avatar for Asif_NSU

Guys, I am a newcomer in programming. Just beginning to learn C. Now my university text book is A Book On C- by Al kelley and Ira Pohl But i heard that C primer plus-by stephen prata is also a good one. I also heard that Expert C programming and …

Software Development c++
Member Avatar for scisoft
0
147
Member Avatar for raybulba

I've tried to use a bunch of example programs that make use of "G2++.h" and "g2_X11++.h" but my compiler complains that I don't have those files! Furthermore I can't find any place where I can download such files. All I can find is the old g2 stuff. Does anyone know …

Software Development c
Member Avatar for vesselin
0
200
Member Avatar for liliafan

Hi I am trying to figure out how to do something for a program I am writing I am fairly new to C++ I have only been using it for about 3 months. Basically I want to launch a pthread which is easy enough but from within that thread I …

Software Development c++ perl
Member Avatar for liliafan
0
261
Member Avatar for Dark_Omen

I want to know how to get started to make a program in C++. I have read up on the material and I just don't know where to go from there. i would like the program to work on a windows platform.

Software Development c++
Member Avatar for liliafan
0
176
Member Avatar for ScriptBoy

hi, i need to make a small program, which makes a connection to the sybase database running on unix machine. i'm new to this server client programming. pls help !

Software Development c client-server unix
Member Avatar for liliafan
0
93
Member Avatar for Tellie

Hi All I am creating an ASP page where I am trying to display controls on the page based on the roles of the user. I have a database wherein I have 5 tables to store the following: Table 1: Application details having the app id as the primary key. …

Software Development app-store asp display vb.net
Member Avatar for Tellie
0
281
Member Avatar for Dreamcatcher

hello all, i was wondering if there was a way to encrypt me visual basic source code so when people view it in a hex editor ore anything they will not see as much of it as when i dont encrypt it. yet i dunno how to encrypt things in …

Software Development visual-basic
Member Avatar for scisoft
0
160
Member Avatar for DearEphesus

Hey! I was just wondering if it was possible to make a type of "search engine" using VB. What I want to do is be able to type in something (song title), and find the matching song lyrics stored somewhere.. and have it display them? Is that possible? If so, …

Software Development display visual-basic
Member Avatar for DearEphesus
0
138
Member Avatar for Ronnie

I am (very) new to Java and am trying to convert a large VB 6 program to Java. My program does a lot of calculations and then outputs the information to screen, file or printer. My problem is outputting the data in a certain formate and viewing/printing the info. The …

Software Development java printer
Member Avatar for Ronnie
0
124
Member Avatar for frosticex

I'm a novice programmer, I'm writing a program called GPA that reads characters and numbers from a file. The numbers from the file are the amount of credits for a course, the characters on the program represent the grade for the course. I'm supposed to find the amount of credit …

Software Development c++ email file-system
Member Avatar for frosticex
0
189
Member Avatar for MrCool

Hi there, I am currently converting a matlab file to C, and need some help writing the data calculated in 2D arrays to files. This is what i ahve done so far: <snip> File *U; File *V; File *X; File *Y; U = fopen("U.txt", "w"); V = fopen("V.txt", "w"); X …

Software Development c c# c++ file-system
Member Avatar for BountyX
0
223
Member Avatar for DanteInHell

As I've decided to learn how to program, and what language I want to learn (C), I'm now left with a BIG question. Do I need to learn computer theory? I've seen many posts on this forum by people who have taught themselves with books, tutorials, and much hard work. …

Software Development c
Member Avatar for Dani
0
159
Member Avatar for BountyX

Any good libraries out there for C++ cgi implementation?

Software Development c c# c++ shell-scripting
Member Avatar for alc6379
0
293
Member Avatar for Gnome_101

I have the code(below) but I can't get the program to close data2.txt and opne it again. Is there a way to reset the starting read position? I want it read through the file for as many times as I want, without ever editing the file. [size=2]#include <fstream> #include <string> …

Software Development c c# c++ file-system ios
Member Avatar for Gnome_101
0
484
Member Avatar for clobbasaurus

[font=Comic Sans MS][size=4]Hi Everyone,[/size][/font] [font=Comic Sans MS][size=4]I am a student and I have been asked to make a program to create business cards. At the moment I have made a fully working application with file IO. The program basicly takes any input into the text fields and displays them on …

Software Development java
Member Avatar for BountyX
0
1K
Member Avatar for Marcela

[font=Times New Roman][size=3] [code] #include <iostream.h> #include <string.h> void menu_choice(); void char_count(char[], char); char* concatenating_function(char*, char*); int main() { char continue_input; char char_to_count=0; do { menu_choice(); cout<<"Do you want to continue?\n"; cin>>continue_input; }while (continue_input == 'y' || continue_input == 'Y'); return 0; } void menu_choice (void) { char word_to_use[30]; char …

Software Development c++
Member Avatar for BountyX
0
117
Member Avatar for Cplusstudent1

im trying to make a program that can receive data from a port (ex. USB, Parallel) and then write back to it. i was wondering if anyone could help me out by point me in the right direction as of what to do. :-| thanks

Software Development c
Member Avatar for Cplusstudent1
0
85
Member Avatar for keir.whitlock

hi there, i am trying to get my program to display a different bitmap in four different child windows of my win32 C program but i cant seem to do it. Any idea's? I have got the information so far off of the forgers win32 tutorial. [CODE] #include <windows.h> #include …

Software Development c display encryption
Member Avatar for Dani
0
425
Member Avatar for johnroach1985

there are two examples which are seperated by"-------" sign to use them just put them through a java creator.post for comments ------ "A rational anachist believes that concepts such as 'state' and 'society' and 'government' have no existence save as physically exemplified in acts of self-responsible individuals.He believese that it …

Software Development first-post java
Member Avatar for Dani
0
145
Member Avatar for doubleglazing2

Hi, I',m not sure but I think I'm allowed to post questions here showing my own work. I have the following question (not homework or anything assessed - Im revising for my final exam and this is a past paper question that i dont have model answers to). I'd appreciate …

Software Development first-post pascal
Member Avatar for doubleglazing2
0
204
Member Avatar for keir.whitlock

[font=Arial][size=2]Hi I am trying to write a program that will demonstrate encryption to the user. I would like to have some kind of button menu at first, then the program will show an example of each depending on what button was pressed. Any idea's? Should I go for a win32, …

Software Development c c# c++ encryption
Member Avatar for keir.whitlock
0
168
Member Avatar for gicio

Developing, building, and testing. How do it the best? Learning from the world leader - Microsoft I'm very interested in how the developing/build/testing workflow @ Microsoft looks like. I think Microsoft as world leader in software developing business must have a very good workflow. Does anyone know how the development …

Software Development c microsoft
Member Avatar for suRoot
0
193
Member Avatar for christopher

Hi all, My knowledge of C++ is nill, and I need help. I am having a program written in C++(with MFC classes). I will get the source code when completed. My goal is to be able to brand the program to my different websites. The programmer says he is setting …

Software Development c++
Member Avatar for christopher
0
321
Member Avatar for sdr

How To Drag And Drop An Image Onto A Tabbed Pane

Software Development image java
Member Avatar for BountyX
0
2K
Member Avatar for Nics

I am studying Programming and trying to get my assignment to work the problem is with the MAINTENANCE PART in red I can get it to work! Can anyone help!!!! public class Assignment2 { static final int TotalCans = 50; // The total number of cans avaliable static String Drinks[] …

Software Development java
Member Avatar for BountyX
0
143
Member Avatar for forgotten

This what I have done so far... (to cscgal and inscissor) As you can probably tell I have't done C++ for long; only a few weeks now so please point out any mistakes that I have made. Here is some evidence to prove that I have tried, even though it …

Software Development c++ display email ios
Member Avatar for BountyX
0
168
Member Avatar for phani

Hi, I am a programmer on c++,i want to do programming on symbian(Epoc) operating system. presently i dont know anything about the programming on symbian operating system. please give me ideas, and suggest the books what i have to refer. waiting for ur replies

Software Development c++ operating-system
Member Avatar for cuddlers89
0
366
Member Avatar for BountyX

I want to write a program that will take a screenshot and save it as a jpeg thumbnail with custom compression settings. I have no clue where to start, except for google, which didn't really help. Can somebody point me in the right direction?

Software Development c google
Member Avatar for BountyX
0
138
Member Avatar for machakwa

Could anyone tell me how me to count the frequency of character appear in a paragraphy using c program For example, SHE IS GIRL S appear two time so we output S thanks

Software Development c
Member Avatar for Creator
0
174

The End.