199,114 Archived Topics

Remove Filter
Member Avatar for
Member Avatar for 2big

I wanted to make a visual basic 6 program that allows the user to move the controls around in the program, such as buttons, text boxes, etc. Somewhat like the Microsoft Visual Basic itself. How do I start doing this, I've read everywhere, including the books I have, and it …

Member Avatar for phickman7872
0
314
Member Avatar for camelNotation

Hi.I have been learning c++ lately and I'm rather interested in learning to produce source codes and applications(games maybe).I need know that whether my choice about learning c++ for game programming is right or not.I'm not interested in web developement.I have read some of the posts in c++ forums and …

Member Avatar for Iron_Cross
0
237
Member Avatar for homer

Hi !! Need some help in Communicating sequential processes . Need to code readers writers problem [ the one in operating systems] using CSP . Got to refer a few papers on it by Hore but 'am lost . Any suggestions as to where I could check to gather more …

Member Avatar for Vester
0
293
Member Avatar for fakespike

i found the code to read local ip but i was wondering could it be any smaller then this. #include <winsock.h> #include <wsipx.h> #include <wsnwlink.h> #include <stdio.h> int main() { //////////////// // Initialize windows sockets API. // WORD wVersionRequested = MAKEWORD(1, 1); WSADATA wsaData; if (WSAStartup(wVersionRequested, &wsaData)) { printf("WSAStartup failed …

0
595
Member Avatar for fakespike

well i made this little program to help me check my algebra home work it was soppose to be a simple thing so it is badly coded and rushed but something has happened that i dont understand. i have spotted the problem but dont know why its doing this. for …

0
105
Member Avatar for lobo

i am in a intro to cs class and need help with a current project. it is a simple project but I seem to be stuck. the program is to read 2 integers for the height and width of a rectangle and then display the rectangle using "#" 's. We …

Member Avatar for lobo
0
160
Member Avatar for Valmian

ok.. here I am with a double pointer to a 2D array and I am copying the data from another struct in to this 2d struct array. It gives me an illegal opperand error. Code: data.rows=polar.rows; data.trace = (SQwPOL**)calloc(polar.width,sizeof (SQwPOL*)); for (int i=0; i<polar.width; i++) { data.trace[i]= (SQwPOL*)calloc(polar.width,sizeof (SQwPOL)); for …

0
339
Member Avatar for goodwilllV

Home work agian. I'm required to write a sales analysis program. One of the function dose enter a new salesperson, it will prompt for personal detail. but if user keys in -1 at any point, it will cancel process and return to main menu options. BUT according the programming standards …

Member Avatar for Valmian
0
193
Member Avatar for Valmian

Hello, Ok.. here is another problem I have come up with.. I have a string of numbers (comma or '\n' separated (from .csv file)). I have allocated an array of integers to put in the numbers into yet how do I actually do it. Example: I have "13, 34, 23, …

Member Avatar for Valmian
0
193
Member Avatar for Srdji

ok, i'm new to c++, please bear with me........ i have a program... it asks the user to enter the price, then it asks to enter the interest rate from, and then interest rate to, and then the loan period (> 2 years) The formula used is: result = price …

Member Avatar for Valmian
0
114
Member Avatar for Raineri33

I am new to c++, and i have a program to do as follows: 1) fill a 2D array for the seat chart with * ... DONE 2) add a passenger to the plane I am stuck here, i have the info put into the cin statements etc, but how …

Member Avatar for Mike29936
0
451
Member Avatar for camelNotation

Hi again.Read the source code below please: // Determining the size of variable types #include <iostream.h> int main() { cout << " The size of a bool is:\t\t" << sizeof(bool) << " bytes.\n"; return 0; } p:s:I have not included the other variable types because there was no error message …

Member Avatar for Dani
0
133
Member Avatar for rymade

I just started my first c++ class and we recieved our first assignment. I dont have a compiler at home and live far away from school. I have 2 questions: These are the program requirements: Program 1: Prompt the user and let them enter three integers. Store them in three …

Member Avatar for Armeggadon
0
252
Member Avatar for Valmian

Hello, I really don't know if this is more of a Mac of C++ question but.. I am doing a loading of a file with short CSVload (char * filename) //called from main { //openning a file and checking if it exists FILE * datafile = NULL; if ((datafile=fopen (filename, …

Member Avatar for subtronic
0
201
Member Avatar for Paladine

Ok, google is bugging me today, so does anyone have a site or and idea as to how to learn about programming/developing software for PDA's? I am really curious about how to go about it? WML i have seen mentioned, but I thought that was for Cellular phones. But I …

Member Avatar for Paladine
0
164
Member Avatar for rational611

Hi, Could someone help me with this error I am getting. I downloaded this program from a source code website.I am not a windows programmer. When I compile a program in VC++ 5.0 the following error is be shown: Linking... LIBCD.lib(crt0.obj) : error LNK2001: unresolved external symbol _main Debug/KeyLogger.exe : …

Member Avatar for fzoff
0
218
Member Avatar for rickykoh1983

