Forum: Perl Dec 14th, 2008 |
| Replies: 1 Views: 675 I figured it out!
It wasn't that the program wasn't exiting. Ruby didn't know how to handle a nil variable in my code.
I changed my start_read function to:
def start_read( stdout , stderr... |
Forum: Perl Dec 14th, 2008 |
| Replies: 1 Views: 675 Hello everyone. I have created a sales system for my company. Basically
you telnet to the system and enter your login name, password ... From
there you can access the sales system.
I am working... |
Forum: C++ Mar 27th, 2006 |
| Replies: 6 Views: 1,387 That type of reply is excatly what im talking about :) |
Forum: Visual Basic 4 / 5 / 6 Mar 27th, 2006 |
| Replies: 5 Views: 4,588 do it though your SQL query. I havent used an Access SQL query in years, but it might be similar to:
Dim searchText as String
Dim sqlQuery as String
searchText = searchDescription.Text... |
Forum: Visual Basic 4 / 5 / 6 Mar 27th, 2006 |
| Replies: 1 Views: 2,052 I made an IRC client in VB over six years ago. Ive looked, but can't find my old project. Anyway, I ran into the same problem. I solved the problem by making my own text control just for IRC. It was... |
Forum: C++ Mar 27th, 2006 |
| Replies: 2 Views: 6,341 Check out Open Mind Speech here (http://freespeech.sourceforge.net/). This is for development under KDE and/or Gnome. |
Forum: C++ Mar 27th, 2006 |
| Replies: 6 Views: 1,387 Sorry for the previous posts. It sure is hard to find answers other than 'RTFM' in the programming world. Anyway, I think what you are looking for is a good graphics library. I don't know any Windows... |
Forum: PHP Jan 22nd, 2006 |
| Replies: 1 Views: 1,899 |
Forum: PHP Jan 22nd, 2006 |
| Replies: 1 Views: 1,162 |
Forum: PHP Jan 22nd, 2006 |
| Replies: 1 Views: 1,383 What? If you are trying to install a PHP-Nuke module, you should visit their site for support. I don't know the URL for PHP-Nuke, try google.
-matt |
Forum: PHP Jan 22nd, 2006 |
| Replies: 1 Views: 3,962 You forgot to terminate the line that contains
mysql_select_db("musiclist", $conn)
it should be:
mysql_select_db("musiclist", $conn);
-matt |
Forum: PHP Jan 22nd, 2006 |
| Replies: 1 Views: 1,093 I don't think I understand what you want. So, I think you want to be able to click on a name and go to a page that has more information? Is that correct? If so, just make a hypertext link for each... |
Forum: Visual Basic 4 / 5 / 6 Jan 22nd, 2006 |
| Replies: 1 Views: 1,734 An SMS message is basicly an e-mail message. All you have to do is e-mail a message to an e-mail address with a scheme of <phone_number>@<provider>. |
Forum: C Jan 22nd, 2006 |
| Replies: 1 Views: 3,471 What platform are you developing on? Mac, Windows, Linux? All provide API's for playing sound out of your stero speakers. |
Forum: C Jan 21st, 2006 |
| Replies: 2 Views: 1,280 I don't do any windows programing, but I know that there is a Cygwin library for windows. As far as I am aware you can use sockets using that library. I'm not sure if MFC and Cygwin could be mixed?... |
Forum: C++ Jan 16th, 2006 |
| Replies: 2 Views: 3,318 Thank you! Took me forever to find out what I was missing. Thanks again! :) |
Forum: C++ Jan 16th, 2006 |
| Replies: 3 Views: 2,290 I don't to much windows/dos programming, but I think there is a library. You can also use ncurses, I think there is a windows version in Cygwin (http://www.cygwin.com/). Also, if it works in dos, you... |
Forum: C++ Jan 16th, 2006 |
| Replies: 2 Views: 3,318 Hello everyone,
I hope I can write this question clearly. Anyway, it is about global variables. I have several files in my C++ project. One of which is main.cpp. This file comtains my main()... |
Forum: C Oct 28th, 2005 |
| Replies: 3 Views: 1,403 I ment to do: printf, not sprintf.
Thanks. |
Forum: C Oct 28th, 2005 |
| Replies: 3 Views: 1,403 I am retarted.
I realized I was using sprintf, not printf.
Duh! :) Thanks for your views everyone. |
Forum: C Oct 28th, 2005 |
| Replies: 3 Views: 1,403 My darn code keeps crashing, what am I doing wrong? I have a class with the follwoing method:
void BBSNode::AddToBuffer(char *buffer) {
//strcat((char*)inputBuffer, (char*)buffer);... |
Forum: C++ Oct 9th, 2005 |
| Replies: 2 Views: 2,091 There is fopen fom the C stdio library and open from the C++ iostream lib. |
Forum: C Oct 9th, 2005 |
| Replies: 2 Views: 2,272 What kind of database? Are you accessing the database though a database server? If ADO is a windows data access driver(or whatever ms calls it) then what kind of password are you talking about? |
Forum: C Oct 9th, 2005 |
| Replies: 2 Views: 1,686 Ah.. Duh! That was it. It's always the simple things I dont catch.
Thanks again! :) |
Forum: C++ Oct 7th, 2005 |
| Replies: 3 Views: 1,513 Get one here: http://gcc.gnu.org/ |
Forum: C++ Oct 7th, 2005 |
| Replies: 1 Views: 9,614 You can do this in a few different ways. I don't know windows, so some of the following ways might not work, or might be different.
You can listen for a connection and accept it, then fork out the... |
Forum: C Oct 7th, 2005 |
| Replies: 2 Views: 1,686 I everyone, I have two C Socket questions. I have searched the net and read my reference books, but cannot find my answer.
Anyway, I am making a simple telnet based server. To create a new socket... |