Search Results

Showing results 1 to 31 of 31
Search took 0.01 seconds.
Search: Posts Made By: mcldev
Forum: Domains and DNS Mar 24th, 2009
Replies: 3
Views: 1,660
Posted By mcldev
It has always been a good repository of code. If you are learning C also look at C# in .NET. I used to program in assembler and C for the 10 years of my career. C++ for the next 10, and now I just...
Forum: Domains and DNS Mar 21st, 2009
Replies: 3
Views: 1,660
Posted By mcldev
[QUOTE=Nicris;828327]Hi every1 ........ i am new to socket programming and TCP/IP

V have to do a package in it........

Suggest me some topics and some reference books which would b helpfull for...
Forum: C Mar 21st, 2009
Replies: 8
Views: 532
Posted By mcldev
It would be a better idea to keep you code more portable to hanlde big endian/little endian environments. In either case, create a small library or API of functions that you can call before you...
Forum: C Dec 4th, 2007
Replies: 1
Views: 6,240
Posted By mcldev
sprintf() returns the length of the string it creates. So you use an int variable to capture that and then return it. However that is merely an efficiency.

The printf/sprintf/sscanf functions use...
Forum: Viruses, Spyware and other Nasties Aug 11th, 2007
Replies: 19
Views: 3,660
Posted By mcldev
Sounds like your system may be hosed. I have seen plenty of Windows going south ever since Windows 3.0. Sure XP is newer but when it system DLLs are corrupted through whatever means (malware or a...
Forum: IT Professionals' Lounge Aug 10th, 2007
Replies: 51
Views: 7,246
Posted By mcldev
Only one consideration in my mind: HALO3 and it runs only on X360
Forum: IT Professionals' Lounge Aug 10th, 2007
Replies: 16
Views: 2,703
Posted By mcldev
We used to use TSD Magic and we also have the 800 pound gorilla of Help Desk, aka Remedy but the one we actually use in my shop is the custom Siebel Help Desk my engineers built. Took them about a...
Forum: C Aug 10th, 2007
Replies: 23
Views: 2,213
Posted By mcldev
Line 68, change the scanf to use one variable per format specifier. Otherwise you program may be hosing the stack and giving you u unpredictable results
Forum: C Aug 10th, 2007
Replies: 3
Views: 3,032
Posted By mcldev
When you fopen() a file the first argument is the File Name and the second argument is the file mode. For example, lets say we had a file name called "Foo.Bar". We would do the following:


File...
Forum: C Aug 10th, 2007
Replies: 1
Views: 1,439
Posted By mcldev
You should always kill the threads as the finish up the work. So you need to join the thread in order to stop it. Threads can provide significant overhead if left to run wild so make sure you clean...
Forum: C Aug 10th, 2007
Replies: 13
Views: 355,491
Posted By mcldev
Forum: C++ Aug 10th, 2007
Replies: 3
Views: 2,895
Posted By mcldev
XOR is a assembler command. So... it executes very fast. Inside of C++ or worse C#, it will be a translation but you in C++, at least it will translate directly.

Compared to swapping by using 3...
Forum: C# Mar 1st, 2005
Replies: 2
Views: 4,550
Posted By mcldev
Not sure what the benefit is bacuse you can always customize or delete the Forms code. BUT... if all you want to do is start from scratch then simply create blank project and you can code away until...
Forum: PHP Feb 24th, 2005
Replies: 12
Views: 43,225
Posted By mcldev
The joy of barcode readers. I have worked with serial readers and basically as long as you can read from a serial port and detect Start and End of Text you can usually frame the data. With that said...
Forum: PHP Feb 24th, 2005
Replies: 5
Views: 2,724
Posted By mcldev
The only viable way to begin this application is with a solid data definition and schema for your Voter's database. You need to provide a User Record with such fields as Name, Address, City, State,...
Forum: HTML and CSS Feb 23rd, 2005
Replies: 2
Views: 2,944
Posted By mcldev
Whenever you use _POST make sure you preface the logic with a statement like:

if (isset(_POST['submit']) {
.
.
.
}

Now in your HTML form make sure you specify POST as the method....
Forum: VB.NET Feb 23rd, 2005
Replies: 3
Views: 5,768
Posted By mcldev
.NET includes security thru the Framework. Thus you must have a compliant version or else the secuity profiles don't match up. If you install on a XP or 2000 machine there is no gurantee that .NET...
Forum: ASP.NET Feb 23rd, 2005
Replies: 1
Views: 4,984
Posted By mcldev
.NET for writing TCP servers requires that you use a multi-threaded approach. However this is easy to do so you should be able to achieve good performance on P4 class machines.

At the packet level...
Forum: ASP.NET Feb 23rd, 2005
Replies: 21
Views: 8,253
Posted By mcldev
In .NET the advantage of C# over VB or J# is less impotantant that you would think because of the CLR. However it is still notable if you need to call Win32 functions in a clean manner, or perform...
Forum: Visual Basic 4 / 5 / 6 Feb 23rd, 2005
Replies: 3
Views: 8,317
Posted By mcldev
Before you choose a language first decide what you plan to support in your IVR application. For one, any device drivers (e.g. Dialogic interface code) is typically done in C/C++. Also, a IVR system...
Forum: C++ Feb 22nd, 2005
Replies: 3
Views: 3,111
Posted By mcldev
Take a look at http://www.calculator.org/rpn.html, I think this will help you fill in the gaps. Good luck!
Forum: C++ Feb 22nd, 2005
Replies: 4
Solved: c++ homework
Views: 5,578
Posted By mcldev
:lol: Single step the code with your debugger. That will reveal exaclty where it is choking and how. BTW, the while loop has a subtle defect.
Forum: PHP Feb 22nd, 2005
Replies: 3
Views: 7,392
Posted By mcldev
A script can call itself by: $PHP_SELF (v4) or _SERVER['PHP_SELF'] (v5).

To make it happen in HTML, you simply need to add a statement like:

<form action="_SERVER['PHP_SELF']"...
Forum: PHP Feb 22nd, 2005
Replies: 2
Views: 2,358
Posted By mcldev
You should nip out to the command line and fire up mysql logging in as root or approriate access for table management and grant access. You can then SELECT username from mydb or similar to list the...
Forum: PHP Feb 22nd, 2005
Replies: 1
Views: 3,007
Posted By mcldev
IMHO, definitely upgrade MySQL if you can (depends on data migration basically). Just remember the later the version the more stable and feature rich the release. One other thing about connecting to...
Forum: PHP Feb 22nd, 2005
Replies: 6
Views: 3,116
Posted By mcldev
You might try this IDE, http://www.enginsite.com/. You can download it for free, but $69 to keep it going after 18 days. That said, you can get a Perl editor as well. I think for the price,...
Forum: PHP Feb 21st, 2005
Replies: 2
Views: 10,563
Posted By mcldev
The Solution

In case you are interested, the key to getting the HMTL script to pass SELECT data is to 1) declare your variable as an array, i.e. use brackets like product[], 2) Then in your PHP...
Forum: PHP Feb 19th, 2005
Replies: 3
Views: 7,056
Posted By mcldev
I highly recommend picking up a book or ebook on DNS.
Forum: PHP Feb 19th, 2005
Replies: 2
Views: 2,354
Posted By mcldev
Before you start cooking up PHP, ASP, PERL or other scripts I highly recommend making sure your User Access to your database is viable. To the point use MySQL Administrator or MySQL QueryBrowers or...
Forum: PHP Feb 19th, 2005
Replies: 6
Views: 3,116
Posted By mcldev
Hey Autocrat, here is what I did to make it simple for me to get going with prototyping and development.

One - I have a W2K server and LAN. So I installed MySQL on the server, created databases,...
Forum: PHP Feb 19th, 2005
Replies: 2
Views: 10,563
Posted By mcldev
My simple HTML script below uses SELECT to create a list which should be accessed by the PHP script as an array. Note the products[] definition below.
BUT.... I can't seem to get the script to read...
Showing results 1 to 31 of 31

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC