Does anyone know a thing abt structure? It looks like database but is it? David...
1433
cole@...
Aug 3, 2000 11:46 am
sorry, did this have an attachment or something? ... From: zeus@... [mailto:zeus@...] Sent: Thursday, August 03, 2000 5:12 AM To: c-prog@egroups.com ...
1434
Gigi Johnsen
gjohnse1@...
Aug 3, 2000 10:01 pm
David, could you be referring to ADT structure? ADT stands for Abstract Data Type. ADT's are any unit of data, usually complex, not built into a specific...
1435
Roger Bastida
roger_bastida@...
Aug 4, 2000 1:17 am
Hi!! I need a source code of simple text editor or any routine for test the "arrows key" without delete any character around. roger_bastida@......
1436
Carlos Lacerda
carlosrl@...
Aug 4, 2000 11:52 am
Go to msdn.microsoft.com/library where you can find a notepad project. Carlos ... From: Roger Bastida [mailto:roger_bastida@...] Sent: quinta-feira, 3...
1437
zeus@...
Aug 4, 2000 12:13 pm
Hi I'm having this problem. For my name & address, when I try to input spaces in between them, the program starts going into an endless loop or go wrong. Would...
1438
tbarron@...
Aug 5, 2000 2:41 pm
... It's difficult to get scanf() to do exactly what you want. I would recommend using fgets() to read each line and then sscanf() or strtok() for parsing. ...
1439
Shlok Smári Datye
shlok@...
Aug 6, 2000 12:11 pm
What does the following (taken from windef.h) means? #ifndef NULL #ifdef __cplusplus #define NULL 0 #else #define NULL ((void*)0) #endif #endif what is...
1440
sandeepin@...
Aug 6, 2000 6:54 pm
Hi Dear Friends, I just need to know the basics of how to interact with hardware using C and C++. If anybody knows some useful resources, interfacing projects,...
1441
Sebastian Meyer
fireclan@...
Aug 6, 2000 7:31 pm
... From: <sandeepin@...> To: <c-prog@egroups.com> Sent: Sunday, August 06, 2000 8:54 PM Subject: [c-prog] Interaction with hardware ... I am not...
1442
Ricardo
naberegny@...
Aug 6, 2000 9:50 pm
... De: sandeepin@... <sandeepin@...> Para: c-prog@egroups.com <c-prog@egroups.com> Data: Domingo, 6 de Agosto de 2000 16:54 Assunto:...
1443
Cisneros-Loeza Luis
luis.cisneros-loeza@...
Aug 7, 2000 1:32 pm
Hello Sandeep: I don't know very much Linux OS, but I've developed some projects in Windows. I've used libraries of Hewllet-Packard and National Instruments....
1444
Tom Barron
tbarron@...
Aug 7, 2000 2:13 pm
... It means that if the C++ piece of the compiler is running, we want NULL to be equal to 0. If the plain C piece of the compiler is running, we want NULL to...
1445
jinushaun@...
Aug 7, 2000 5:57 pm
Does any one know how to create a next->next->next->finish type dialog? (Does that make sense?) Is this one complex dialog or a collection of dialogs bundled...
1446
Tom Barron
tbarron@...
Aug 7, 2000 9:13 pm
... Under Windows, the simplest way would be to use a tool like InstallShield. For Unix-based systems, I'd use tcl/tk to build the dialogs. Unless you have...
1447
Bruno Meirelles Herrera
bherrera@...
Aug 8, 2000 3:35 am
Does anyone know anything about thread??...
1448
kapil bidawatka
kapil_bidu@...
Aug 8, 2000 7:00 am
... I agree with what Tom has written. I would like to add something to it. (void *)0 is the address of the fist location in the DATA SEGMENT of the memory...
1449
Raffaele Cappelli
cappelli@...
Aug 8, 2000 7:16 am
... On Win32 it's a standard common control: look for help on "PropertySheet" API in the MSDN. You have to create a separate dialog for each page and set the...
1450
kapil bidawatka
kapil_bidu@...
Aug 8, 2000 8:30 am
... For my name & address, ... Before we try to remove the bug which is causing the endless loop let me highlight a fundamental bug in your code. In your...
1451
veiga
veiga@...
Aug 8, 2000 3:44 pm
... I have a .ps file. Is introduction to POSIX Threads and Mutexes. If you want?! -- Renato Veiga Torres veiga@... H8C-307...
1452
Claus Tern
newtern@...
Aug 10, 2000 5:18 am
hi , I am stuck with the following program. Briefly: 1) can not enter more than one record at a time, control is returned to main and the program stops. 2)...
1453
cole@...
Aug 10, 2000 12:12 pm
i have found that a tabbed control works fine. just remove the tabs. if you cant figure out how to do that, RTFM! however, i am not replying to this with...
1454
Claus Tern
newtern@...
Aug 10, 2000 10:56 pm
What is wrong with this code? The user is requested to enter a name and three integer all sequentially. Why does the program prints the third data as the sum...
1455
Claus Tern
newtern@...
Aug 10, 2000 11:29 pm
Ok, I found the error in my program, simple really. The Mark array is not Mark[SIZE] but Mark[DATAFIELD]. ...It works now. Claus ...
1456
Geoff Wozniak
gzw@...
Aug 11, 2000 12:22 am
... Initial impression, don't put spaces between the 'C' and the '->39;. For example, not this: C -> mark[i] But this is OK: C->mark[i] -- Woz <gzw@...>...
1457
Enigma
bradley_heath@...
Aug 12, 2000 8:24 am
hey all, I'm busy writing a little socket program in Windows, and since I don't have any tutorials/books on the subject I had to look at tons of source for...
1458
J-Man
j-man@...
Aug 12, 2000 9:58 am
Are you sure you are using the SOCKET command correctly? Are there any parameters or specific syntax you've overlooked? From what I can see, assigning "S"...
1459
Claus Tern
newtern@...
Aug 12, 2000 11:14 am
Geoff, thanks for reply. What you mention must be compiler dependant, I have the code running without changing the pointer syntax. Claus ... From: Geoff...
1460
Tom Barron
tbarron@...
Aug 12, 2000 3:08 pm
... A couple of suggestions: - Verify that TCP/IP installed properly on your computer. If other network programs work properly, it almost certainly is. - go...
1461
fd98059@...
Aug 12, 2000 4:30 pm
iam a beginner in tcp/ip networking & would like to learn about sockets and networking using vc++.how do i start off? p.s.can someone help me with sites? thanx...