Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

~5K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.

20 Posted Topics

Member Avatar for DevC++4.9.9.2

Hello, I am working on a flash website, currently there is a java script function that opens a popup window in my flash movie. This function works fine in Firefox, however does not work in Internet explorer, any ideas? Frame Code [code] openWinCentre = function (url, winName, w, h, toolbar, …

0
54
Member Avatar for DevC++4.9.9.2

Hello, [B]Background: [/B] I would like to install Windows Server 2008, Windows 7, and Linux on one machine. The reason is to learn in more detail which OS i want to use for certain tasks. I already know how to partition and install all the OS. [B] Question:[/B] What order …

Member Avatar for DevC++4.9.9.2
0
217
Member Avatar for DevC++4.9.9.2

Hello, Im working on some homework for school a data base class... Ive done all the queries except the last, [URL="http://www.funkohland.com/Other/Temp/IMG_0198.JPG"]Tables[/URL] Specify the following queries using relational algebra and show the result of each query. Find the names and addresses of all employees who work on at least one project …

Member Avatar for urtrivedi
0
59
Member Avatar for DevC++4.9.9.2

Hello, I am working with visual studio 2008 and an external website host. The real issue is that I am trying to add a "data connection" from the mysql server on my host to visual studio. On the website host mysql is already installed and running, a Database has been …

Member Avatar for kvprajapati
0
93
Member Avatar for DevC++4.9.9.2

Hey, Im using visual studio 2008 trying to make a windows form application that uses a database. Currently The design looks like this a Table BandID -> links to a table of Contacts -> also links to a table of Songs If i have a member of Table BandID with …

Member Avatar for DevC++4.9.9.2
0
273
Member Avatar for DevC++4.9.9.2

hey im trying to do a quick mod function, i know % exists but this will have other applications... Basically the main issues is when you return "num" it is a different value than if you look at num before it is returned... Any ideas? thanks in advance [code] int …

Member Avatar for Member #489967
0
134
Member Avatar for DevC++4.9.9.2

Hey, im putting together a cheap computer, but i want to make sure the motherboard and processor will work together. (Mostly powerwise like 125v or ect) Thanks in advance [B]Here is the build:[/B] Processor: AMD Athlon 64 X2 6000+ Windsor 3.0GHz 2 x 1MB L2 Cache Socket AM2 125W Dual-Core …

Member Avatar for Crash~Override
0
173
Member Avatar for DevC++4.9.9.2

Hola, Im an experienced coder, however new to java/actionscript 3 I am trying to make a very simple login and I am running into problems. They seem to be with my for loop with the .Length() function in particular... [code] stop(); loginError.visible = false; var loginXml:XML; var loader:URLLoader = new …

Member Avatar for DevC++4.9.9.2
0
135
Member Avatar for DevC++4.9.9.2

Hello, I am trying to create a program to stress test a website, I am using a counter on the page to see how many "clicks" have been made to this website. Currently i am using HttpWebRequest to make a connection to the site and then end it. However this …

Member Avatar for DevC++4.9.9.2
0
256
Member Avatar for DevC++4.9.9.2

hello (im using c#, visual studio 2008) I am trying to get Input/Output from a command prompt like process "scrds.exe". If i try to start the process with standardInput = true, standardOutput = true, or standardError = true. The program cannot start. after research the "scrds.exe" cant start due to …

Member Avatar for streetfighter
0
384
Member Avatar for DevC++4.9.9.2

I am trying to work with listbox in visual stuido 2008. I am new to c# as of 2 days ago however im very experienced with c++ and batch. I was wondering if someone could give me some quick help on how to use mouse clicks. In particular i have …

Member Avatar for ddanbe
0
167
Member Avatar for DevC++4.9.9.2

I am trying to read a line from the command prompt and output that line to a text box in my C# application. The only catch is i can't seem to get it to read a line at a time and display it in the text box as the command …

Member Avatar for DevC++4.9.9.2
0
1K
Member Avatar for DemonGal711

I think you should ask your professor since its your program for his class.. he gets paid to help you

Member Avatar for DevC++4.9.9.2
0
840
Member Avatar for DevC++4.9.9.2

Hey, my program is having trouble in the Solve() and Check() functions... basicaly, the Check() function is returning 1 or 0 based on different condtions, however after the 3rd or 4th time the value returned from function Check() is 1 and the if statement in function Solve() is interpreting it …

Member Avatar for ArkM
0
95
Member Avatar for DevC++4.9.9.2

Hey, im trying to print what is stored in my 2d dynmic array from a file in my print function. However whenever i try to access information in the array, it crashes the program. maybe the array is not being passed back some how, im not sure, any information would …

Member Avatar for vmanes
0
135
Member Avatar for DevC++4.9.9.2

I am stuck, im trying to insert and print out this list of numbers from a file, however i just get an infinite loop every time... any suggestions? [code=c++] // This is the implementation file for class List #include <iostream> #include <stddef.h> // to access NULL #include "List.h" #include<fstream.h> using …

Member Avatar for DevC++4.9.9.2
0
166
Member Avatar for DevC++4.9.9.2

Hey, ive debugged my program to this line, and im not sure what to use, strcpy or some other thing, but i need to get the string from a[x] in to the new string c[z]. Any suggestions? [code=c++] string a[100]; string c[100]; if (a[x].compare(b[y])==0) { c[z] = a[x]; //doesnt work …

Member Avatar for Salem
0
188
Member Avatar for Vic842

[url]http://www.apache.org/[/url] Download appche [url]http://www.dyndns.com/[/url] If a home server, use this to link your ip address. Make sure your router is letting your appache through, default port 80 - also make sure your confige file for appache contains the port you wish to use. As far as gaming... your connect will …

Member Avatar for chaosprime
0
220
Member Avatar for DevC++4.9.9.2

Hey, im trying to use pointers with a struct. I am having an issue in the function searchData. I can not get the pointer to compair with the string, it is still just compairing the actual adress or something else. Not sure if i even passed it right. Please help …

Member Avatar for VernonDozier
0
171
Member Avatar for allialli

You made 2 simple mistakes.... •In the for loop, num1 will always = num1 • and your while loop will always be true because num 1 and num 2 never change... here is a fixed version #include <iostream> #include <string> using namespace std; int main() { int num1, num2, num3, …

Member Avatar for WonderWomen204
0
131

The End.