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.

0 Endorsements
~3K People Reached
Favorite Tags

21 Posted Topics

Member Avatar for calcop

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 on a feature to write reports for a certain area of the system. For this, …

Member Avatar for calcop
0
153
Member Avatar for pdhaz

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 programming so I would recommend the gd image library. There is a gd …

Member Avatar for WolfPack
0
129
Member Avatar for robbie_j0

do it though your SQL query. I havent used an Access SQL query in years, but it might be similar to: [CODE] Dim searchText as String Dim sqlQuery as String searchText = searchDescription.Text sqlQuery = "SELECT * FROM `whatever_table` WHERE `description` LIKE `%" & searchText & "%' LIMIT 10;" [/CODE] …

Member Avatar for Comatose
0
322
Member Avatar for Terminal-Access

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 hard to do at first, but was fun doing. …

Member Avatar for calcop
0
141
Member Avatar for akshayabc

Check out Open Mind Speech [URL=http://freespeech.sourceforge.net/]here[/URL]. This is for development under KDE and/or Gnome.

Member Avatar for calcop
0
116
Member Avatar for Rajnesh
Member Avatar for albertjr
Member Avatar for ricky0161

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

Member Avatar for calcop
0
120
Member Avatar for Walyer

You forgot to terminate the line that contains [code]mysql_select_db("musiclist", $conn)[/code] it should be: [code]mysql_select_db("musiclist", $conn);[/code] -matt

Member Avatar for calcop
0
109
Member Avatar for rcasinillo_s

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 name that takes the user to a different …

Member Avatar for calcop
0
142
Member Avatar for cins
Re: Sms

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>.

Member Avatar for calcop
0
111
Member Avatar for aripaka

What platform are you developing on? Mac, Windows, Linux? All provide API's for playing sound out of your stero speakers.

Member Avatar for calcop
0
170
Member Avatar for atrusmre

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? Maby someone out there that does windows programing will know?

Member Avatar for calcop
0
151
Member Avatar for calcop

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() function. I have a few other files in my project. They are server.cpp, server.h, strings.h, includes.h …

Member Avatar for calcop
0
191
Member Avatar for mogey

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 ([url]http://www.cygwin.com/)[/url]. Also, if it works in dos, you can just make your own quick library to print ANSI commands, for example "\e[0;31m" then …

Member Avatar for calcop
0
158
Member Avatar for calcop

My darn code keeps crashing, what am I doing wrong? I have a class with the follwoing method: [CODE]void BBSNode::AddToBuffer(char *buffer) { //strcat((char*)inputBuffer, (char*)buffer); sprintf("Got Data: %s\n", buffer); }[/CODE] I'm calling the method like this: [CODE]nodes[nodeID].AddToBuffer(sockBuffer);[/CODE] sockBuffer was declared like ... [CODE]char sockBuffer[IN_BUFFER_SIZE];[/CODE] Now, when I run the program and …

Member Avatar for calcop
0
133
Member Avatar for lsy

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?

Member Avatar for lsy
0
98
Member Avatar for AhmedHan
Member Avatar for Ancient Dragon
0
173
Member Avatar for calcop

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 I am using the following code: [CODE]newsockfd = accept(sockfd, (struct sockaddr *) &cli_addr, …

Member Avatar for calcop
0
106
Member Avatar for tkaung80
Member Avatar for gamesnmore

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 processess. I dont think windows does this, but it can be …

Member Avatar for calcop
0
138

The End.