199,114 Archived Topics

Remove Filter
Member Avatar for
Member Avatar for Tauren

Well, is there a book I can get that teaches me all about How to create a game engine? Like how to create a game engine and stuff?

Member Avatar for John A
0
125
Member Avatar for CurtisBridges

Exceptions -------------------------------------------------------------------------------- I am working on a class project as layed out by the instructor. This is in conjunction with Chapter 13 (Exceptions) from the book How To Program in C++ by Deitle 4/e. I am at a total loss on this subject. I thought that catching problems was up …

Member Avatar for John A
0
124
Member Avatar for kimbokasteniv

I was going through the questions in my study guide for computer science, and I noticed a few blocks of code that contained syntax that I had never used before. My first question is on the ^ operator. What exactly does this do? My second questions is on the use …

Member Avatar for kimbokasteniv
0
137
Member Avatar for Virii

So I'm looking into colleges and I see that ITT Tech has a Software Engineering program, and I'm just curious if you guys think this degree is worth the $70,000 or if it's not even worth the paper it's printed on. I want to program video games, websites or software …

Member Avatar for Ancient Dragon
0
88
Member Avatar for javabuddy

hi, anybody can teach me how to code user interface in swings using ftp protocol? awaiting for ur reply java buddy

Member Avatar for kimbokasteniv
0
83
Member Avatar for shrini

Firstly,I used an option [B]javac -deprecated[/B] javafilename.java and compiled.secondly i have run the program using [B]java[/B] filename but cannot view any result. can anybody help in this regard,ur help much appreciated Thanks, Shrini.

Member Avatar for jwenting
0
2K
Member Avatar for mladen17

Hello! I was reading a lot about all kinds of programs here for COMport but i need samothing less complicated so i lost interest in rreading kilometer post thet are more advanced form my level. Thnig is that i just need to output 0 or 1, i don't need any …

Member Avatar for mladen17
0
84
Member Avatar for Matt Tacular

First of all, let me exaplain that I only really know python. I thought I would give c++ a try and since then (about two days ago), I have read a few tutorials and have made a guess number game. I thought I would be able to rewrite one of …

Member Avatar for Matt Tacular
0
241
Member Avatar for raydogg57

I need help developing a program that acts as a command line parser. Essentially, my program needs to ask the user to input a command line: eg - A+B=C. It will then output the following: A + B = C. Although this seems basic, my program needs to recognize different …

Member Avatar for ~s.o.s~
0
139
Member Avatar for Aia

May I impose on you guys again? I'm trying to learn how to write to disk into a file. I think I got that down, however I would like to be able to display to screen the same text is being written to file. What's a way of doing that?. …

Member Avatar for Ravalon
0
175
Member Avatar for charmee

this is a program on pay roll.. [code] #include <stdio.h> #include <stdlib.h> #include <conio.h> #include <ctype.h> #define MAX 5 //#define DATAFILE "c211" typedef struct { char ID[6]; char firstname[10] char civilstatus; int dependents; float netpay; float grosspay; float taxwithheld; float sss; } employee; /*---------------------------------*/ char Menu(char choice){ do{ printf("\n<< CS …

Member Avatar for kenjutsuka
0
106
Member Avatar for Scope9000

Hi guys just wondering can any1 help i have a project for collage and vb6 is really not my thing yet Its my firdt year in collage and im doing computer maintenance and repairs Vb6 is apart of it and to me it doesn't make any sence to me can …

Member Avatar for Scope9000
0
70
Member Avatar for iubike

I just don't know what to do to end the damn loops!?! [code] #!/usr/bin/perl -w use strict; print "Welcome to Techno-Bank 3000.\n"; print "Enter command => "; my $input = <STDIN>; chomp $input; my ($command, $user, $amount) = split / /, $input; my %accounts = ( $user => $amount ); …

Member Avatar for masijade
0
100
Member Avatar for tradfreak

hello :-) I'm Sean and currently a 3rd year BS Business Admin. Major in Management Information Technology student... due to my limited programming skill... i know this would be a simple programming problem to you guys out there so i would like to get inputs on how am I to …

Member Avatar for fesago90
0
110
Member Avatar for hariza

Hi Guys, I have written the below code but still need to remove the null terminator at the end of each string but don't know how. I've try strtcpy , srtcncpy but doesn't work. Any ideas would be highly appreaciated. thanks. [code=c] while (!feof(fp)) { fgets(line,LINE_BUF,fp); count++; strcat(string1,line); printf( " …

Member Avatar for hariza
0
5K
Member Avatar for FireSBurnsmuP

Well, I guess I'm just here out of curiosity. I would like to know how one would go about outputting an image file. I thought that maybe you could declare an [inlinecode]ifstream[/inlinecode], and try to read it in, but I don't know how I'd go about that either... Any ideas? …

Member Avatar for John A
0
179
Member Avatar for Laughs Galore
0
51
Member Avatar for MattEvans

