Forum: Assembly Dec 24th, 2007 |
| Replies: 6 Views: 1,594 Oh, I didn't see your post, Tight. I will look into that as well. |
Forum: Assembly Dec 24th, 2007 |
| Replies: 6 Views: 1,594 Okay, I will try to go about it a little differently, or do as you said. |
Forum: Assembly Dec 23rd, 2007 |
| Replies: 6 Views: 1,594 Yes, in asm.
That's the problem, I'm making an OS, and I don't want it to depend on any other OSes. (except for DOS is fine)
I tried using INT 40h, but it doesn't seem to work. The code... |
Forum: Assembly Dec 22nd, 2007 |
| Replies: 6 Views: 1,594 How would I execute a C/C++ program without using a windows library? (Like ShellExecute) |
Forum: Assembly Dec 18th, 2007 |
| Replies: 2 Views: 877 I see, after really looking through it, I got rid of some errors, and it took care of the rest. |
Forum: Assembly Dec 18th, 2007 |
| Replies: 3 Views: 939 I have been a C/C++ programmer for 4 years now, and now that I'm actually reading a tut on it, I have to say, I am impressed! The whole concept of the DS really is cool; and it's flexability is the... |
Forum: Assembly Dec 18th, 2007 |
| Replies: 2 Views: 877 I have tried to assemble the following code in TASM and Flat Assembler, but they both give an error for every line of code. What is going on? How can I get the assemblers to assemble the * code??... |
Forum: C Apr 5th, 2007 |
| Replies: 6 Views: 1,525 Lerner, he may be asking how to validate it.
If so you somewhat like this
BOOL IsNumber(char szString[])
{
for(i = 0; szString[i] != 0; i++)
{
if(szString[i] >= '0' && szString[i]... |
Forum: C Apr 5th, 2007 |
| Replies: 5 Views: 5,513 modify the function prototype to
int countchar(const char[], char); |
Forum: C Mar 23rd, 2007 |
| Replies: 4 Views: 4,574 |
Forum: C++ Mar 23rd, 2007 |
| Replies: 2 Views: 908 Connection? Like so:?
DWORD dwVal;
BOOL bInternetExists = InternetGetConnectedState(&dwVal, 0);
while(bInternetExists != TRUE)
Sleep(100);
// Do upload! |
Forum: C++ Mar 23rd, 2007 |
| Replies: 14 Views: 5,499 jw is "just wandering" right?
Without system("pause");, your program will end right after printing your final text, so you won't have any time to read the text before is closes, if you where in... |