Forum: C# 10 Days Ago |
| Replies: 2 Views: 284 Hello all,
I am getting the following run-time error every time I try to run a program I've converted from Lisp to C#:
In the function below the problem is occurring at line 16. The datatypes... |
Forum: Legacy and Other Languages 19 Days Ago |
| Replies: 1 Views: 353 Hello all and Happy Thanksgiving,
I am converting a program from Lisp into C#. Everything is going well for most of the program but there are 2 functions where I don't really understand what is... |
Forum: C# 19 Days Ago |
| Replies: 4 Views: 452 Oops, I realized that I left out a function that is being called by COUNT-HIGHEST that might help someone understand better what is going on. Here it is:
(defun COUNT-THEM (singles numbers)
... |
Forum: C# 19 Days Ago |
| Replies: 4 Views: 452 Thanks for the response DdoubleD,
Well that is sort of my problem too, if I could translate the code into pseudo code then I could translate it into C# myself =)
I have managed to translate the... |
Forum: C# 20 Days Ago |
| Replies: 4 Views: 452 Hello all,
I am in the process of translating a program from lisp into C#, most of it has gone smoothly but I have run across two blocks of code that are giving me a bit of trouble. If anyone can... |
Forum: Perl Nov 9th, 2009 |
| Replies: 2 Views: 630 Hi thanks for the reply. Perhaps I should have added a bit more detail. I am running in a windows vista 64bit environment, and the code snippets I provided actually are statements in a loop (that's... |
Forum: Java Nov 9th, 2009 |
| Replies: 2 Views: 318 It looks like you posted you homework assignment, but you haven't stated what problem you are having with it.
Let us know a specific area you are having trouble with. |
Forum: Java Nov 9th, 2009 |
| Replies: 4 Views: 447 You just need to convert it to an applet, which is relatively easy to do.
Check out Sun's applet tutorial:
http://java.sun.com/docs/books/tutorial/deployment/applet/index.html |
Forum: RSS, Web Services and SOAP Nov 9th, 2009 |
| Replies: 2 Views: 821 Also, there is no requirement in REST to use XML. |
Forum: RSS, Web Services and SOAP Nov 9th, 2009 |
| Replies: 2 Views: 821 RESTful webservices can support all of the HTTP methods.
I am not certain I fully understand the other part of your question: "which will be the first function to be called"
Functions/methods... |
Forum: Perl Nov 9th, 2009 |
| Replies: 2 Views: 626 What you need to use is one of the back-reference variables, specifically you should use "$&" since you essentially want to reuse each occurrence of your search string
Give this a try
$someText... |
Forum: Perl Nov 9th, 2009 |
| Replies: 2 Views: 630 Hello,
I have created a simple webservice and I am now in the testing mode. I am trying to write a simple script that will use curl to create user accounts and another one to delete user accounts.... |
Forum: Python Nov 8th, 2009 |
| Replies: 0 Views: 376 Hello,
Does python 3 have built in libraries that include support for the HTTP methods other than GET and POST?
I couldn't find an answer to this looking through the urllib documentation on the... |
Forum: Web Browsers May 24th, 2009 |
| Replies: 8 Views: 1,369 My suggestion would be to get a download manager add-on (I use DownThemAll) most have a cancel download feature in their interface.
I suggest this because trying to cancel a download using the... |
Forum: Java Apr 29th, 2009 |
| Replies: 2 Views: 289 Hello and thanks for the response. Yes I have seen that tutorial but my problem is slightly different as the panels are not defined in the same class. All of the children panels of the main container... |
Forum: Java Apr 29th, 2009 |
| Replies: 2 Views: 289 Hi,
I am trying to make a gui in which I import and combine 4 seperate classes JPanel classes that I made into one interface. But I am running into an obstacle that I am uncertain about.
Here... |
Forum: JSP Apr 28th, 2009 |
| Replies: 0 Views: 480 Hello,
I am creating a little webpage that allows a person to chose between 3 different ways in which they can query for results (either id, date, or symbol). Everything works fine if choosing id... |
Forum: JSP Apr 28th, 2009 |
| Replies: 1 Views: 631 ok I solved the problem... the classes folder wasn't in the WEB-INF folder |
Forum: JSP Apr 28th, 2009 |
| Replies: 1 Views: 631 Hello,
I am very new to JSP but I am familiar with Java. I am having an issue with some error messages I don't understand.
when I use this syntax:
<jsp:useBean id="search"... |
Forum: Perl Mar 4th, 2009 |
| Replies: 4 Views: 1,483 Not 100% sure on this one, but to dereference a pointer to other data types you can use the syntax as follows:
For arrays @{$arrayRef}
For hashes %{$hashRef}
So perhaps the same thing will work... |
Forum: Oracle Mar 4th, 2009 |
| Replies: 3 Views: 787 Oh my apologies for not being clear with what I was curious about. I was asking in a more generic sense, simply to try to understand some of SQL's syntax. There is no actual database as of yet.
... |
Forum: Perl Feb 20th, 2009 |
| Replies: 1 Views: 1,974 Hello, I was wondering if there was a built in feature in perl to convert each character in a string to its corresponding ASCII value. Or is this something that I have to program manually? |
Forum: Oracle Feb 20th, 2009 |
| Replies: 3 Views: 787 Hello,
I am somewhat of a SQL newbie. My question is how would I go about creating a query that searched for things like:
1. users who have collected a complete set of promo items
2. users who... |
Forum: Perl Sep 22nd, 2008 |
| Replies: 2 Views: 1,399 Hey Kevin,
Just wanted to thank you. Passing references to the functions is exactly what I was trying to do, and it worked perfectly. |
Forum: Perl Sep 15th, 2008 |
| Replies: 2 Views: 1,399 Hello,
I am writing some testing scripts. At the end of each test I may have to return my environment back to it's default state using various subroutines in various modules. I realize that using... |
Forum: C++ Jul 23rd, 2008 |
| Replies: 8 Views: 6,388 Thank you all for your replies... I suppose I was already doing it correctly because my code is very much like VernonDozier and ArkM's examples
I just wasn't sure if there needed to be an explicit... |
Forum: C++ Jul 23rd, 2008 |
| Replies: 8 Views: 6,388 Hi Sarehu. I guess that's the crux of my question how would you initialize the vector?
vector<Person *personPtr> passengers = ????? |
Forum: C++ Jul 23rd, 2008 |
| Replies: 8 Views: 6,388 Thanks CoolGamer, I'll give those suggestions a try. |
Forum: C++ Jul 23rd, 2008 |
| Replies: 8 Views: 6,388 Hello,
I am wondering how do we initialize a vector (or even an array) of pointers when the objects that will eventually be pointed to don't exist yet? I've been searching the internet for a... |
Forum: C++ Jul 22nd, 2008 |
| Replies: 3 Views: 1,139 Thank you Duoas,
I guess I keep getting confused about where to add the includes. For some reason I thought I was supposed to be adding them to the .cpp files instead of the header files. |
Forum: C++ Jul 22nd, 2008 |
| Replies: 3 Views: 1,139 Hello,
I'm having trouble compiling a header file for a class written in C++. What's so frustrating is that I can't see what I'm doing wrong. when I compile the code I get the the following 2... |
Forum: C++ Jul 18th, 2008 |
| Replies: 3 Views: 497 oh... I didn't realize that I needed to have an include in the header file.. i thought only the .cpp files needed them... thanks! |
Forum: C++ Jul 18th, 2008 |
| Replies: 3 Views: 497 Hi,
I am trying to write a class that uses vectors that contain another class. When I compile my code using g++ I get the following error that I don't understand:
In file included from cars.cpp:5:... |