Forum: Java 13 Days Ago |
| Replies: 4 Views: 158 I have created a JApplet and I want to be able to clear the screen and draw new components depending on what button I click on. Right now the code below will clear the screen but it doesn't redraw... |
Forum: JSP Aug 20th, 2009 |
| Replies: 2 Views: 752 I solved the problem, in tomcat 6.0.20 http://localhost:8080 points to C:\...\workspace\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\wtpwebapps |
Forum: JSP Aug 20th, 2009 |
| Replies: 2 Views: 752 I am trying to setup a tomcat server in eclipse galileo java ee to test a servlet. I have web tools installed also. I created a server but when I go to my web browser and go to http://localhost:8080... |
Forum: C Aug 18th, 2009 |
| Replies: 2 Views: 436 I think they should have different pid's |
Forum: Java Jul 19th, 2009 |
| Replies: 3 Views: 498 Thanks for the quick response. The problem I was having using the WriteTo method is I need to store the SOAP message in a string to output to a JTextArea. Is there an easy way to do this? Sorry I... |
Forum: Java Jul 19th, 2009 |
| Replies: 3 Views: 498 How do you print a SOAP response? I have been trying to do the following but its not printing the actual soap message. Its just giving me some sort of description.
SOAPMessage reply =... |
Forum: JSP Jul 14th, 2009 |
| Replies: 2 Views: 445 I have a passkey to authenticate access to a web service in the code of one of my java serlvets. How easy is it for someone to view the code for my java servlet when it is on my web server? It... |
Forum: MySQL Apr 27th, 2009 |
| Replies: 0 Views: 288 I have a java applet on my web page. How do i get it to send data to my mysql database? I was looking at jdbc but i don't think it works on remote servers(I am using a web hosting service). |
Forum: Java Apr 26th, 2009 |
| Replies: 2 Views: 374 I have a java applet on my website and i need it to connect to my mysql database. When I was trying to figure out how to do this i saw several examples that used jdbc. I'm confused can I use this... |
Forum: JavaScript / DHTML / AJAX Apr 22nd, 2009 |
| Replies: 4 Views: 951 I want a box/frame/applet on my html webpage that will display an image and depending on where the user clicks i want text to popup/disappear somewhere else in the image. Does anyone know how to do... |
Forum: Visual Basic 4 / 5 / 6 Dec 11th, 2008 |
| Replies: 3 Views: 978 I am trying to create a program that analyzes sports statistics. I want to extract statistics from a website such as yahoo or espn and put it in a database. Does anyone know if this is possible to... |
Forum: C++ Nov 19th, 2008 |
| Replies: 1 Views: 510 I have a c++ application in microsoft visual studio. Is it possible to create a button on a dialog that will pop up the device manager window in windows so that the user can see all the different... |
Forum: Ruby Nov 8th, 2008 |
| Replies: 1 Views: 2,054 Is there any such thing as destructors in ruby. I am trying to figure out how to destroy an object. |
Forum: C Oct 20th, 2008 |
| Replies: 2 Views: 920 I am trying to convert an int, a char, and a short into their binary values and display it.
int a;
char b;
short c;
I understand how to convert an integer to a binary value bit by bit, I... |
Forum: Computer Science Oct 19th, 2008 |
| Replies: 4 Views: 1,695 I am trying to write a program that either zero extends or sign extends a 16 bit input to a 32 bit output, what exactly is meant by sign extending a number? I believe zero extending would be adding... |
Forum: Ruby Oct 14th, 2008 |
| Replies: 1 Views: 2,595 I am trying to search through a string to find the number of occurences of a substring. I am doing this for all the strings in an array of strings. I only have figured out the while loops so far. ... |
Forum: C++ Aug 15th, 2008 |
| Replies: 1 Views: 473 I have two files sampleclass.cpp and sampledataclass.cpp along with sampleclass.h and sampledataclass.h
In sampleclass.cpp in the constructor I give a value to a variable
sampleclass.cpp... |
Forum: PHP Aug 14th, 2008 |
| Replies: 3 Views: 800 Don't you just do this?
<?php
//includes remotefile.php
include_once 'remotefile.php';
?> |
Forum: C++ Jul 29th, 2008 |
| Replies: 2 Views: 377 I was reviewing some material over pointers in a book called C++ Primer 4th Edition and it said there were four possible values that you can set to a pointer.
A constant expression with a value... |
Forum: C++ Jul 24th, 2008 |
| Replies: 4 Views: 1,627 Let me explain in more detail, I have:
int numData;
CStringArray MyArray[50];
I want to be able to set the value of any element like this:
MyArray[rownumber].SetAtGrow(colnumber, value);
... |
Forum: C++ Jul 24th, 2008 |
| Replies: 4 Views: 1,627 I am trying to create a 2d array in my program that can hold CStrings. I need to be able to add my CString to any row and column in the array(not just at the end) and I need it to be able to grow in... |
Forum: IT Professionals' Lounge Jun 6th, 2008 |
| Replies: 2 Views: 807 I am a senior computer engineering major and have recently come across a book called MCSD Visual C++ 6 Desktop Applications which is about ten years old. I was wondering what the advantages were of... |
Forum: C++ Jun 5th, 2008 |
| Replies: 3 Views: 977 can you develop using MFC in Microsoft Visual Studio 2008 Express Edition or do you need to have at least the standard edition? |
Forum: C++ Jun 5th, 2008 |
| Replies: 3 Views: 977 I am trying to learn how to create windows applications using microsoft visual c++ 2008. What is the difference between a Win32 Application and a Windows Form Application? Also does anyone know any... |
Forum: USB Devices and other Peripherals May 27th, 2008 |
| Replies: 0 Views: 802 Can someone explain to me what a COM port is and what an LPT1 port is. Also does anyone know how to set up a driver for a usb to serial port on a virtual pc using microsoft xp. |
Forum: Computer Science Mar 21st, 2008 |
| Replies: 2 Views: 1,135 I am trying to program in C++ a binary search tree, but I am having trouble understanding what a successor is. Can someone help me out? |