Hi. I wanted to create a "locking" program that stores information needed for another exe. When the person enters all the information needed and the file that he/she wants to "lock", the exe file will create another exe file that stores all the information being typed previously and also the …

Member Avatar for Armeggadon
0
150
Member Avatar for kyle

[code]#include <stdio.h> #include <stdlib.h> #include <conio.h> int main () { int i,j; puts ("Trying to execute command CD "); [b] i = system ("cd c:\text"); [/b] if (i==-1) puts ("Error executing CD"); else puts ("Command successfully executed"); puts ("Trying to execute command del "); [b] j = system ("del *.txt"); …

Member Avatar for kyle
0
583
Member Avatar for mostafa_bd

Heloo, Is this possible to Write in Sectors in CD (CD-R/CD-RW) by C++ Code. I am in serious problem with this. If not possible, Is there any tool exists that may help me. Please help me. Thanks in forward. Ahsan Mostafa Bangladesh [email]mostafa_bd@hotmail.com[/email]

Member Avatar for mostafa_bd
0
270
Member Avatar for ragzz

Hi, I am doing Master's in Computer Science. I am trying to upload my applets made in Java 3d on web but I want all the users to see them even those who don't have Java, JRE, or plugin. Please help. Anurag

Member Avatar for Tekmaven
0
560
Member Avatar for I_Byte

I developed several macros on my computer, but then I copied and pasted the macros on the c drive>program files> microsoft office> templates of several of my users so that they can access the macros when they go into Word. In Word, they click file> new and choose the macro …

Member Avatar for Tekmaven
0
209
Member Avatar for Cardinal

HI, My project is due tommorrow, I am stuck at this error which i have no clue. I have tried all my best to understand what is its cause but couldn't. I really need help. All I am saying is if you can explain why its doing this. ***Problem*** We …

0
163
Member Avatar for gick01

I'm trying to put the whole program into a loop and I'm not shure where to place it. I have lots of diffrent windows that have to be updated. I have tried adding it into the function that starts the program but it just gets stuck in a loop and …

Member Avatar for gick01
0
153
Member Avatar for Matthew

Hi im 14 aswell, and have developed one game thus far(simple pong game) i am understanding how everything works and would like to know what would be a good second game? ;)

Member Avatar for Dani
0
158
Member Avatar for I_Byte

Why doesn't this work? [code]Public Class testDates Inherits Object Private mMonth As Integer Private mDay As Integer Private mYear As Integer 'constructor Public Sub New(ByVal monthValue As Integer, ByVal dayValue As Integer, _ ByVal yearValue As Integer) mMonth = monthValue mDay = dayValue mYear = yearValue End Sub Public Function …

Member Avatar for Paladine
0
152
Member Avatar for fakespike

i need 2 programmer to make a operating system for me. i will pay them nothing i have no experience in programming whats so ever. but aventualy this operating system will take off and will compete with windows it is then that you can have a small percentage of the …

Member Avatar for big_k105
0
148
Member Avatar for yms

I filed a U.S. Patent Application related to a novel Human Computer Interaction technology(status: Patent Pending). The main idea: to provide a system and method(MultiPointer Manipulating System and Method) for manipulating simultaneously and independently of at least two &#8220;natural&#8221; cursors/pointers on the same display screen of the computer by means …

Member Avatar for Tekmaven
0
156
Member Avatar for fakespike

hey guys i have been studing c++ for a while now. i have learned so much only problem is i find it difficult to apply any of my knowledge. i mean i knwo how to make things but i dont know what to make. thats why i came to you …

Member Avatar for fakespike
0
166
Member Avatar for red_evolve

Hi..I've been searching all around to find out whether I could submit an entry in a JTextField by clicking a separate button created (say, a "submit" button). It seems that, the value entered in the text field will only be appended if I press the Enter key. Can someone please …

Member Avatar for red_evolve
0
188
Member Avatar for sajece

Hi all, I have a customer that has an application using the runtime BASRUN20. The data tables use the extension .D and .X They also have a utility to rebuild the files using a program called BUILDX.EXE. There is no source code. Does anyone have any suggestions on how to …

Member Avatar for Dani
0
136
Member Avatar for red_evolve

Hi, there! Anyone mind lighten me up on the above subject? I am currently developing a simple game in java. So I was in the process of deciding whether to use an applet or application to present it.

Member Avatar for red_evolve
0
174
Member Avatar for bboyle

When I disable my webpage the text in my edit fields duplicates. e.g. ABC changes to ABCABC. THis only seems to happen when I have my edit fields in a <table>. A sample of my code is provided. I'd appreicate any help. Thanks, B. [code] <html> <head> <title>Test</title> <script type="text/javascript"> …

Member Avatar for bboyle
0
367
Member Avatar for Iron_Cross

Anybody understand these? I'm having the hardest time with them. Partly because I don't see a use for them :P But what would be an example of a time when you would need to operate on a bit itself? As in, what is their purpose? Thanks for any help :)

