Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: subra
  • Order by date
  1. subra

    SEEK malfunction

    What error message, if any, is displayed. What are the functions which do not work properly? Are there seeks in any other function(s) which work properly? Perhaps a bit of code from the offending functions could explain your problem.
  2. subra

    keyboard stuffing

    dear shmoove thanks for the idea. ungetc and ungetch only help me to stuff a key back into the keyboard. i understand that you have to use getch or getche the character before you can ungetch it. let me make it clearer. i have a mail program which keeps checking the outbox. if there is a msg...
  3. subra

    keyboard stuffing

    how do i do this? I am using turbo-c 3.0 and working on DOS platform only. is there some way i can stuff the keyboard with some characters as if the characters have been entered at the keyboard itself? How do i do it? thanks
  4. subra

    where can i download java webserver 2.0 from?

    i am a newbie. can anyone point me to a site of Java WebServer 2.0. thanks
  5. subra

    can some one point me to a tsr utility/help/skeleton? Only C Gurus!

    I want to write a program to periodically transmit a message. I have a program which already checks whether any thing is there in the outbox and if there is, it transmits the file. I want to write a program which will automatically create and send a file to the destination at fixed time...
  6. subra

    how to write a scheduler program for dos using turbo-c?

    i am using dos operating system. I use turbo-c to write my c programs. I want to write some sort of scheduling program, a tsr program, which will check for a condition say, every 10 minutes, and then execute a program as a result of the check. for example, i am trying to download a file. I do...
  7. subra

    newbee problem

    I have just started learning java. I installed j2sdk1.4.0 on my pc. when i try to run the jdb (using jdb -launch <classname> it first gives and error box, [unsupported configuration] Windows Sockets 2 (Winsock 2.0) run time components are missing. Can anyone tell me how i should solve the...
  8. subra

    ..... AND WHAT ABOUT GNU / LINUX ?

    Hi, An interesting debate no doubt. But remember, our efforts in writing clipper programs can only be used with the right os. While free os is nice, how many users will actually trust it to put it on their machines. I know, that many users and corporates have already adopted linux as their os...
  9. subra

    going crazy using sizeof. what could be wrong?

    Hello Matt, Just in case, - I checked my compiler settings. I think you are correct. With the compiler options/ Word alignment set to on, the sizeof returns 42, with the option set to off, the compiler returns 41. You are right. Wow!! Thanks a lot. Subra. if you find this useful let me...
  10. subra

    going crazy using sizeof. what could be wrong?

    Thanks Matt for the response. This may not be due to a compiler problem. As I mentioned earlier, the same struc and sizeof in another program returns the correct values. Not only that, I have another struct in the same &quot;problem program&quot;. The sizeof returns the correct value on one of...
  11. subra

    object appears and disappears from monitor's connection information.

    i am using a server running novel 4.11 (primary server). we also have another server running novel 5.0. both the servers are under a single tree. until recently thing were okay. now, the connections to the server from the nodes get disconnected abruptly. the server itself is okay. The physical...
  12. subra

    going crazy using sizeof. what could be wrong?

    i am using DOS and Turbo-c 3.0 I have two small programs, i. to create a data file ii. to read and index the data file. the structure of the data file and the offending code is as below. typedef struc { char custno[7]; char custnm[31]; char amtnum[3]; } CUSTOMER; CUSTOMER cust; void...
  13. subra

    how to pass a function as a parameter?

    is it possible to do this? I work on DOS and i use turbo-c. i have a function say void abc(void); i have a second function say void xyz( p1, p2, ..); { abc(); } my question is, how can i pass the function abc as a parameter to the function xyz. is it possible to do this? more...
  14. subra

    how to amend a field of a record in a data file

    I work on the DOS platform only and I use the Turbo-c ver 3.0 compiler I have written the following code: # include <stdio.h> # include <conio.h> # include <string.h> typedef struct { char custno[ 7]; /* customer no */ char accnum[14]; /* account no */ char acdesc[31]; /* account...
  15. subra

    printf problem

    dear maniraja s. thanks a lot for the prompt reply. yes it did work and helped a lot regards subra if you find this useful let me know at vksubra@icenet.net
  16. subra

    printf problem

    this is the code printf(&quot;%5s&quot;,&quot;abcd&quot;); is there any way in which that &quot;5.2&quot; can be replaced by a variable so that formatting can be done on the fly? like int a=5; printf(&quot;%as&quot;,&quot;abcd&quot;); subra if you find this useful let me know at...
  17. subra

    cprintf and printf - how to?

    I am using the DOS OS. I am working with Turbo-C only. i have code like this: textattr( ); // set to reverse video-black on white // background cprintf(&quot; &quot;); prints a reverse video bar However if i use printf instead of cprintf (everything...
  18. subra

    General Failure Reading device network

    Thanks Mark, Yes i have also tried out those things. anything which could affect the connectivity. cables on the server side as well as the patch panel/switch side. checked the io units, replaced the NIC with another one. I have added some additional RAM. Subra if you find this useful let me...
  19. subra

    General Failure Reading device network

    I have been getting this error on my Netware 4.11 Novell network. I have about 50 nodes connected to the server through 3Com Switches. I have Groupwise 5 running on the server. I also have a Vsat connected to this network and groupwise uses this to send messages automatically. The network has...
  20. subra

    detecting size of volumes

    Is there someway in which I can detect the following using a single command: i. The name of the server(s) ii. The sizes of volumes on each of the servers ii.a Total size in bytes or Kbytes ii.b Total used space ii.c Total unused space I know i can use filer to detect the volume...

Part and Inventory Search

Back
Top