Relevant header definitions are as: [code] class XMLChain { private: Segment root; std::vector<XMLOpen*> chain; Segment * immediate; std::vector<XMLOpen> openers; [/code] The function in question is: [code] void XMLChain::open(std::string tag) { Segment * last_immediate = immediate; openers.push_back( XMLOpen ( tag ) ); XMLOpen * cast_immediate = &(openers.back()); (*last_immediate).setNext( cast_immediate ); immediate …

Member Avatar for MattEvans
0
105
Member Avatar for ytregnn

I'm searching for a guestbook where the your post is published "directly" after you've posted it. What I mean is a guestbook where there is no "thank you for posting"-page, or re-loading.. (DHTML?) Thank you. [IMG]http://www.programmingtalk.com/pt_images/images/smilies/smile.gif[/IMG]

Member Avatar for ytregnn
0
70
Member Avatar for amishosh

Hi! Even when I use windows versions of C++ compilers (Visual studio or Borland) when I compile my program it opens up in a DOS window. Is VB the only way the program will open up in a windows like window? Thanks, Ami

Member Avatar for fesago90
0
124
Member Avatar for megabutt

Hey folks, I thought that recently I transitioned form NOOB to novice until I had this question. Oh, well. Why can't I create an executable in Visual Studio 2005? I have my Win32 project code debugged and it builds a library object file, not .exe. I am in release mode …

Member Avatar for John A
0
99
Member Avatar for Tauren

Hi! The gems programming Series Can I just start off with Gems programming 9 or do I have to start off with 1 and work my way up?

Member Avatar for John A
0
107
Member Avatar for Inny

How to set this up? source [url]http://www.tutorialized.com/tutorial/Resizing-An-Image-Using-PHP/16806[/url] Unload Javascript Files [quote]I found this to be a neat little trick for hiding(somewhat) source javacscript code from peering eyes... This function will unload all linked javascript files so that when you view source - you see no javascript files! (Especially helpful when …

Member Avatar for Inny
0
177
Member Avatar for peter_budo

Can somebody please help me to little customize the view of the phpMyAdmin? Curently this is what I [URL="http://www.peterbudo.f2s.com/extra/myAdminC.jpg"]see [/URL] but I would like to have as [URL="http://www.peterbudo.f2s.com/extra/myAdminW.jpg"]this[/URL]. Simple, I don't like options to be displayed as list of links but as tabs. What shall I change in config?

Member Avatar for peter_budo
0
148
Member Avatar for Cudmore

My question today is regarding multidimensional arrays, and synchronization.. I'm working on a client/server project and I'm not sure about the theory of an idea I came up with: I have an array: [INLINECODE]Object[][] myArray = new Object[256][];[/INLINECODE] It is an array of arrays. The length of myArray is 256 …

Member Avatar for Cudmore
0
767
Member Avatar for chris99

What am I doing wrong, I've done it before! [CODE]class Main: def __init__(self, master): self.master = master self.master.title('Role Playing Form V1.0') self.master.geometry('300x250+350+450') self.master.mainloop() self.cmdCreate = Button(self.master, text='Create Character', command=self.create) self.cmdCreate.grid(row=0) def create(self): pass root = Tk() main=Main(root)[/CODE] the button doesn't appear!

Member Avatar for bumsfeld
0
140
Member Avatar for syed.ijaz

Our company is doing a project for the City of Chicago and we are trying to communicate with their servers using web services. Their environment is java based but we are using .NET on our end. The problem we are currently facing right now is that we are not able …

Member Avatar for jwenting
0
218
Member Avatar for ketz_01

[COLOR=Black][COLOR=Blue]Ok, firstly im new to this java thing...but i think its still exciting to do. but i have an error now...[/COLOR][COLOR=#0000FF][COLOR=Blue].. cannot find symbol symbol: constructor Employee location: class Employee Employee e = new Employee (" info"); and the arrow tingy pointin by the word new...so im wondering wat is …

Member Avatar for iamthwee
0
79
Member Avatar for simona66

Hello I want to drag & drop an object like rectangle , would you please give me the code and intterupt of it? thank you in advance

Member Avatar for mathematician
0
96
Member Avatar for mitaldoshi

I am a student of comuter enginnering 6thsem. I have to make a project based on java. Please help me by suggesting an award winning project.

Member Avatar for jwenting
0
98
Member Avatar for Sarah Lee

Hi All, I want to set two textboxes, where I want to set the first day of current month in one textbox, and todays date in the second text box. How can I get the first day of the current month? Thanks In advance

Member Avatar for Sarah Lee
0
125
Member Avatar for Harshita_garg

Hi All!! I am relatively new to C++ programming so please forgive me if my question is very basic or silly. I am trying to read files in C++. It opens text based files properly but doesnt open csv files , though I am saving them in the same directory. …

Member Avatar for Harshita_garg
0
1K
Member Avatar for nisrin

A calendar can be created easily in VB..but can the details be stored in Oracle...will it be too complicated? I want to create calendars for different departments and store them in separate tables for a Patient Management system.. Please advice..

Member Avatar for nisrin
0
141
Member Avatar for rockberto

Hi there, I have a problem with a BST program, whenever I try to run this a SIGSEGV error occurs. The files are: node.pas [CODE]Unit Node; Interface Type NodePtr = ^TNode; TNode = Class FData : Integer; FLeft,FRight : NodePtr; Constructor Create(PData : Integer); End; Implementation Constructor TNode.Create(PData : Integer); …

Member Avatar for rockberto
0
113
Member Avatar for Nosipho

Can someone please show me a code syntax on how to update an SQL database programmatically ( execute on click of button). I want to get all records from the "Student" database table where StudentStatus = 'New'' .Find a particular RegDate (2001/02/02) , StudNo ( 200144176) and update it's StudentStatus …

Member Avatar for Nosipho
0
778
Member Avatar for itsnexgen

Hello Friends, I am trying to learn JSP, Servlets at the moment. What am trying to do : A simple text field and a button What should happen : When you click the button a text should appear something which is specified in the code. for example, "Pradeep". I am …

Member Avatar for itsnexgen
0
809
Member Avatar for Designcrowd

Hey guys, I have developed a feedback form creator that you can use to make forms for your website. . Its FREE and very easy to use. Simply create your php feedback form online and it will be generated and sent to your mail address. All you need to do …

Member Avatar for ned27
0
158
Member Avatar for Seyha Eng

Hi, How can I call the program that have exetension *.pps(PowerPoint Show) ? Not .exe! thanks! :sad:

Member Avatar for tupadjia
0
681
Member Avatar for Aswathy

Hi , I have been trying to create an online exam application and is facing some issue with dynamically generated radio buttons. My problem is discussed below: I have a table with a set of questions.I dispaly the questions on the screen with a set of dynamically generated radio buttons …

Member Avatar for Aswathy
0
1K
Member Avatar for sonu2die4

Hello, I want to know how to implement semaphore without the use of while or any if statement The Problem is Thread A , B , C they all want to output the result at the same time A wants ot print 'A' B wants to print 'B' C wants …

Member Avatar for Ancient Dragon
0
145
Member Avatar for keeray

i can't run my program bcoz of this error.. [code=cplusplus] #include<iostream> #include<math.h> #include<string.h> #include<iomanip> { int main() int x,y,z,r; float a; char ch; cout<<" enter amount"; cin>>x; cout<<" enter number of years to be paid"; cin>>y; cout<<" enter the rate"<<endl; cin>>z; r= z/100; cout<<" what would you like to compute?"<<endl; …

Member Avatar for Dave Sinkula
0
171
Member Avatar for rasakse

someone please help me on how to run this coding using knoppix linux.. using c language.. i really need help.. i want to know.. what is the output.. this is the coding :- [code] int main() { Pid_t pid; /* fork another process */ pid=fork(); if (pid<0) { /* error …

Member Avatar for John A
0
131
Member Avatar for Caped Sam

Hi all. I recently downloaded and installed Bloodshed Dev-C++ and have begun going through C++ tutorials and whatnot. I'm very green on the whole C++ thing. My current problem is that I want to use a .cpp file that someone else wrote that includes some so-called 'standard header' files, one …

Member Avatar for Ancient Dragon
0
287
Member Avatar for Rickenbacker360

Hello again, I'm slowly getting better, I would never have been able to get this far before, but I'm stuck. Here's what my program is supposed to do: [COLOR=#000000]1. [/COLOR][COLOR=#000000]Develop a C++ program that uses a while structure to input the miles driven and gallons used for each tankful. The …

Member Avatar for Rickenbacker360
0
114
Member Avatar for Inny

is it possible to create a tag (javascript) that will output this... [code][dohtml]<span class="sidenote" title="Text"></span>[/dohtml][/code] it should work like this one.... [code]<input type='button' accesskey='p' value=' CODE ' onclick='simpletag("CODE")' class='codebuttons' name='CODE' onmouseover="hstat('code')" /> [/code] can that be done with javascript?

Member Avatar for Inny
0
346
Member Avatar for fesago90

[B]EDIT:[/B] Again, after searching for some time and not finding any answers then asking here and going back to experiment a bit with my code, I figured out the answer just by trial and error :| Hi! My current homework assignment requires me to read some info from a file, …

Member Avatar for Dave Sinkula
0
5K
Member Avatar for avani

HOW TO CONVERT SIMPLE EXE FILE INTO XML FILE? For example ,how can i convert a db2 file inot xml n transfer it as a web service pls help

Member Avatar for jwenting
0
2K
Member Avatar for hegRT

Hi, Im new to JSP and I am trying to add data from a simple registration page using JSP to a table in mysql, My code seems to be working OK howerver when I check the table in MySQL Control Centre...no new records have been added, I am able to …

Member Avatar for jwenting
0
174
Member Avatar for kubi

Hey Friends, Can you help me to code a program that sends email in C++? Maybe by Telnet or another way :S i dont know anything about this. Thanks.

Member Avatar for jwenting
0
85
Member Avatar for KalebG

I've been searching around the site, looking at the different types of coding, and come accross Assembly. This is one of the most complicating code ive seen yet and was just wondering what is it's most common use?

Member Avatar for Purple Avenger
0
537

The End.