Member Avatar for Iron_Cross
0
140
Member Avatar for fakespike

hello i wanted to create a tetris game. i would really appreciate it tho if some one could roughly outline what i have to do. leave the coding for me i will take care of that.

Member Avatar for odious face
0
638
Member Avatar for fakespike

well i have read many programming books in the hope to ready my self if i'm to go to university as a cs major. but if what you guys are saying is true then programming books are the least of my worries. so what i wanted to know is can …

Member Avatar for Dani
0
125
Member Avatar for long shots

I am currently working on a game called realm knights ([url]http://www.realm-knights.tk[/url]) i need 2 c++ programmers. Email at yonlongshots@hotmail.com or realm_knights@hotmail.com or post at the forums at realm knights. Or even post on here :D

Member Avatar for samaru
0
179
Member Avatar for consultant

I'm a long time Perl programmer that has developed some pretty complex E-commerce sites using Perl CGI and mySQL. I have a brand new site development project which will also be a dynamic, mySQL driven site. I've done some reading about Perl versus PHP and it appears the main conclusions …

Member Avatar for samaru
0
352
Member Avatar for theQube

Hi. I'm in a Java class at harvard, and they gave us this assignment to create a function moveKiloMile(); , which moves an on-screen robot 1000 units. We can declare the function by using a function moveMile(); , which moves the robot 8 units. Below is the code that I …

Member Avatar for Dani
0
716
Member Avatar for QuadMedic

[b][i]Can anybody plz help me with this question for my assingment it is due the 25 june and i can't get this question done......[/i][/b] The manager of a speedy bus company needs to know how many people travel by bus to different regions, which have codes A, B and C. …

Member Avatar for Roberdin
0
139
Member Avatar for marky9876

Programmers, Coders, Amateur programmers and Part time programmers apply within. Im looking to recruit amateur and part time programmers who are not proffessionals but who code or program in there spare time because they are enthusiastic and love it. You dont need proffessional qualifications, or a degree to fill this …

Member Avatar for samaru
0
244
Member Avatar for Mazon

Hello, hello! =o] I've programmed a pretty decent script to manage news, users, profiles, and pages for a typical website. This script is loaded with features, and it even comes with a default template! Sadly I just released v1.2 and I'm already working on 1.3, so expect quick updates =o/ …

Member Avatar for Mazon
0
208
Member Avatar for 1337h4x0r

i am doing a software design class for my first year i had a written this psuedocode for a Timer type program type program, my teacher tells me there are errors in it i dont know whats wrong could you tell me please. here it is Program Timer Var mm …

Member Avatar for Tekmaven
0
464
Member Avatar for Jedi

Hi im a newbie here!I wish to build a music website based around emec'in (MC'in)!The game would b built in2 the site! There r 3 wayz MCz can battle online: 1)Vocally!(MCs rap to the music over a mic)(I dont plan on doin thiz 4 my site yet) 2)Forum(MCz post thier …

Member Avatar for Jedi
0
293
Member Avatar for Mazon

I have CodeWarrior v7.0, an IDE for C++ and Java. I can get the C++ functionality working, however whenever I try and begin a Java project it gives me an error saying "Couldn't generate source code because Java Virtual Machine could not be started." I've installed the latest versions of …

Member Avatar for lohengrin332
0
227
Member Avatar for Ben Martin

first post! hello all. :) i'm in the process of converting some vbscript into jscript at work, and not being an expert when it comes to any sort of javascript (or c syntax generally) i am now stuck. specifically with the 'switch' statement. the application is a server-side api that …

Member Avatar for Ben Martin
0
291
Member Avatar for Mr Gates

I've made some C++ dos programs, and it runs fine, and does everything I want it to, but the moment it does the last line of code, it exits. I use Visual C++, and it stays on when I preview it in there, but after I compile it, and run …

Member Avatar for Dani
0
179
Member Avatar for anthony86

I was thinking of creating this program for a school related project and was seeking advice/guidence concerning the matter. I prepose to create 7 distinct personalities and have them communicate/interact in a virtual world. I will be storing data that has been collected through everyday discussion such as questions, responces, …

Member Avatar for Dani
0
244
Member Avatar for BMF

Hello>>> How are you all? I need a quick help with my assignment... it is in C not in C++... So, Could you help me? I don't know what to do!! the question is: Write a program that reads a data file containing a C program and writes it to …

Member Avatar for BMF
0
479
Member Avatar for sam_

Hi. I am looking for joystick driver or something similar, what will pretend as joystick, but will use a mouse. I mean it should be something like joystick for games, but there will be only mouse attached to PC. Does anyone seen it somewhere? Or is anyone able to code …

Member Avatar for root
0
341
Member Avatar for Fyrelion

Hi, I was wondering how you write to an Access Database using current Java versions. I've been looking pretty hard for awhile with a teacher and some friends, but so far we haven't come up with anything. Could you guys help me out? Thx [quote] [b]Never eat soggy waffles. They …

Member Avatar for Mayaka
0
296

The End.