No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
11 Posted Topics
I need help with the following. I have an application running on Linux. It sends by http get request a record of data, including street number, street name, city, and zip over to an IIS server, which is connected through ActiveX to address verification software.. When the ASP page processes …
You should have debugging capability.
Are you using Visual Studio? If you are, its wizard will start you out in a number of useful different places. If you don't have Visual Studio try finding some other commercial or open source product that has a wizard. My suggestion is create a plain windows application, and use …
For what purpose are you using array? Although you're starting out learning C++, you might want to consider using a set from the STL. (C++ Standard Template Library). Your code appears to be assigning and comparing in array a lot more times than you have to. Or, if you want …
Depending on the kind of window you created, you issue the appropriate close commands from the Windows API.
There are several reasons, but probably not from the K & R. The assignment is wrong for two reasons. It is to an array of no size, and you have to use strcpy, sprintf, or similar function to assign. Also, char a[] = "hello world" is handled at compile time, …
I learned C in 1987. It's use has changed a lot since then. I am still using it but with 25+ year old technology, as a customized "runner" for Informix 4GL applications. Depending on what you want to do with C, you might want to look at books on embedded …
[QUOTE=malvi;1334314]Hello, I am working with rs232, and i have to write program in visual c++ which reads continous data from rs232. For that first i need to open available com ports from pc. I have COM3 in my pc, but i have to write com3 manually in my program. Is …
I need to find more ftp examples, like, after logging in, performing an mget * Any pointers? Thanks. cmn
I've read other posts in this form, but still do not know why I get this error: [CODE] File "/home/amr/bin/mysql_lib.py", line 196, in createNewCsRowSQL db_date + ");" TypeError: cannot concatenate 'str' and 'long' objects [/CODE] from this code [CODE] sql_cmd = \ "INSERT INTO customer_synch " + \ "VALUES ( …
The End.
octopusgrabbus