- Strength to Increase Rep
- +4
- Strength to Decrease Rep
- -1
- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 2
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
Final Year student at Staffordshire University studying Computing Science
- Interests
- Programming C#, Java
- PC Specs
- Windows 7 AMD Phenom 2.6ghz Quad 4GB Ram GeForce 9500 GT 1GB 320GB HDD 80GB HDD
Hi Everyone, Had a friend of my come up to me today to have a look at a very strange crash that he was experiencing with a Media player he's creating. The application was previously running fine, but this time after reopening the project after a few months it crashes … | |
Re: [QUOTE=simpleonline123;1453170]Sounds really retarded but I'm wanting to create an application that when ran the user can create an instance of lets say a button by clicking on the button that I have drawn on the screen. It's going to be an application builder programs. What I need to know is … | |
Re: [QUOTE=MrCapuchino;1451521]Well, that funcionality is not really what I'm looking for because I want the image to disapear imedialetly, with the error provider the image would remain until another event which does not work for me, I want the image to appear wait a second and then dissapear. Thanks[/QUOTE] Use a … | |
Re: [QUOTE=NewOrder;1448816]why cant i put all my variables outside the methods? whats going to happen? i trigger every method each time, and each of the methods are simply reused?[/QUOTE] Not sure if I understand your question completely so please tell me if I got something wrong. If your variables are used … | |
Re: [QUOTE=jnyekha;1449786]I need a timer that will change the text of a combobox which is binded to a database. My Application which is based on hospital management wherein a doctor has to visit rooms within 6 hours. If 6 hours elapse the combo should show "need......" and if not something "......" … | |
Hi Everyone, I'm currently in the process of attempting to create a storage system using Windows Azure, The problem I'm having is that I can't seem to find any information on how to access windows azure using a c# windows forms application. All I can find is information on creating … | |
Re: [QUOTE] SECTION A : BASIC REQUIREMENTS OF THE SYSTEM 1. Main Menu Your initial program design should display the following menu alternatives: FERRY TICKETING SYSTEM P – to Purchase Ticket V –to View Seating Arrangement Q – to Quit the system 2. Submenu The following submenu will be displayed when … | |
Hi everyone, got a slight problem. trying to make a program that takes the users input and puts it into a string untill it detects a CR character then outputs the string, i've made a start but i'm at a dead end on what to do. [code=ASM] BITS 16 ;Set … | |
hey everyone. Just a quick question i hope i'm using c# with XNA and currently i have created a game which draws a spaceship on the screen and allows me to move it around using an xbox360 controller. what i'm trying to do is make the sprite of the spaceship … | |
hello again, just tried to compile my project and i'm getting errors with a file cstdlib Error 2 error C2039: 'abort' : is not a member of '`global namespace'' c:\program files\microsoft visual studio 9.0\vc\include\cstdlib 23 Error 3 error C2873: 'abort' : symbol cannot be used in a using-declaration c:\program files\microsoft … | |
Hello everyone, got a really strange and annoying error. When i compile my program i get 2 errors and 2 warnings all 4 to do with stdlib.h error C2381: 'exit' : redefinition; __declspec(noreturn) differs c:\program files\microsoft visual studio 9.0\vc\include\stdlib.h 371 i did a little research on the problem and found … | |
Hello again everyone, Having a really annoying problem using pointers and arrays at the moment, i'm trying to store a 4x4 matrix as a an array of 16 floats. so i declare my array like so [code=C++] float array1[] = {1.0f,0.0f,0.0f,0.0f, 0.0f,1.0f,0.0f,0.0f, 0.0f,0.0f,1.0f,0.0f, 50.0f,0.0f,0.0f,1.0f}; [/code] i then pass this into … | |
Hey again guys and gals, getting a really weird error when i attempt to print out doubles in my program i have to store several double values, but when ever i print then out all i get is -9.25596e+061 instead of what should be printed out. [code=C++] string line; stringstream … | |
Hello everybody, I'm back, started my 2nd year at Uni now and started programming in the wonder that is C++ and enjoying it tremendously. but I've hit a slight problem, not with code but with design. I'm not sure where to put the input/output, sounds weird but I'll elaborate. i … | |
Just been looking over Dynamic Memory Allocation, using new. Heres a snippet of the code i've got. [code=c++] vertices = new float *[v]; for (i = 0; i < v; ++i) { vertices[i] = new float[3]; } [/code] what i was thinking was could i just do [code=c++] vertices = … | |
Re: okay, theres a few things that i can see wrong with your code. [B]Line 7[/B] [code] void mrinch ( double inches[]); [/code] your declaring the function "mrinch" ,but the function doesnt exist within your code. [B]Line 37[/B] [code] double calculateInches(double inches) [/code] your defining the function "calculateInches" but the function … | |
Hi everyone, i'm back with another problem that i cant seem to work out. i'm trying to read in a .obj file which is basicaly a list of vertices and facets in this format v 0.00 0.00 0.00 f 0 0 0 i dont know before hand how many vertices … | |
Hi, I'm Matt, i'm a first year BSC Student at Staffordshire University. Currently living in Stafford, but i'm originaly from near London. I'm studying Computer Games Programming. I enjoy programming in my spare time whilst not working on assignments which generally involve programming anyway, i'm currently working with C, openGL … | |
Well another problem, sorry for constantly asking. My program is coming along well i think, it creates the file writes the data to it but it crashes when i try to view the information. i'm not sure if its an error with my loaddata() function or my viewcharacter() function [code=c] … | |
Hi Again, Well i'm bored and i've decided to do some coding just for practice and i've decided to work on a text based RPG, its only going to be basic due to my own knowledge but i think its doable. unfortunatly i've come accros a problem already and i've … | |
Re: The University i'm studying at suggests using “Introduction to Java Programming (Sixth Edition) - Comprehensive Version” By Y.Daniel Liang Prentice Hall – Pearson International ISBN 0-13-2221586 Since the Uni is assuming that the students have little or no knowledge of java, i think that book is a good starting point. … | |
Re: What exactly do you need help with? you havent started any of it, if you start the basics of the code and get stuck post and then maybe we can help you. but we cant do your homework for you as AD mentioned, but if you have already done so … | |
Re: This could be used for the input. [code=c] int i; int buffer = 100; int length; char names [10][10]; /*stores 10 strings of 9 characters long including \o */ char input [buffer]; /* holds the input used for validating length */ for(i = 0; i < 10; ++i) { fgets(input, … | |
Hello again, i'm trying to make a program that draws a cube on the screen using data inside of a .txt file, this is the code that i've got so far, it compiles and runs but doesnt actualy display anything and i'm not really sure why. its probably something simple … | |
Re: I'm affraid i cant help you with alot of that as i'm not an expert at C but i did recently do some work involving reading from files and i found this website helpfull. [url]http://www.mrx.net/c/readfunctions.html[/url] This link might help you with the string functions you are after. [url]http://www.cs.cf.ac.uk/Dave/C/node19.html[/url] | |
I'm getting Linker errors when trying to compile my OpenGL code with Dev C++, the code compiles perfectly on the university machines using Visual Studio. I've visited several sites that explain how to get openGL to work om Dev C++, and i've followed the steps. -Installed the Dev Pack. -added … |